--
-- PostgreSQL database dump
--

\restrict X3j9hakcvfnkSghwMZuYf9HCsqG0YDgxthBtHcn5LN70xAFZFRF3zwhjQgpv46J

-- Dumped from database version 15.14
-- Dumped by pg_dump version 15.14

SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;

--
-- Name: public; Type: SCHEMA; Schema: -; Owner: postgres
--

-- *not* creating schema, since initdb creates it


ALTER SCHEMA public OWNER TO postgres;

SET default_tablespace = '';

SET default_table_access_method = heap;

--
-- Name: activities; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.activities (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    image character varying(255)
);


ALTER TABLE public.activities OWNER TO postgres;

--
-- Name: activities_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.activities_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.activities_id_seq OWNER TO postgres;

--
-- Name: activities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.activities_id_seq OWNED BY public.activities.id;


--
-- Name: ad_fields_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.ad_fields_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.ad_fields_id_seq OWNER TO postgres;

--
-- Name: ad_fields; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.ad_fields (
    id bigint DEFAULT nextval('public.ad_fields_id_seq'::regclass) NOT NULL,
    ad_id bigint NOT NULL,
    field_id bigint NOT NULL,
    field_label character varying(255),
    value text NOT NULL,
    field_label_ar character varying(255),
    value_ar text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    field_type character varying(255),
    section character varying(255) DEFAULT 'basic'::character varying
);


ALTER TABLE public.ad_fields OWNER TO postgres;

--
-- Name: ad_images; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.ad_images (
    id bigint NOT NULL,
    ad_id integer NOT NULL,
    image character varying(255) NOT NULL,
    field_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.ad_images OWNER TO postgres;

--
-- Name: ad_images_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.ad_images_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.ad_images_id_seq OWNER TO postgres;

--
-- Name: ad_images_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.ad_images_id_seq OWNED BY public.ad_images.id;


--
-- Name: ad_plans_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.ad_plans_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.ad_plans_id_seq OWNER TO postgres;

--
-- Name: ad_plans; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.ad_plans (
    id bigint DEFAULT nextval('public.ad_plans_id_seq'::regclass) NOT NULL,
    pricing_plan_id bigint NOT NULL,
    ad_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    duration character varying(255) NOT NULL,
    price character varying(255) NOT NULL,
    currency character varying(255) NOT NULL,
    tax character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    duration_id bigint,
    payment_method character varying(255),
    total_price character varying(255),
    discount character varying(255),
    promo_code character varying(255),
    payment_id bigint
);


ALTER TABLE public.ad_plans OWNER TO postgres;

--
-- Name: ad_report_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.ad_report_types (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status integer DEFAULT 1 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.ad_report_types OWNER TO postgres;

--
-- Name: ad_report_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.ad_report_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.ad_report_types_id_seq OWNER TO postgres;

--
-- Name: ad_report_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.ad_report_types_id_seq OWNED BY public.ad_report_types.id;


--
-- Name: ad_reports; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.ad_reports (
    id bigint NOT NULL,
    ad_id bigint NOT NULL,
    report_type_id bigint NOT NULL,
    user_id bigint NOT NULL,
    description text,
    status integer DEFAULT 1 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.ad_reports OWNER TO postgres;

--
-- Name: ad_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.ad_reports_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.ad_reports_id_seq OWNER TO postgres;

--
-- Name: ad_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.ad_reports_id_seq OWNED BY public.ad_reports.id;


--
-- Name: ad_requests; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.ad_requests (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    parent_category_id bigint NOT NULL,
    sub_category_id bigint NOT NULL,
    first_name character varying(255) NOT NULL,
    dial_code character varying(255) NOT NULL,
    phone_number character varying(255) NOT NULL,
    email character varying(255) NOT NULL,
    description text NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.ad_requests OWNER TO postgres;

--
-- Name: ad_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.ad_requests_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.ad_requests_id_seq OWNER TO postgres;

--
-- Name: ad_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.ad_requests_id_seq OWNED BY public.ad_requests.id;


--
-- Name: ads_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.ads_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.ads_id_seq OWNER TO postgres;

--
-- Name: answers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.answers (
    id bigint NOT NULL,
    question_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.answers OWNER TO postgres;

--
-- Name: answers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.answers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.answers_id_seq OWNER TO postgres;

--
-- Name: answers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.answers_id_seq OWNED BY public.answers.id;


--
-- Name: badges; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.badges (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    type character varying(255) NOT NULL,
    description text NOT NULL,
    description_ar text NOT NULL,
    icon character varying(255),
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.badges OWNER TO postgres;

--
-- Name: badges_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.badges_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.badges_id_seq OWNER TO postgres;

--
-- Name: badges_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.badges_id_seq OWNED BY public.badges.id;


--
-- Name: bookings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.bookings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.bookings_id_seq OWNER TO postgres;

--
-- Name: cache; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.cache (
    key character varying(255) NOT NULL,
    value text NOT NULL,
    expiration integer NOT NULL
);


ALTER TABLE public.cache OWNER TO postgres;

--
-- Name: cache_locks; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.cache_locks (
    key character varying(255) NOT NULL,
    owner character varying(255) NOT NULL,
    expiration integer NOT NULL
);


ALTER TABLE public.cache_locks OWNER TO postgres;

--
-- Name: categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.categories_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.categories_id_seq OWNER TO postgres;

--
-- Name: categories; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.categories (
    id bigint DEFAULT nextval('public.categories_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    parent_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    sort_order integer DEFAULT 0,
    icon character varying(255),
    CONSTRAINT categories_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.categories OWNER TO postgres;

--
-- Name: category_atributes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.category_atributes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.category_atributes_id_seq OWNER TO postgres;

--
-- Name: category_atributes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.category_atributes (
    id bigint DEFAULT nextval('public.category_atributes_id_seq'::regclass) NOT NULL,
    category_id integer NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.category_atributes OWNER TO postgres;

--
-- Name: category_atributes_value_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.category_atributes_value_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.category_atributes_value_id_seq OWNER TO postgres;

--
-- Name: category_atributes_value; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.category_atributes_value (
    id bigint DEFAULT nextval('public.category_atributes_value_id_seq'::regclass) NOT NULL,
    category_id integer NOT NULL,
    attribute_id integer NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.category_atributes_value OWNER TO postgres;

--
-- Name: category_fields_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.category_fields_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.category_fields_id_seq OWNER TO postgres;

--
-- Name: category_fields; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.category_fields (
    id bigint DEFAULT nextval('public.category_fields_id_seq'::regclass) NOT NULL,
    category_id bigint NOT NULL,
    type character varying(255) NOT NULL,
    label character varying(255) NOT NULL,
    name character varying(255) NOT NULL,
    label_ar character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    options text,
    attribute_id bigint,
    file_types character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "order" bigint,
    field_id bigint,
    required character varying(255) DEFAULT '0'::character varying,
    deleted_at timestamp(0) without time zone,
    section character varying(255) DEFAULT 'basic'::character varying
);


ALTER TABLE public.category_fields OWNER TO postgres;

--
-- Name: challenges_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.challenges_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.challenges_id_seq OWNER TO postgres;

--
-- Name: challenges; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.challenges (
    id bigint DEFAULT nextval('public.challenges_id_seq'::regclass) NOT NULL,
    user_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    challenge_type smallint NOT NULL,
    target_type integer,
    target_value integer NOT NULL,
    start_date date NOT NULL,
    end_date date NOT NULL,
    status smallint DEFAULT '0'::smallint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.challenges OWNER TO postgres;

--
-- Name: COLUMN challenges.user_id; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.challenges.user_id IS 'to understand whom is created';


--
-- Name: COLUMN challenges.challenge_type; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.challenges.challenge_type IS '1 for all, 2 for company, 3 for individual';


--
-- Name: COLUMN challenges.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.challenges.status IS '1 for active, 0 for inactive';


--
-- Name: challenges_companies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.challenges_companies_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.challenges_companies_id_seq OWNER TO postgres;

--
-- Name: challenges_companies; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.challenges_companies (
    id bigint DEFAULT nextval('public.challenges_companies_id_seq'::regclass) NOT NULL,
    challenge_id bigint NOT NULL,
    company_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.challenges_companies OWNER TO postgres;

--
-- Name: chat_categories; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.chat_categories (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.chat_categories OWNER TO postgres;

--
-- Name: chat_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.chat_categories_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.chat_categories_id_seq OWNER TO postgres;

--
-- Name: chat_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.chat_categories_id_seq OWNED BY public.chat_categories.id;


--
-- Name: chat_messages; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.chat_messages (
    id bigint NOT NULL,
    chat_id bigint NOT NULL,
    sender_id bigint NOT NULL,
    receiver_id bigint NOT NULL,
    question_id bigint NOT NULL,
    answer_id bigint,
    message_type character varying(255) NOT NULL,
    is_read boolean DEFAULT false NOT NULL,
    read_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone,
    CONSTRAINT chat_messages_message_type_check CHECK (((message_type)::text = ANY ((ARRAY['question'::character varying, 'answer'::character varying])::text[])))
);


ALTER TABLE public.chat_messages OWNER TO postgres;

--
-- Name: chat_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.chat_messages_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.chat_messages_id_seq OWNER TO postgres;

--
-- Name: chat_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.chat_messages_id_seq OWNED BY public.chat_messages.id;


--
-- Name: chats; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.chats (
    id bigint NOT NULL,
    user_id_1 bigint NOT NULL,
    user_id_2 bigint NOT NULL,
    connection_request_id bigint,
    questions_exchanged integer DEFAULT 0 NOT NULL,
    status character varying(255) DEFAULT 'active'::character varying NOT NULL,
    decision_deadline timestamp(0) without time zone,
    user_1_decision character varying(255),
    user_2_decision character varying(255),
    last_reminder_sent_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone,
    CONSTRAINT chats_status_check CHECK (((status)::text = ANY ((ARRAY['active'::character varying, 'pending_decision'::character varying, 'completed'::character varying, 'disconnected'::character varying, 'need_more_time'::character varying])::text[])))
);


ALTER TABLE public.chats OWNER TO postgres;

--
-- Name: chats_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.chats_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.chats_id_seq OWNER TO postgres;

--
-- Name: chats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.chats_id_seq OWNED BY public.chats.id;


--
-- Name: chronic_disease_variants; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.chronic_disease_variants (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    chronic_disease_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.chronic_disease_variants OWNER TO postgres;

--
-- Name: chronic_disease_variants_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.chronic_disease_variants_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.chronic_disease_variants_id_seq OWNER TO postgres;

--
-- Name: chronic_disease_variants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.chronic_disease_variants_id_seq OWNED BY public.chronic_disease_variants.id;


--
-- Name: chronic_diseases; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.chronic_diseases (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status smallint DEFAULT '1'::smallint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.chronic_diseases OWNER TO postgres;

--
-- Name: chronic_diseases_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.chronic_diseases_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.chronic_diseases_id_seq OWNER TO postgres;

--
-- Name: chronic_diseases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.chronic_diseases_id_seq OWNED BY public.chronic_diseases.id;


--
-- Name: cities_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.cities_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.cities_id_seq OWNER TO postgres;

--
-- Name: cities; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.cities (
    id bigint DEFAULT nextval('public.cities_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone,
    country_id bigint
);


ALTER TABLE public.cities OWNER TO postgres;

--
-- Name: cms_pages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.cms_pages_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.cms_pages_id_seq OWNER TO postgres;

--
-- Name: cms_pages; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.cms_pages (
    id bigint DEFAULT nextval('public.cms_pages_id_seq'::regclass) NOT NULL,
    title character varying(255) NOT NULL,
    content text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    content_ar text,
    status integer DEFAULT 0 NOT NULL,
    title_ar character varying(255)
);


ALTER TABLE public.cms_pages OWNER TO postgres;

--
-- Name: companies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.companies_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.companies_id_seq OWNER TO postgres;

--
-- Name: companies; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.companies (
    id bigint DEFAULT nextval('public.companies_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    brand_logo character varying(255),
    description text,
    description_ar text,
    address character varying(255),
    trade_license character varying(255),
    trade_license_expiry date,
    user_id integer NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.companies OWNER TO postgres;

--
-- Name: contact_us_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.contact_us_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.contact_us_id_seq OWNER TO postgres;

--
-- Name: contact_us; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.contact_us (
    id bigint DEFAULT nextval('public.contact_us_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    email character varying(255) NOT NULL,
    subject character varying(255),
    message text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.contact_us OWNER TO postgres;

--
-- Name: countries; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.countries (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    status integer DEFAULT 0 NOT NULL,
    dial_code character varying(255),
    name_ar character varying(255),
    flag_icon character varying(255)
);


ALTER TABLE public.countries OWNER TO postgres;

--
-- Name: COLUMN countries.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.countries.status IS '0: Inactive, 1: Active';


--
-- Name: COLUMN countries.dial_code; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.countries.dial_code IS 'Country dialing code';


--
-- Name: countries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.countries_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.countries_id_seq OWNER TO postgres;

--
-- Name: countries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.countries_id_seq OWNED BY public.countries.id;


--
-- Name: delivery_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.delivery_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.delivery_types_id_seq OWNER TO postgres;

--
-- Name: delivery_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.delivery_types (
    id bigint DEFAULT nextval('public.delivery_types_id_seq'::regclass) NOT NULL,
    translation_type_id bigint,
    name character varying(255) NOT NULL,
    description text,
    price_type character varying(255) DEFAULT 'fixed'::character varying NOT NULL,
    price numeric(10,2) DEFAULT '0'::numeric,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    CONSTRAINT delivery_types_price_type_check CHECK (((price_type)::text = ANY (ARRAY[('free'::character varying)::text, ('fixed'::character varying)::text]))),
    CONSTRAINT delivery_types_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.delivery_types OWNER TO postgres;

--
-- Name: dress_codes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.dress_codes (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    gender character varying(255) NOT NULL,
    image character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    CONSTRAINT dress_codes_gender_check CHECK (((gender)::text = ANY (ARRAY[('Male'::character varying)::text, ('Female'::character varying)::text])))
);


ALTER TABLE public.dress_codes OWNER TO postgres;

--
-- Name: dress_codes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.dress_codes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.dress_codes_id_seq OWNER TO postgres;

--
-- Name: dress_codes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.dress_codes_id_seq OWNED BY public.dress_codes.id;


--
-- Name: educations; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.educations (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.educations OWNER TO postgres;

--
-- Name: educations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.educations_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.educations_id_seq OWNER TO postgres;

--
-- Name: educations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.educations_id_seq OWNED BY public.educations.id;


--
-- Name: emirates; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.emirates (
    id bigint NOT NULL,
    country_id integer NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.emirates OWNER TO postgres;

--
-- Name: COLUMN emirates.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.emirates.status IS '0: Inactive, 1: Active';


--
-- Name: emirates_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.emirates_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.emirates_id_seq OWNER TO postgres;

--
-- Name: emirates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.emirates_id_seq OWNED BY public.emirates.id;


--
-- Name: employments; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.employments (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.employments OWNER TO postgres;

--
-- Name: employments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.employments_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.employments_id_seq OWNER TO postgres;

--
-- Name: employments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.employments_id_seq OWNED BY public.employments.id;


--
-- Name: event_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.event_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.event_types_id_seq OWNER TO postgres;

--
-- Name: event_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.event_types (
    id bigint DEFAULT nextval('public.event_types_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.event_types OWNER TO postgres;

--
-- Name: events_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.events_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.events_id_seq OWNER TO postgres;

--
-- Name: events; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.events (
    id bigint DEFAULT nextval('public.events_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    event_type_id bigint NOT NULL,
    start_date date NOT NULL,
    end_date date NOT NULL,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    description text NOT NULL,
    images json,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    CONSTRAINT events_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.events OWNER TO postgres;

--
-- Name: failed_jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.failed_jobs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.failed_jobs_id_seq OWNER TO postgres;

--
-- Name: failed_jobs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.failed_jobs (
    id bigint DEFAULT nextval('public.failed_jobs_id_seq'::regclass) NOT NULL,
    uuid character varying(255) NOT NULL,
    connection text NOT NULL,
    queue text NOT NULL,
    payload text NOT NULL,
    exception text NOT NULL,
    failed_at timestamp(0) without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL
);


ALTER TABLE public.failed_jobs OWNER TO postgres;

--
-- Name: faqs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.faqs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.faqs_id_seq OWNER TO postgres;

--
-- Name: faqs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.faqs (
    id bigint DEFAULT nextval('public.faqs_id_seq'::regclass) NOT NULL,
    question character varying(255) NOT NULL,
    answer text NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.faqs OWNER TO postgres;

--
-- Name: field_conditions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.field_conditions_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.field_conditions_id_seq OWNER TO postgres;

--
-- Name: field_conditions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.field_conditions (
    id bigint DEFAULT nextval('public.field_conditions_id_seq'::regclass) NOT NULL,
    category_id bigint NOT NULL,
    attribute_id bigint,
    operator character varying(255) NOT NULL,
    value character varying(255) NOT NULL,
    field_id character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    target_field_id bigint,
    source_field_id bigint
);


ALTER TABLE public.field_conditions OWNER TO postgres;

--
-- Name: genetic_disease_variants; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.genetic_disease_variants (
    id bigint NOT NULL,
    genetic_disease_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.genetic_disease_variants OWNER TO postgres;

--
-- Name: genetic_disease_variants_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.genetic_disease_variants_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.genetic_disease_variants_id_seq OWNER TO postgres;

--
-- Name: genetic_disease_variants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.genetic_disease_variants_id_seq OWNED BY public.genetic_disease_variants.id;


--
-- Name: genetic_diseases; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.genetic_diseases (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.genetic_diseases OWNER TO postgres;

--
-- Name: genetic_diseases_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.genetic_diseases_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.genetic_diseases_id_seq OWNER TO postgres;

--
-- Name: genetic_diseases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.genetic_diseases_id_seq OWNED BY public.genetic_diseases.id;


--
-- Name: home_element_ads; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.home_element_ads (
    id bigint NOT NULL,
    ad_id bigint NOT NULL,
    element_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.home_element_ads OWNER TO postgres;

--
-- Name: home_element_ads_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.home_element_ads_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.home_element_ads_id_seq OWNER TO postgres;

--
-- Name: home_element_ads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.home_element_ads_id_seq OWNED BY public.home_element_ads.id;


--
-- Name: home_elements; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.home_elements (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    type character varying(255) NOT NULL,
    item_id bigint NOT NULL,
    sort_order integer NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.home_elements OWNER TO postgres;

--
-- Name: home_elements_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.home_elements_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.home_elements_id_seq OWNER TO postgres;

--
-- Name: home_elements_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.home_elements_id_seq OWNED BY public.home_elements.id;


--
-- Name: home_logos_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.home_logos_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.home_logos_id_seq OWNER TO postgres;

--
-- Name: home_logos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.home_logos (
    id bigint DEFAULT nextval('public.home_logos_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    status boolean DEFAULT true NOT NULL,
    image character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    slug character varying(255),
    name_ar character varying(255)
);


ALTER TABLE public.home_logos OWNER TO postgres;

--
-- Name: home_page_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.home_page_settings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.home_page_settings_id_seq OWNER TO postgres;

--
-- Name: home_page_settings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.home_page_settings (
    id bigint DEFAULT nextval('public.home_page_settings_id_seq'::regclass) NOT NULL,
    key character varying(255) NOT NULL,
    value text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.home_page_settings OWNER TO postgres;

--
-- Name: insights_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.insights_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.insights_id_seq OWNER TO postgres;

--
-- Name: insights; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.insights (
    id bigint DEFAULT nextval('public.insights_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    title character varying(255),
    content text NOT NULL,
    image character varying(255),
    status boolean DEFAULT true NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.insights OWNER TO postgres;

--
-- Name: job_batches; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.job_batches (
    id character varying(255) NOT NULL,
    name character varying(255) NOT NULL,
    total_jobs integer NOT NULL,
    pending_jobs integer NOT NULL,
    failed_jobs integer NOT NULL,
    failed_job_ids text NOT NULL,
    options text,
    cancelled_at integer,
    created_at integer NOT NULL,
    finished_at integer
);


ALTER TABLE public.job_batches OWNER TO postgres;

--
-- Name: jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.jobs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.jobs_id_seq OWNER TO postgres;

--
-- Name: jobs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.jobs (
    id bigint DEFAULT nextval('public.jobs_id_seq'::regclass) NOT NULL,
    queue character varying(255) NOT NULL,
    payload text NOT NULL,
    attempts smallint NOT NULL,
    reserved_at integer,
    available_at integer NOT NULL,
    created_at integer NOT NULL
);


ALTER TABLE public.jobs OWNER TO postgres;

--
-- Name: known_languages; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.known_languages (
    id bigint NOT NULL,
    user_id bigint,
    language_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.known_languages OWNER TO postgres;

--
-- Name: known_languages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.known_languages_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.known_languages_id_seq OWNER TO postgres;

--
-- Name: known_languages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.known_languages_id_seq OWNED BY public.known_languages.id;


--
-- Name: languages; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.languages (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    code character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.languages OWNER TO postgres;

--
-- Name: COLUMN languages.name; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.languages.name IS 'Language name';


--
-- Name: COLUMN languages.name_ar; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.languages.name_ar IS 'Language name in Arabic';


--
-- Name: COLUMN languages.code; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.languages.code IS 'Language code, e.g., en, fr';


--
-- Name: COLUMN languages.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.languages.status IS '0: Inactive, 1: Active';


--
-- Name: COLUMN languages.deleted_at; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.languages.deleted_at IS 'Soft delete timestamp';


--
-- Name: languages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.languages_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.languages_id_seq OWNER TO postgres;

--
-- Name: languages_id_seq1; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.languages_id_seq1
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.languages_id_seq1 OWNER TO postgres;

--
-- Name: languages_id_seq1; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.languages_id_seq1 OWNED BY public.languages.id;


--
-- Name: looking_ads; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.looking_ads (
    id bigint NOT NULL,
    ad_id bigint NOT NULL,
    category_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.looking_ads OWNER TO postgres;

--
-- Name: looking_ads_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.looking_ads_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.looking_ads_id_seq OWNER TO postgres;

--
-- Name: looking_ads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.looking_ads_id_seq OWNED BY public.looking_ads.id;


--
-- Name: main_notifications; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.main_notifications (
    id bigint NOT NULL,
    title character varying(255) NOT NULL,
    content text NOT NULL,
    generated_by character varying(255) NOT NULL,
    image character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    title_ar character varying(255),
    content_ar text
);


ALTER TABLE public.main_notifications OWNER TO postgres;

--
-- Name: main_notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.main_notifications_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.main_notifications_id_seq OWNER TO postgres;

--
-- Name: main_notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.main_notifications_id_seq OWNED BY public.main_notifications.id;


--
-- Name: marital_statuses; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.marital_statuses (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    show_wife_children_option boolean DEFAULT false NOT NULL,
    gender character varying(255)
);


ALTER TABLE public.marital_statuses OWNER TO postgres;

--
-- Name: marital_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.marital_statuses_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.marital_statuses_id_seq OWNER TO postgres;

--
-- Name: marital_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.marital_statuses_id_seq OWNED BY public.marital_statuses.id;


--
-- Name: migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.migrations_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.migrations_id_seq OWNER TO postgres;

--
-- Name: migrations; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.migrations (
    id integer DEFAULT nextval('public.migrations_id_seq'::regclass) NOT NULL,
    migration character varying(255) NOT NULL,
    batch integer NOT NULL
);


ALTER TABLE public.migrations OWNER TO postgres;

--
-- Name: model_has_permissions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.model_has_permissions (
    permission_id bigint NOT NULL,
    model_type character varying(255) NOT NULL,
    model_id bigint NOT NULL
);


ALTER TABLE public.model_has_permissions OWNER TO postgres;

--
-- Name: model_has_roles; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.model_has_roles (
    role_id bigint NOT NULL,
    model_type character varying(255) NOT NULL,
    model_id bigint NOT NULL
);


ALTER TABLE public.model_has_roles OWNER TO postgres;

--
-- Name: motor_makes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.motor_makes (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    icon character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.motor_makes OWNER TO postgres;

--
-- Name: motor_makes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.motor_makes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.motor_makes_id_seq OWNER TO postgres;

--
-- Name: motor_makes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.motor_makes_id_seq OWNED BY public.motor_makes.id;


--
-- Name: motor_models; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.motor_models (
    id bigint NOT NULL,
    make_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.motor_models OWNER TO postgres;

--
-- Name: motor_models_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.motor_models_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.motor_models_id_seq OWNER TO postgres;

--
-- Name: motor_models_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.motor_models_id_seq OWNED BY public.motor_models.id;


--
-- Name: nationalities; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.nationalities (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    country_code character varying(255)
);


ALTER TABLE public.nationalities OWNER TO postgres;

--
-- Name: nationalities_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.nationalities_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.nationalities_id_seq OWNER TO postgres;

--
-- Name: nationalities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.nationalities_id_seq OWNED BY public.nationalities.id;


--
-- Name: notification_settings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.notification_settings (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    slug character varying(255) NOT NULL,
    value boolean NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.notification_settings OWNER TO postgres;

--
-- Name: notification_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.notification_settings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.notification_settings_id_seq OWNER TO postgres;

--
-- Name: notification_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.notification_settings_id_seq OWNED BY public.notification_settings.id;


--
-- Name: notifications; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.notifications (
    id bigint NOT NULL,
    title character varying(255) NOT NULL,
    content text NOT NULL,
    user_id bigint NOT NULL,
    generated_by bigint,
    generated_to bigint,
    is_read character varying(255) DEFAULT 'no'::character varying NOT NULL,
    image character varying(255),
    status integer DEFAULT 1 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    main_notification_id bigint,
    title_ar character varying(255),
    content_ar text,
    CONSTRAINT notifications_is_read_check CHECK (((is_read)::text = ANY (ARRAY[('yes'::character varying)::text, ('no'::character varying)::text])))
);


ALTER TABLE public.notifications OWNER TO postgres;

--
-- Name: notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.notifications_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.notifications_id_seq OWNER TO postgres;

--
-- Name: notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.notifications_id_seq OWNED BY public.notifications.id;


--
-- Name: packages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.packages_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.packages_id_seq OWNER TO postgres;

--
-- Name: packages; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.packages (
    id bigint DEFAULT nextval('public.packages_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    price double precision NOT NULL,
    status smallint DEFAULT '0'::smallint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.packages OWNER TO postgres;

--
-- Name: COLUMN packages.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.packages.status IS '0 - Inactive, 1 - Active';


--
-- Name: packages_addons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.packages_addons_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.packages_addons_id_seq OWNER TO postgres;

--
-- Name: packages_addons; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.packages_addons (
    id bigint DEFAULT nextval('public.packages_addons_id_seq'::regclass) NOT NULL,
    package_id bigint NOT NULL,
    title character varying(255) NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.packages_addons OWNER TO postgres;

--
-- Name: parent_approvals; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.parent_approvals (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    email character varying(255) NOT NULL,
    token character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    approved_at timestamp(0) without time zone,
    rejected_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    gardien_phone_dial_code character varying(255),
    gardien_phone_number character varying(255)
);


ALTER TABLE public.parent_approvals OWNER TO postgres;

--
-- Name: parent_approvals_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.parent_approvals_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.parent_approvals_id_seq OWNER TO postgres;

--
-- Name: parent_approvals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.parent_approvals_id_seq OWNED BY public.parent_approvals.id;


--
-- Name: parent_categories; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.parent_categories (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    icon character varying(255),
    sort_order integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.parent_categories OWNER TO postgres;

--
-- Name: parent_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.parent_categories_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.parent_categories_id_seq OWNER TO postgres;

--
-- Name: parent_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.parent_categories_id_seq OWNED BY public.parent_categories.id;


--
-- Name: password_reset_tokens; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.password_reset_tokens (
    email character varying(255) NOT NULL,
    token character varying(255) NOT NULL,
    created_at timestamp(0) without time zone
);


ALTER TABLE public.password_reset_tokens OWNER TO postgres;

--
-- Name: payment_reports; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.payment_reports (
    id bigint NOT NULL,
    transaction_id character varying(255),
    payment_status character varying(255),
    user_id integer DEFAULT 0 NOT NULL,
    ref_id character varying(255),
    amount numeric(8,2) NOT NULL,
    method_type integer DEFAULT 1 NOT NULL,
    vat numeric(8,2) DEFAULT '0'::numeric NOT NULL,
    wallet_amount_used numeric(8,2) DEFAULT '0'::numeric NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    ad_id bigint,
    currency character varying(255)
);


ALTER TABLE public.payment_reports OWNER TO postgres;

--
-- Name: payment_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.payment_reports_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.payment_reports_id_seq OWNER TO postgres;

--
-- Name: payment_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.payment_reports_id_seq OWNED BY public.payment_reports.id;


--
-- Name: permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.permissions_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.permissions_id_seq OWNER TO postgres;

--
-- Name: permissions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.permissions (
    id bigint DEFAULT nextval('public.permissions_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    guard_name character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.permissions OWNER TO postgres;

--
-- Name: personal_access_tokens; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.personal_access_tokens (
    id bigint NOT NULL,
    tokenable_type character varying(255) NOT NULL,
    tokenable_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    token character varying(64) NOT NULL,
    abilities text,
    last_used_at timestamp(0) without time zone,
    expires_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.personal_access_tokens OWNER TO postgres;

--
-- Name: personal_access_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.personal_access_tokens_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.personal_access_tokens_id_seq OWNER TO postgres;

--
-- Name: personal_access_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.personal_access_tokens_id_seq OWNED BY public.personal_access_tokens.id;


--
-- Name: plan_durations; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.plan_durations (
    id bigint NOT NULL,
    pricing_plan_id bigint NOT NULL,
    duration character varying(255) NOT NULL,
    price character varying(255) NOT NULL,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    CONSTRAINT plan_durations_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.plan_durations OWNER TO postgres;

--
-- Name: plan_durations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.plan_durations_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.plan_durations_id_seq OWNER TO postgres;

--
-- Name: plan_durations_id_seq1; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.plan_durations_id_seq1
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.plan_durations_id_seq1 OWNER TO postgres;

--
-- Name: plan_durations_id_seq1; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.plan_durations_id_seq1 OWNED BY public.plan_durations.id;


--
-- Name: popular_ads; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.popular_ads (
    id bigint NOT NULL,
    ad_id bigint NOT NULL,
    category_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.popular_ads OWNER TO postgres;

--
-- Name: popular_ads_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.popular_ads_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.popular_ads_id_seq OWNER TO postgres;

--
-- Name: popular_ads_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.popular_ads_id_seq OWNED BY public.popular_ads.id;


--
-- Name: pricing_plans; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.pricing_plans (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    duration character varying(255) NOT NULL,
    price character varying(255) NOT NULL,
    currency character varying(255) NOT NULL,
    description character varying(255) NOT NULL,
    description_ar character varying(255) NOT NULL,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    type character varying(255) DEFAULT 'basic'::character varying,
    max_request_count integer DEFAULT 0 NOT NULL,
    CONSTRAINT pricing_plans_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.pricing_plans OWNER TO postgres;

--
-- Name: pricing_plans_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.pricing_plans_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.pricing_plans_id_seq OWNER TO postgres;

--
-- Name: pricing_plans_id_seq1; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.pricing_plans_id_seq1
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.pricing_plans_id_seq1 OWNER TO postgres;

--
-- Name: pricing_plans_id_seq1; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.pricing_plans_id_seq1 OWNED BY public.pricing_plans.id;


--
-- Name: professions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.professions (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.professions OWNER TO postgres;

--
-- Name: professions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.professions_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.professions_id_seq OWNER TO postgres;

--
-- Name: professions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.professions_id_seq OWNED BY public.professions.id;


--
-- Name: promo_codes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.promo_codes (
    id bigint NOT NULL,
    code character varying(255) NOT NULL,
    type character varying(255) NOT NULL,
    value integer NOT NULL,
    start_date date NOT NULL,
    end_date date NOT NULL,
    total_limit integer,
    user_limit integer DEFAULT 0 NOT NULL,
    daily_limit integer DEFAULT 0 NOT NULL,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    pricing_plan_id json,
    CONSTRAINT promo_codes_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text]))),
    CONSTRAINT promo_codes_type_check CHECK (((type)::text = ANY (ARRAY[('percentage'::character varying)::text, ('fixed'::character varying)::text])))
);


ALTER TABLE public.promo_codes OWNER TO postgres;

--
-- Name: promo_codes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.promo_codes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.promo_codes_id_seq OWNER TO postgres;

--
-- Name: promo_codes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.promo_codes_id_seq OWNED BY public.promo_codes.id;


--
-- Name: property_amenities; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.property_amenities (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.property_amenities OWNER TO postgres;

--
-- Name: property_amenities_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.property_amenities_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.property_amenities_id_seq OWNER TO postgres;

--
-- Name: property_amenities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.property_amenities_id_seq OWNED BY public.property_amenities.id;


--
-- Name: questions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.questions (
    id bigint NOT NULL,
    chat_category_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.questions OWNER TO postgres;

--
-- Name: questions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.questions_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.questions_id_seq OWNER TO postgres;

--
-- Name: questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.questions_id_seq OWNED BY public.questions.id;


--
-- Name: quotes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.quotes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.quotes_id_seq OWNER TO postgres;

--
-- Name: quotes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.quotes (
    id bigint DEFAULT nextval('public.quotes_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    email character varying(255) NOT NULL,
    from_lang character varying(255) NOT NULL,
    to_lang text NOT NULL,
    total_pages integer NOT NULL,
    word_count integer NOT NULL,
    service_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.quotes OWNER TO postgres;

--
-- Name: report_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.report_types (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    status integer DEFAULT 1 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.report_types OWNER TO postgres;

--
-- Name: report_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.report_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.report_types_id_seq OWNER TO postgres;

--
-- Name: report_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.report_types_id_seq OWNED BY public.report_types.id;


--
-- Name: reviews_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.reviews_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.reviews_id_seq OWNER TO postgres;

--
-- Name: reviews; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.reviews (
    id bigint DEFAULT nextval('public.reviews_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    status boolean DEFAULT true NOT NULL,
    review text NOT NULL,
    image character varying(255),
    designation character varying(255),
    rating numeric(2,1) DEFAULT '0'::numeric NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.reviews OWNER TO postgres;

--
-- Name: role_has_permissions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.role_has_permissions (
    permission_id bigint NOT NULL,
    role_id bigint NOT NULL
);


ALTER TABLE public.role_has_permissions OWNER TO postgres;

--
-- Name: roles_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.roles_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.roles_id_seq OWNER TO postgres;

--
-- Name: roles; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.roles (
    id bigint DEFAULT nextval('public.roles_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    guard_name character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.roles OWNER TO postgres;

--
-- Name: sects; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sects (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.sects OWNER TO postgres;

--
-- Name: sects_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sects_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sects_id_seq OWNER TO postgres;

--
-- Name: sects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sects_id_seq OWNED BY public.sects.id;


--
-- Name: service_atributes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.service_atributes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.service_atributes_id_seq OWNER TO postgres;

--
-- Name: service_atributes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.service_atributes (
    id bigint DEFAULT nextval('public.service_atributes_id_seq'::regclass) NOT NULL,
    service_id integer NOT NULL,
    name character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.service_atributes OWNER TO postgres;

--
-- Name: service_atributes_value_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.service_atributes_value_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.service_atributes_value_id_seq OWNER TO postgres;

--
-- Name: service_atributes_value; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.service_atributes_value (
    id bigint DEFAULT nextval('public.service_atributes_value_id_seq'::regclass) NOT NULL,
    service_id integer NOT NULL,
    attribute_id integer NOT NULL,
    name character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone,
    price numeric(10,2) DEFAULT '0'::numeric NOT NULL
);


ALTER TABLE public.service_atributes_value OWNER TO postgres;

--
-- Name: service_booking_fields_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.service_booking_fields_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.service_booking_fields_id_seq OWNER TO postgres;

--
-- Name: service_booking_fields; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.service_booking_fields (
    id bigint DEFAULT nextval('public.service_booking_fields_id_seq'::regclass) NOT NULL,
    service_id bigint NOT NULL,
    type character varying(255) NOT NULL,
    label character varying(255) NOT NULL,
    name character varying(255) NOT NULL,
    options text,
    attribute_id bigint,
    file_types character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    field_id bigint
);


ALTER TABLE public.service_booking_fields OWNER TO postgres;

--
-- Name: service_details_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.service_details_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.service_details_id_seq OWNER TO postgres;

--
-- Name: service_details; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.service_details (
    id bigint DEFAULT nextval('public.service_details_id_seq'::regclass) NOT NULL,
    service_id bigint NOT NULL,
    title character varying(255) NOT NULL,
    content text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.service_details OWNER TO postgres;

--
-- Name: service_faqs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.service_faqs_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.service_faqs_id_seq OWNER TO postgres;

--
-- Name: service_faqs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.service_faqs (
    id bigint DEFAULT nextval('public.service_faqs_id_seq'::regclass) NOT NULL,
    service_id bigint NOT NULL,
    question character varying(255) NOT NULL,
    answer text NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.service_faqs OWNER TO postgres;

--
-- Name: service_pricing_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.service_pricing_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.service_pricing_id_seq OWNER TO postgres;

--
-- Name: service_pricing; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.service_pricing (
    id bigint DEFAULT nextval('public.service_pricing_id_seq'::regclass) NOT NULL,
    service_id bigint NOT NULL,
    translation_from bigint,
    translation_to bigint,
    price numeric(10,2),
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    CONSTRAINT service_pricing_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.service_pricing OWNER TO postgres;

--
-- Name: services_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.services_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.services_id_seq OWNER TO postgres;

--
-- Name: services; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.services (
    id bigint DEFAULT nextval('public.services_id_seq'::regclass) NOT NULL,
    title character varying(255) NOT NULL,
    service_type_id integer NOT NULL,
    subtitle character varying(255),
    description text,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    background_image character varying(255),
    service_image character varying(255),
    other_image character varying(255),
    price_from real,
    price_to real,
    CONSTRAINT services_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.services OWNER TO postgres;

--
-- Name: services_bookings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.services_bookings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.services_bookings_id_seq OWNER TO postgres;

--
-- Name: services_bookings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.services_bookings (
    id bigint DEFAULT nextval('public.services_bookings_id_seq'::regclass) NOT NULL,
    service_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    booking_id character varying(255),
    first_name character varying(255),
    last_name character varying(255),
    company_name character varying(255),
    country character varying(255),
    street_address character varying(255),
    apartment character varying(255),
    city character varying(255),
    state character varying(255),
    phone character varying(255),
    email character varying(255),
    file_namesconfirm character varying(255),
    order_notes text,
    total numeric(10,2) DEFAULT '0'::numeric NOT NULL,
    status character varying(255) DEFAULT 'Pending'::character varying NOT NULL,
    CONSTRAINT services_bookings_status_check CHECK (((status)::text = ANY (ARRAY[('Pending'::character varying)::text, ('Under Process'::character varying)::text, ('Completed'::character varying)::text, ('Ready for Delivery'::character varying)::text])))
);


ALTER TABLE public.services_bookings OWNER TO postgres;

--
-- Name: services_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.services_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.services_types_id_seq OWNER TO postgres;

--
-- Name: services_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.services_types (
    id bigint DEFAULT nextval('public.services_types_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    CONSTRAINT services_types_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.services_types OWNER TO postgres;

--
-- Name: COLUMN services_types.name; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.services_types.name IS 'Service type name';


--
-- Name: COLUMN services_types.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.services_types.status IS 'Status of the service type';


--
-- Name: sessions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sessions (
    id character varying(255) NOT NULL,
    user_id bigint,
    ip_address character varying(45),
    user_agent text,
    payload text NOT NULL,
    last_activity integer NOT NULL
);


ALTER TABLE public.sessions OWNER TO postgres;

--
-- Name: site_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.site_settings_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.site_settings_id_seq OWNER TO postgres;

--
-- Name: site_settings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.site_settings (
    id bigint DEFAULT nextval('public.site_settings_id_seq'::regclass) NOT NULL,
    key character varying(255) NOT NULL,
    value text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.site_settings OWNER TO postgres;

--
-- Name: slider_buttons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.slider_buttons_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.slider_buttons_id_seq OWNER TO postgres;

--
-- Name: slider_items; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.slider_items (
    id bigint NOT NULL,
    slider_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    image character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.slider_items OWNER TO postgres;

--
-- Name: slider_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.slider_items_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.slider_items_id_seq OWNER TO postgres;

--
-- Name: slider_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.slider_items_id_seq OWNED BY public.slider_items.id;


--
-- Name: sliders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sliders (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    category_id bigint NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


ALTER TABLE public.sliders OWNER TO postgres;

--
-- Name: sliders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sliders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sliders_id_seq OWNER TO postgres;

--
-- Name: sliders_id_seq1; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sliders_id_seq1
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sliders_id_seq1 OWNER TO postgres;

--
-- Name: sliders_id_seq1; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sliders_id_seq1 OWNED BY public.sliders.id;


--
-- Name: sports; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.sports (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255),
    status integer DEFAULT 1 NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    image character varying(255)
);


ALTER TABLE public.sports OWNER TO postgres;

--
-- Name: sports_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.sports_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.sports_id_seq OWNER TO postgres;

--
-- Name: sports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.sports_id_seq OWNED BY public.sports.id;


--
-- Name: support_tickets; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.support_tickets (
    id bigint NOT NULL,
    ticket_number character varying(255),
    user_id bigint NOT NULL,
    subject character varying(255) NOT NULL,
    description text NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.support_tickets OWNER TO postgres;

--
-- Name: support_tickets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.support_tickets_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.support_tickets_id_seq OWNER TO postgres;

--
-- Name: support_tickets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.support_tickets_id_seq OWNED BY public.support_tickets.id;


--
-- Name: target_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.target_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.target_types_id_seq OWNER TO postgres;

--
-- Name: target_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.target_types (
    id bigint DEFAULT nextval('public.target_types_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.target_types OWNER TO postgres;

--
-- Name: target_types_company_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.target_types_company_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.target_types_company_id_seq OWNER TO postgres;

--
-- Name: target_types_company; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.target_types_company (
    id bigint DEFAULT nextval('public.target_types_company_id_seq'::regclass) NOT NULL,
    company_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.target_types_company OWNER TO postgres;

--
-- Name: temp_orders; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.temp_orders (
    id bigint NOT NULL,
    plan_id bigint NOT NULL,
    user_id bigint NOT NULL,
    duration_id bigint,
    duration character varying(255) NOT NULL,
    payment_method character varying(255) NOT NULL,
    total_price character varying(255) NOT NULL,
    currency character varying(255) NOT NULL,
    discount character varying(255),
    promo_code character varying(255),
    grand_total character varying(255) NOT NULL,
    status character varying(255) DEFAULT 'pending'::character varying NOT NULL,
    transaction_id character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.temp_orders OWNER TO postgres;

--
-- Name: temp_orders_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.temp_orders_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.temp_orders_id_seq OWNER TO postgres;

--
-- Name: temp_orders_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.temp_orders_id_seq OWNED BY public.temp_orders.id;


--
-- Name: temp_users; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.temp_users (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    nick_name character varying(255) NOT NULL,
    dial_code character varying(255) NOT NULL,
    phone character varying(255) NOT NULL,
    email character varying(255) NOT NULL,
    gender character varying(255) NOT NULL,
    password character varying(255) NOT NULL,
    dob date NOT NULL,
    country_id bigint NOT NULL,
    user_phone_otp character varying(255),
    user_email_otp character varying(255),
    user_device_type character varying(255),
    user_device_token character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    parent_name character varying(255),
    parent_email character varying(255),
    external_customer_id character varying(255),
    is_mother_uae_national character varying(255) DEFAULT '0'::character varying,
    is_pending_from_admin character varying(255) DEFAULT '0'::character varying,
    birth_certificate character varying(255),
    mothers_emirates_id character varying(255),
    reject_reason character varying(255),
    gardien_relation character varying(255),
    gardien_phone_dial_code character varying(255),
    gardien_phone_number character varying(255)
);


ALTER TABLE public.temp_users OWNER TO postgres;

--
-- Name: temp_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.temp_users_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.temp_users_id_seq OWNER TO postgres;

--
-- Name: temp_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.temp_users_id_seq OWNED BY public.temp_users.id;


--
-- Name: translation_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.translation_types_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.translation_types_id_seq OWNER TO postgres;

--
-- Name: translation_types; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.translation_types (
    id bigint DEFAULT nextval('public.translation_types_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    description text,
    price_type character varying(255) DEFAULT 'free'::character varying NOT NULL,
    price numeric(10,2) DEFAULT '0'::numeric,
    percentage numeric(5,2) DEFAULT '0'::numeric,
    category character varying(255),
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    CONSTRAINT translation_types_price_type_check CHECK (((price_type)::text = ANY (ARRAY[('free'::character varying)::text, ('rush_fee'::character varying)::text, ('fixed'::character varying)::text]))),
    CONSTRAINT translation_types_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.translation_types OWNER TO postgres;

--
-- Name: COLUMN translation_types.name; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types.name IS 'Translation Type Name';


--
-- Name: COLUMN translation_types.description; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types.description IS 'Description of the Translation Type';


--
-- Name: COLUMN translation_types.price_type; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types.price_type IS 'Price Type';


--
-- Name: COLUMN translation_types.price; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types.price IS 'Price for the translation type';


--
-- Name: COLUMN translation_types.percentage; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types.percentage IS 'Percentage for Rush Fee';


--
-- Name: COLUMN translation_types.category; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types.category IS 'Category for the translation type';


--
-- Name: COLUMN translation_types.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types.status IS 'Status of the translation type';


--
-- Name: translation_types_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.translation_types_categories_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.translation_types_categories_id_seq OWNER TO postgres;

--
-- Name: translation_types_categories; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.translation_types_categories (
    id bigint DEFAULT nextval('public.translation_types_categories_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    slug character varying(255) NOT NULL,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    description text,
    price_type character varying(255) DEFAULT 'free'::character varying NOT NULL,
    price numeric(10,2) DEFAULT '0'::numeric,
    percentage numeric(5,2) DEFAULT '0'::numeric,
    CONSTRAINT translation_types_categories_price_type_check CHECK (((price_type)::text = ANY (ARRAY[('free'::character varying)::text, ('rush_fee'::character varying)::text, ('fixed'::character varying)::text]))),
    CONSTRAINT translation_types_categories_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.translation_types_categories OWNER TO postgres;

--
-- Name: COLUMN translation_types_categories.description; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types_categories.description IS 'Description of the Translation Type';


--
-- Name: COLUMN translation_types_categories.price_type; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types_categories.price_type IS 'Price Type';


--
-- Name: COLUMN translation_types_categories.price; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types_categories.price IS 'Price for the translation type';


--
-- Name: COLUMN translation_types_categories.percentage; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.translation_types_categories.percentage IS 'Percentage for Rush Fee';


--
-- Name: user_activities; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_activities (
    id bigint NOT NULL,
    user_id bigint,
    activity_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_activities OWNER TO postgres;

--
-- Name: user_activities_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_activities_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_activities_id_seq OWNER TO postgres;

--
-- Name: user_activities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_activities_id_seq OWNED BY public.user_activities.id;


--
-- Name: user_blocks; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_blocks (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    blocked_user_id bigint NOT NULL,
    reason character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_blocks OWNER TO postgres;

--
-- Name: user_blocks_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_blocks_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_blocks_id_seq OWNER TO postgres;

--
-- Name: user_blocks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_blocks_id_seq OWNED BY public.user_blocks.id;


--
-- Name: user_children; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_children (
    id bigint NOT NULL,
    user_id bigint,
    kid_count integer NOT NULL,
    age character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_children OWNER TO postgres;

--
-- Name: user_children_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_children_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_children_id_seq OWNER TO postgres;

--
-- Name: user_children_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_children_id_seq OWNED BY public.user_children.id;


--
-- Name: user_chronic_disease_variants; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_chronic_disease_variants (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    chronic_disease_id bigint NOT NULL,
    chronic_disease_variant_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_chronic_disease_variants OWNER TO postgres;

--
-- Name: user_chronic_disease_variants_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_chronic_disease_variants_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_chronic_disease_variants_id_seq OWNER TO postgres;

--
-- Name: user_chronic_disease_variants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_chronic_disease_variants_id_seq OWNED BY public.user_chronic_disease_variants.id;


--
-- Name: user_chronic_diseases; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_chronic_diseases (
    id bigint NOT NULL,
    user_id bigint,
    chronic_disease_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_chronic_diseases OWNER TO postgres;

--
-- Name: user_chronic_diseases_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_chronic_diseases_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_chronic_diseases_id_seq OWNER TO postgres;

--
-- Name: user_chronic_diseases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_chronic_diseases_id_seq OWNED BY public.user_chronic_diseases.id;


--
-- Name: user_connection; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_connection (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    connected_user_id bigint NOT NULL,
    is_blocked integer DEFAULT 0 NOT NULL,
    reason text,
    hide_image integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_connection OWNER TO postgres;

--
-- Name: COLUMN user_connection.is_blocked; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.user_connection.is_blocked IS '1=block,0=active';


--
-- Name: COLUMN user_connection.hide_image; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.user_connection.hide_image IS '1=hide,0=show';


--
-- Name: user_connection_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_connection_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_connection_id_seq OWNER TO postgres;

--
-- Name: user_connection_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_connection_id_seq OWNED BY public.user_connection.id;


--
-- Name: user_connections; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_connections (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    connected_user_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    hide_image integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.user_connections OWNER TO postgres;

--
-- Name: user_connections_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_connections_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_connections_id_seq OWNER TO postgres;

--
-- Name: user_connections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_connections_id_seq OWNED BY public.user_connections.id;


--
-- Name: user_details; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_details (
    id bigint NOT NULL,
    user_id bigint,
    sect_id bigint,
    education_id bigint,
    profession_id bigint,
    height_cm character varying(255),
    height_ft character varying(255),
    weight_kg character varying(255),
    weight_lbs character varying(255),
    marital_status_id bigint,
    wives integer,
    children integer,
    religious_practice integer,
    dress_code_id bigint,
    smoking integer,
    genetic_disease integer,
    genetic_disease_id bigint,
    about text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    chronic_disease integer DEFAULT 0 NOT NULL
);


ALTER TABLE public.user_details OWNER TO postgres;

--
-- Name: user_details_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_details_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_details_id_seq OWNER TO postgres;

--
-- Name: user_details_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_details_id_seq OWNED BY public.user_details.id;


--
-- Name: user_disease_variants; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_disease_variants (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    genetic_disease_id bigint NOT NULL,
    genetic_disease_variant_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_disease_variants OWNER TO postgres;

--
-- Name: user_disease_variants_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_disease_variants_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_disease_variants_id_seq OWNER TO postgres;

--
-- Name: user_disease_variants_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_disease_variants_id_seq OWNED BY public.user_disease_variants.id;


--
-- Name: user_diseases; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_diseases (
    id bigint NOT NULL,
    user_id bigint,
    genetic_disease_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    genetic_disease_variant_id bigint
);


ALTER TABLE public.user_diseases OWNER TO postgres;

--
-- Name: user_diseases_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_diseases_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_diseases_id_seq OWNER TO postgres;

--
-- Name: user_diseases_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_diseases_id_seq OWNED BY public.user_diseases.id;


--
-- Name: user_dress_codes; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_dress_codes (
    id bigint NOT NULL,
    user_id bigint,
    dress_code_id integer,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_dress_codes OWNER TO postgres;

--
-- Name: user_dress_codes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_dress_codes_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_dress_codes_id_seq OWNER TO postgres;

--
-- Name: user_dress_codes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_dress_codes_id_seq OWNED BY public.user_dress_codes.id;


--
-- Name: user_educations; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_educations (
    id bigint NOT NULL,
    user_id bigint,
    education_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_educations OWNER TO postgres;

--
-- Name: user_educations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_educations_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_educations_id_seq OWNER TO postgres;

--
-- Name: user_educations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_educations_id_seq OWNED BY public.user_educations.id;


--
-- Name: user_images; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_images (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    url character varying(255) NOT NULL,
    is_hidden integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_images OWNER TO postgres;

--
-- Name: user_images_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_images_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_images_id_seq OWNER TO postgres;

--
-- Name: user_images_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_images_id_seq OWNED BY public.user_images.id;


--
-- Name: user_marital_statuses; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_marital_statuses (
    id bigint NOT NULL,
    user_id bigint,
    marital_status_id integer,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_marital_statuses OWNER TO postgres;

--
-- Name: user_marital_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_marital_statuses_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_marital_statuses_id_seq OWNER TO postgres;

--
-- Name: user_marital_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_marital_statuses_id_seq OWNED BY public.user_marital_statuses.id;


--
-- Name: user_matches; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_matches (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    matched_user_id bigint NOT NULL,
    match_percentage integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_matches OWNER TO postgres;

--
-- Name: user_matches_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_matches_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_matches_id_seq OWNER TO postgres;

--
-- Name: user_matches_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_matches_id_seq OWNED BY public.user_matches.id;


--
-- Name: user_plans; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_plans (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    name_ar character varying(255) NOT NULL,
    type character varying(255) NOT NULL,
    price character varying(255) NOT NULL,
    currency character varying(255) NOT NULL,
    description character varying(255) NOT NULL,
    description_ar character varying(255) NOT NULL,
    status character varying(255) DEFAULT '1'::character varying NOT NULL,
    payment_method character varying(255),
    total_price character varying(255),
    discount character varying(255),
    promo_code character varying(255),
    payment_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    plan_id bigint,
    expiry_date date,
    duration character varying(255) DEFAULT 'monthly'::character varying,
    request_count integer DEFAULT 0 NOT NULL,
    CONSTRAINT user_plans_status_check CHECK (((status)::text = ANY (ARRAY[('0'::character varying)::text, ('1'::character varying)::text])))
);


ALTER TABLE public.user_plans OWNER TO postgres;

--
-- Name: user_plans_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_plans_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_plans_id_seq OWNER TO postgres;

--
-- Name: user_plans_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_plans_id_seq OWNED BY public.user_plans.id;


--
-- Name: user_preferences; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_preferences (
    id bigint NOT NULL,
    user_id bigint,
    sect_id character varying(255),
    religion_practice character varying(255),
    marital_status character varying(255),
    education_id character varying(255),
    profession_id character varying(255),
    dress_code_id character varying(255),
    smoking character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    weight_all integer DEFAULT 0,
    height_all integer DEFAULT 0,
    from_height_cm character varying(255),
    to_height_cm character varying(255),
    from_height_ft character varying(255),
    to_height_ft character varying(255),
    from_weight_kg character varying(255),
    from_weight_lbs character varying(255),
    to_weight_kg character varying(255),
    to_weight_lbs character varying(255),
    prefrance_setup_completed integer DEFAULT 0,
    city_emirate_id integer DEFAULT 0
);


ALTER TABLE public.user_preferences OWNER TO postgres;

--
-- Name: user_preferences_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_preferences_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_preferences_id_seq OWNER TO postgres;

--
-- Name: user_preferences_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_preferences_id_seq OWNED BY public.user_preferences.id;


--
-- Name: user_professions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_professions (
    id bigint NOT NULL,
    user_id bigint,
    profession_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_professions OWNER TO postgres;

--
-- Name: user_professions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_professions_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_professions_id_seq OWNER TO postgres;

--
-- Name: user_professions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_professions_id_seq OWNED BY public.user_professions.id;


--
-- Name: user_reports; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_reports (
    id bigint NOT NULL,
    reporter_id bigint NOT NULL,
    reported_user_id bigint NOT NULL,
    reason character varying(255),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    report_type_id integer
);


ALTER TABLE public.user_reports OWNER TO postgres;

--
-- Name: user_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_reports_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_reports_id_seq OWNER TO postgres;

--
-- Name: user_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_reports_id_seq OWNED BY public.user_reports.id;


--
-- Name: user_requests; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_requests (
    id bigint NOT NULL,
    sender_id bigint NOT NULL,
    receiver_id bigint NOT NULL,
    status integer DEFAULT 0 NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_requests OWNER TO postgres;

--
-- Name: COLUMN user_requests.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.user_requests.status IS '0: pending, 1: accepted, 2: rejected';


--
-- Name: user_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_requests_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_requests_id_seq OWNER TO postgres;

--
-- Name: user_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_requests_id_seq OWNED BY public.user_requests.id;


--
-- Name: user_sects; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_sects (
    id bigint NOT NULL,
    user_id bigint,
    sect_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_sects OWNER TO postgres;

--
-- Name: user_sects_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_sects_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_sects_id_seq OWNER TO postgres;

--
-- Name: user_sects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_sects_id_seq OWNED BY public.user_sects.id;


--
-- Name: user_sports; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_sports (
    id bigint NOT NULL,
    user_id bigint,
    sport_id bigint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.user_sports OWNER TO postgres;

--
-- Name: user_sports_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.user_sports_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.user_sports_id_seq OWNER TO postgres;

--
-- Name: user_sports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_sports_id_seq OWNED BY public.user_sports.id;


--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.users_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.users_id_seq OWNER TO postgres;

--
-- Name: users; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.users (
    id bigint DEFAULT nextval('public.users_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    email character varying(255) NOT NULL,
    email_verified_at timestamp(0) without time zone,
    password character varying(255) NOT NULL,
    remember_token character varying(100),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    first_name character varying(255),
    last_name character varying(255),
    dial_code character varying(255),
    phone character varying(255),
    country_id integer,
    emirates_id integer,
    status integer DEFAULT 0,
    deleted_at timestamp(0) without time zone,
    role_id bigint,
    gender character varying(255),
    profile_image character varying(255),
    dob date,
    is_verified integer DEFAULT 0,
    user_device_type character varying(255),
    user_device_token character varying(255),
    user_phone_otp character varying(255),
    user_email_otp character varying(255),
    password_reset_code character varying(255),
    password_reset_time timestamp(0) without time zone,
    password_reset_otp character varying(255),
    is_social integer DEFAULT 0 NOT NULL,
    phone_verified integer DEFAULT 0 NOT NULL,
    user_access_token character varying(255),
    email_verified integer DEFAULT 0 NOT NULL,
    deleted integer DEFAULT 0 NOT NULL,
    nick_name character varying(255),
    nationality_id bigint,
    user_number character varying(255),
    parent_approval integer DEFAULT 1 NOT NULL,
    blur_image integer DEFAULT 0 NOT NULL,
    is_image_blur integer DEFAULT 0,
    hide_on_search boolean DEFAULT false NOT NULL,
    not_show_over_aged boolean DEFAULT false NOT NULL,
    firebase_user_key character varying(255),
    profile_setup_completed integer DEFAULT 0,
    parent_name character varying(255),
    parent_email character varying(255),
    preference_setup_completed integer DEFAULT 0 NOT NULL,
    who_can_contact integer,
    whatsapp_number character varying(255),
    temp_dial_code character varying(255),
    temp_phone character varying(255),
    temp_email character varying(255),
    external_customer_id character varying(255),
    is_mother_uae_national character varying(255) DEFAULT '0'::character varying,
    is_pending_from_admin character varying(255) DEFAULT '0'::character varying,
    birth_certificate character varying(255),
    mothers_emirates_id character varying(255),
    reject_reason character varying(255),
    gardien_relation character varying(255),
    gardien_phone_dial_code character varying(255),
    gardien_phone_number character varying(255),
    is_first_push_sent integer DEFAULT 0 NOT NULL,
    active_request_count integer DEFAULT 4 NOT NULL,
    skin_color character varying(255)
);


ALTER TABLE public.users OWNER TO postgres;

--
-- Name: verification_requests; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.verification_requests (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    email character varying(255) NOT NULL,
    remarks text,
    status character varying(255) DEFAULT 'pending'::character varying NOT NULL,
    licence_file character varying(255) NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    CONSTRAINT verification_requests_status_check CHECK (((status)::text = ANY (ARRAY[('pending'::character varying)::text, ('approved'::character varying)::text, ('rejected'::character varying)::text])))
);


ALTER TABLE public.verification_requests OWNER TO postgres;

--
-- Name: verification_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.verification_requests_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.verification_requests_id_seq OWNER TO postgres;

--
-- Name: verification_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.verification_requests_id_seq OWNED BY public.verification_requests.id;


--
-- Name: why_choose_us_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.why_choose_us_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.why_choose_us_id_seq OWNER TO postgres;

--
-- Name: why_choose_us; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.why_choose_us (
    id bigint DEFAULT nextval('public.why_choose_us_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    content text NOT NULL,
    image character varying(255),
    status boolean DEFAULT true NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.why_choose_us OWNER TO postgres;

--
-- Name: work_process_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE public.work_process_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.work_process_id_seq OWNER TO postgres;

--
-- Name: work_process; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.work_process (
    id bigint DEFAULT nextval('public.work_process_id_seq'::regclass) NOT NULL,
    name character varying(255) NOT NULL,
    content text,
    image character varying(255),
    status boolean DEFAULT true NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.work_process OWNER TO postgres;

--
-- Name: activities id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.activities ALTER COLUMN id SET DEFAULT nextval('public.activities_id_seq'::regclass);


--
-- Name: ad_images id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_images ALTER COLUMN id SET DEFAULT nextval('public.ad_images_id_seq'::regclass);


--
-- Name: ad_report_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_report_types ALTER COLUMN id SET DEFAULT nextval('public.ad_report_types_id_seq'::regclass);


--
-- Name: ad_reports id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_reports ALTER COLUMN id SET DEFAULT nextval('public.ad_reports_id_seq'::regclass);


--
-- Name: ad_requests id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_requests ALTER COLUMN id SET DEFAULT nextval('public.ad_requests_id_seq'::regclass);


--
-- Name: answers id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.answers ALTER COLUMN id SET DEFAULT nextval('public.answers_id_seq'::regclass);


--
-- Name: badges id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.badges ALTER COLUMN id SET DEFAULT nextval('public.badges_id_seq'::regclass);


--
-- Name: chat_categories id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chat_categories ALTER COLUMN id SET DEFAULT nextval('public.chat_categories_id_seq'::regclass);


--
-- Name: chat_messages id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chat_messages ALTER COLUMN id SET DEFAULT nextval('public.chat_messages_id_seq'::regclass);


--
-- Name: chats id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chats ALTER COLUMN id SET DEFAULT nextval('public.chats_id_seq'::regclass);


--
-- Name: chronic_disease_variants id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chronic_disease_variants ALTER COLUMN id SET DEFAULT nextval('public.chronic_disease_variants_id_seq'::regclass);


--
-- Name: chronic_diseases id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chronic_diseases ALTER COLUMN id SET DEFAULT nextval('public.chronic_diseases_id_seq'::regclass);


--
-- Name: countries id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.countries ALTER COLUMN id SET DEFAULT nextval('public.countries_id_seq'::regclass);


--
-- Name: dress_codes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.dress_codes ALTER COLUMN id SET DEFAULT nextval('public.dress_codes_id_seq'::regclass);


--
-- Name: educations id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.educations ALTER COLUMN id SET DEFAULT nextval('public.educations_id_seq'::regclass);


--
-- Name: emirates id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emirates ALTER COLUMN id SET DEFAULT nextval('public.emirates_id_seq'::regclass);


--
-- Name: employments id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.employments ALTER COLUMN id SET DEFAULT nextval('public.employments_id_seq'::regclass);


--
-- Name: genetic_disease_variants id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.genetic_disease_variants ALTER COLUMN id SET DEFAULT nextval('public.genetic_disease_variants_id_seq'::regclass);


--
-- Name: genetic_diseases id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.genetic_diseases ALTER COLUMN id SET DEFAULT nextval('public.genetic_diseases_id_seq'::regclass);


--
-- Name: home_element_ads id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.home_element_ads ALTER COLUMN id SET DEFAULT nextval('public.home_element_ads_id_seq'::regclass);


--
-- Name: home_elements id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.home_elements ALTER COLUMN id SET DEFAULT nextval('public.home_elements_id_seq'::regclass);


--
-- Name: known_languages id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.known_languages ALTER COLUMN id SET DEFAULT nextval('public.known_languages_id_seq'::regclass);


--
-- Name: languages id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.languages ALTER COLUMN id SET DEFAULT nextval('public.languages_id_seq1'::regclass);


--
-- Name: looking_ads id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.looking_ads ALTER COLUMN id SET DEFAULT nextval('public.looking_ads_id_seq'::regclass);


--
-- Name: main_notifications id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.main_notifications ALTER COLUMN id SET DEFAULT nextval('public.main_notifications_id_seq'::regclass);


--
-- Name: marital_statuses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.marital_statuses ALTER COLUMN id SET DEFAULT nextval('public.marital_statuses_id_seq'::regclass);


--
-- Name: motor_makes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.motor_makes ALTER COLUMN id SET DEFAULT nextval('public.motor_makes_id_seq'::regclass);


--
-- Name: motor_models id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.motor_models ALTER COLUMN id SET DEFAULT nextval('public.motor_models_id_seq'::regclass);


--
-- Name: nationalities id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.nationalities ALTER COLUMN id SET DEFAULT nextval('public.nationalities_id_seq'::regclass);


--
-- Name: notification_settings id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notification_settings ALTER COLUMN id SET DEFAULT nextval('public.notification_settings_id_seq'::regclass);


--
-- Name: notifications id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notifications ALTER COLUMN id SET DEFAULT nextval('public.notifications_id_seq'::regclass);


--
-- Name: parent_approvals id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.parent_approvals ALTER COLUMN id SET DEFAULT nextval('public.parent_approvals_id_seq'::regclass);


--
-- Name: parent_categories id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.parent_categories ALTER COLUMN id SET DEFAULT nextval('public.parent_categories_id_seq'::regclass);


--
-- Name: payment_reports id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.payment_reports ALTER COLUMN id SET DEFAULT nextval('public.payment_reports_id_seq'::regclass);


--
-- Name: personal_access_tokens id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.personal_access_tokens ALTER COLUMN id SET DEFAULT nextval('public.personal_access_tokens_id_seq'::regclass);


--
-- Name: plan_durations id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.plan_durations ALTER COLUMN id SET DEFAULT nextval('public.plan_durations_id_seq1'::regclass);


--
-- Name: popular_ads id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.popular_ads ALTER COLUMN id SET DEFAULT nextval('public.popular_ads_id_seq'::regclass);


--
-- Name: pricing_plans id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pricing_plans ALTER COLUMN id SET DEFAULT nextval('public.pricing_plans_id_seq1'::regclass);


--
-- Name: professions id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.professions ALTER COLUMN id SET DEFAULT nextval('public.professions_id_seq'::regclass);


--
-- Name: promo_codes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.promo_codes ALTER COLUMN id SET DEFAULT nextval('public.promo_codes_id_seq'::regclass);


--
-- Name: property_amenities id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.property_amenities ALTER COLUMN id SET DEFAULT nextval('public.property_amenities_id_seq'::regclass);


--
-- Name: questions id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.questions ALTER COLUMN id SET DEFAULT nextval('public.questions_id_seq'::regclass);


--
-- Name: report_types id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.report_types ALTER COLUMN id SET DEFAULT nextval('public.report_types_id_seq'::regclass);


--
-- Name: sects id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sects ALTER COLUMN id SET DEFAULT nextval('public.sects_id_seq'::regclass);


--
-- Name: slider_items id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.slider_items ALTER COLUMN id SET DEFAULT nextval('public.slider_items_id_seq'::regclass);


--
-- Name: sliders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sliders ALTER COLUMN id SET DEFAULT nextval('public.sliders_id_seq1'::regclass);


--
-- Name: sports id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sports ALTER COLUMN id SET DEFAULT nextval('public.sports_id_seq'::regclass);


--
-- Name: support_tickets id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.support_tickets ALTER COLUMN id SET DEFAULT nextval('public.support_tickets_id_seq'::regclass);


--
-- Name: temp_orders id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.temp_orders ALTER COLUMN id SET DEFAULT nextval('public.temp_orders_id_seq'::regclass);


--
-- Name: temp_users id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.temp_users ALTER COLUMN id SET DEFAULT nextval('public.temp_users_id_seq'::regclass);


--
-- Name: user_activities id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_activities ALTER COLUMN id SET DEFAULT nextval('public.user_activities_id_seq'::regclass);


--
-- Name: user_blocks id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_blocks ALTER COLUMN id SET DEFAULT nextval('public.user_blocks_id_seq'::regclass);


--
-- Name: user_children id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_children ALTER COLUMN id SET DEFAULT nextval('public.user_children_id_seq'::regclass);


--
-- Name: user_chronic_disease_variants id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_chronic_disease_variants ALTER COLUMN id SET DEFAULT nextval('public.user_chronic_disease_variants_id_seq'::regclass);


--
-- Name: user_chronic_diseases id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_chronic_diseases ALTER COLUMN id SET DEFAULT nextval('public.user_chronic_diseases_id_seq'::regclass);


--
-- Name: user_connection id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_connection ALTER COLUMN id SET DEFAULT nextval('public.user_connection_id_seq'::regclass);


--
-- Name: user_connections id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_connections ALTER COLUMN id SET DEFAULT nextval('public.user_connections_id_seq'::regclass);


--
-- Name: user_details id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_details ALTER COLUMN id SET DEFAULT nextval('public.user_details_id_seq'::regclass);


--
-- Name: user_disease_variants id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_disease_variants ALTER COLUMN id SET DEFAULT nextval('public.user_disease_variants_id_seq'::regclass);


--
-- Name: user_diseases id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_diseases ALTER COLUMN id SET DEFAULT nextval('public.user_diseases_id_seq'::regclass);


--
-- Name: user_dress_codes id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_dress_codes ALTER COLUMN id SET DEFAULT nextval('public.user_dress_codes_id_seq'::regclass);


--
-- Name: user_educations id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_educations ALTER COLUMN id SET DEFAULT nextval('public.user_educations_id_seq'::regclass);


--
-- Name: user_images id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_images ALTER COLUMN id SET DEFAULT nextval('public.user_images_id_seq'::regclass);


--
-- Name: user_marital_statuses id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_marital_statuses ALTER COLUMN id SET DEFAULT nextval('public.user_marital_statuses_id_seq'::regclass);


--
-- Name: user_matches id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_matches ALTER COLUMN id SET DEFAULT nextval('public.user_matches_id_seq'::regclass);


--
-- Name: user_plans id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_plans ALTER COLUMN id SET DEFAULT nextval('public.user_plans_id_seq'::regclass);


--
-- Name: user_preferences id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_preferences ALTER COLUMN id SET DEFAULT nextval('public.user_preferences_id_seq'::regclass);


--
-- Name: user_professions id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_professions ALTER COLUMN id SET DEFAULT nextval('public.user_professions_id_seq'::regclass);


--
-- Name: user_reports id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_reports ALTER COLUMN id SET DEFAULT nextval('public.user_reports_id_seq'::regclass);


--
-- Name: user_requests id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_requests ALTER COLUMN id SET DEFAULT nextval('public.user_requests_id_seq'::regclass);


--
-- Name: user_sects id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_sects ALTER COLUMN id SET DEFAULT nextval('public.user_sects_id_seq'::regclass);


--
-- Name: user_sports id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_sports ALTER COLUMN id SET DEFAULT nextval('public.user_sports_id_seq'::regclass);


--
-- Name: verification_requests id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.verification_requests ALTER COLUMN id SET DEFAULT nextval('public.verification_requests_id_seq'::regclass);


--
-- Data for Name: activities; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.activities (id, name, name_ar, status, deleted_at, created_at, updated_at, image) FROM stdin;
8	Cycling	ركوب الدراجة	1	2025-05-05 08:21:20	2025-05-03 10:12:34	2025-05-05 08:21:20	\N
2	Writing	الكتابة	1	2025-05-27 12:25:20	2025-05-03 10:10:36	2025-05-27 12:25:20	\N
7	Running	الخَبز	1	\N	2025-05-03 10:12:17	2025-06-06 11:21:58	6842cf5646b7b_1749208918.png
1	Reading	القراءة	1	\N	2025-05-03 10:10:17	2025-06-07 11:29:09	68442285c9fa6_1749295749.png
4	Dancing	الغناء	1	\N	2025-05-03 10:11:20	2025-06-07 11:30:09	684422c14e70c_1749295809.png
6	Cooking	الطبخ	1	\N	2025-05-03 10:11:56	2025-06-07 11:31:16	68442303e747f_1749295875.png
5	Cycling	الرقص	1	\N	2025-05-03 10:11:38	2025-06-07 11:31:57	6844232d902c1_1749295917.png
3	Watching Tv	التلوين	1	\N	2025-05-03 10:11:02	2025-06-07 11:33:23	68442382dfdbd_1749296002.png
9	Travelling	التصوير	1	\N	2025-05-03 10:12:51	2025-06-07 11:34:28	684423c41329d_1749296068.png
\.


--
-- Data for Name: ad_fields; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.ad_fields (id, ad_id, field_id, field_label, value, field_label_ar, value_ar, created_at, updated_at, field_type, section) FROM stdin;
1	4	61	Ads Title	Car for sale	عنوان الإعلانات	سيارة للبيع	\N	\N	\N	basic
5	4	62	Moke & Model	13	الوضع والنموذج	13	\N	\N	\N	basic
6	4	63	Regional Specs	4	المواصفات الإقليمية	4	\N	\N	\N	basic
7	4	64	Year	5	سنة	5	\N	\N	\N	basic
8	4	65	Kilometers	20000	كيلومترات	20000	\N	\N	\N	basic
9	4	66	Body Type	7	نوع الجسم	7	\N	\N	\N	basic
10	4	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟	9	\N	\N	\N	basic
11	4	68	Price	6000	سعر	6000	\N	\N	\N	basic
12	4	69	Phone Number	0511234567	رقم التليفون	0511234567	\N	\N	\N	basic
13	4	70	images	uploads/images.jpeg,uploads/toyota-supra.webp	الصور	image.png	\N	\N	\N	basic
47	25	68	Price	3	سعر		2025-04-18 05:57:57	2025-04-18 05:57:57	numeric	basic
48	25	69	Phone Number	3	رقم التليفون		2025-04-18 05:57:57	2025-04-18 05:57:57	mobile	basic
49	25	57	Model	23	Model		2025-04-18 05:57:57	2025-04-18 05:57:57	model	basic
14	1	40	Property Type	14	Property Type	14	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
15	1	41	Housing Category	17	Housing Category	17	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
2	1	42	Is it furnished?	19	Is it furnished?	19	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
3	1	43	Facilities	23	Facilities	23	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
4	1	44	Area/Size in sqft	2500	Area/Size in sqft	2500	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
16	1	45	Listed By	1443	Listed By	1443	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
17	1	46	Rent is Paid	1449	Rent is Paid	1449	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
18	1	47	Price	5000	Price	5000	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
19	1	48	Phone Number	+9711231234567	Phone Number	+9711231234567	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
20	1	49	Images	uploads/pexels-binyaminmellish-106399.jpg,uploads/pexels-binyaminmellish-186077.jpg	Images	uploads/pexels-binyaminmellish-106399.jpg,uploads/pexels-binyaminmellish-186077.jpg	2025-04-09 17:18:40	2025-04-09 17:18:40	\N	basic
21	22	62	Make	3	الوضع والنموذج		2025-04-18 05:49:19	2025-04-18 05:49:19	model	basic
22	22	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 05:49:19	2025-04-18 05:49:19	select	basic
23	22	64	Year	3	سنة		2025-04-18 05:49:19	2025-04-18 05:49:19	select	basic
24	22	65	Kilometers	3	كيلومترات		2025-04-18 05:49:19	2025-04-18 05:49:19	numeric	basic
25	22	66	Body Type	3	نوع الجسم		2025-04-18 05:49:19	2025-04-18 05:49:19	select	basic
26	22	67	Is your car insured in Syria	3	هل سيارتك مؤمنة في سوريا؟		2025-04-18 05:49:19	2025-04-18 05:49:19	select	basic
27	22	68	Price	3	سعر		2025-04-18 05:49:19	2025-04-18 05:49:19	numeric	basic
28	22	69	Phone Number	3	رقم التليفون		2025-04-18 05:49:19	2025-04-18 05:49:19	mobile	basic
29	22	57	Model	23	Model		2025-04-18 05:49:19	2025-04-18 05:49:19	model	basic
30	22	56	Description	3	وصف		2025-04-18 05:49:19	2025-04-18 05:49:19	textarea	basic
31	24	62	Make	3	الوضع والنموذج		2025-04-18 05:50:39	2025-04-18 05:50:39	model	basic
32	24	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 05:50:39	2025-04-18 05:50:39	select	basic
33	24	64	Year	3	سنة		2025-04-18 05:50:39	2025-04-18 05:50:39	select	basic
34	24	65	Kilometers	3	كيلومترات		2025-04-18 05:50:39	2025-04-18 05:50:39	numeric	basic
35	24	66	Body Type	3	نوع الجسم		2025-04-18 05:50:39	2025-04-18 05:50:39	select	basic
36	24	67	Is your car insured in Syria	3	هل سيارتك مؤمنة في سوريا؟		2025-04-18 05:50:39	2025-04-18 05:50:39	select	basic
37	24	68	Price	3	سعر		2025-04-18 05:50:39	2025-04-18 05:50:39	numeric	basic
38	24	69	Phone Number	3	رقم التليفون		2025-04-18 05:50:39	2025-04-18 05:50:39	mobile	basic
39	24	57	Model	23	Model		2025-04-18 05:50:39	2025-04-18 05:50:39	model	basic
40	24	56	Description	3	وصف		2025-04-18 05:50:39	2025-04-18 05:50:39	textarea	basic
41	25	62	Make	3	الوضع والنموذج		2025-04-18 05:57:57	2025-04-18 05:57:57	model	basic
42	25	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 05:57:57	2025-04-18 05:57:57	select	basic
43	25	64	Year	3	سنة		2025-04-18 05:57:57	2025-04-18 05:57:57	select	basic
44	25	65	Kilometers	3	كيلومترات		2025-04-18 05:57:57	2025-04-18 05:57:57	numeric	basic
45	25	66	Body Type	3	نوع الجسم		2025-04-18 05:57:57	2025-04-18 05:57:57	select	basic
46	25	67	Is your car insured in Syria	3	هل سيارتك مؤمنة في سوريا؟		2025-04-18 05:57:57	2025-04-18 05:57:57	select	basic
50	25	56	Description	3	وصف		2025-04-18 05:57:57	2025-04-18 05:57:57	textarea	basic
51	28	62	Make	1	الوضع والنموذج		2025-04-18 06:26:41	2025-04-18 06:26:41	model	basic
52	28	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 06:26:41	2025-04-18 06:26:41	select	basic
53	28	64	Year	5	سنة		2025-04-18 06:26:41	2025-04-18 06:26:41	select	basic
54	28	65	Kilometers	1	كيلومترات		2025-04-18 06:26:41	2025-04-18 06:26:41	numeric	basic
55	28	66	Body Type	7	نوع الجسم		2025-04-18 06:26:41	2025-04-18 06:26:41	select	basic
56	28	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 06:26:41	2025-04-18 06:26:41	select	basic
57	28	68	Price	1	سعر		2025-04-18 06:26:41	2025-04-18 06:26:41	numeric	basic
58	28	69	Phone Number	1	رقم التليفون		2025-04-18 06:26:41	2025-04-18 06:26:41	mobile	basic
59	28	57	Model	1	Model		2025-04-18 06:26:41	2025-04-18 06:26:41	model	basic
60	28	56	Description	hello	وصف		2025-04-18 06:26:41	2025-04-18 06:26:41	textarea	basic
61	31	62	Make	1	الوضع والنموذج		2025-04-18 07:39:51	2025-04-18 07:39:51	make	basic
62	31	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 07:39:51	2025-04-18 07:39:51	select	basic
63	31	64	Year	5	سنة		2025-04-18 07:39:51	2025-04-18 07:39:51	select	basic
64	31	65	Kilometers	50000	كيلومترات		2025-04-18 07:39:51	2025-04-18 07:39:51	numeric	basic
65	31	66	Body Type	5	نوع الجسم		2025-04-18 07:39:51	2025-04-18 07:39:51	select	basic
66	31	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 07:39:51	2025-04-18 07:39:51	select	basic
67	31	68	Price	5000	سعر		2025-04-18 07:39:51	2025-04-18 07:39:51	numeric	basic
68	31	69	Phone Number	+92 300000000	رقم التليفون		2025-04-18 07:39:51	2025-04-18 07:39:51	mobile	basic
69	31	57	Model	1	Model		2025-04-18 07:39:51	2025-04-18 07:39:51	model	basic
70	34	62	Make	1	الوضع والنموذج		2025-04-18 07:45:57	2025-04-18 07:45:57	make	basic
71	34	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 07:45:57	2025-04-18 07:45:57	select	basic
72	34	64	Year	5	سنة		2025-04-18 07:45:57	2025-04-18 07:45:57	select	basic
73	34	65	Kilometers	2500	كيلومترات		2025-04-18 07:45:57	2025-04-18 07:45:57	numeric	basic
74	34	66	Body Type	7	نوع الجسم		2025-04-18 07:45:57	2025-04-18 07:45:57	select	basic
75	34	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 07:45:57	2025-04-18 07:45:57	select	basic
76	34	68	Price	300	سعر		2025-04-18 07:45:57	2025-04-18 07:45:57	numeric	basic
77	34	57	Model	1	Model		2025-04-18 07:45:57	2025-04-18 07:45:57	model	basic
78	35	62	Make	1	الوضع والنموذج		2025-04-18 10:18:48	2025-04-18 10:18:48	make	basic
79	35	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 10:18:48	2025-04-18 10:18:48	select	basic
80	35	64	Year	5	سنة		2025-04-18 10:18:48	2025-04-18 10:18:48	select	basic
81	35	65	Kilometers	10000	كيلومترات		2025-04-18 10:18:48	2025-04-18 10:18:48	numeric	basic
82	35	66	Body Type	7	نوع الجسم		2025-04-18 10:18:48	2025-04-18 10:18:48	select	basic
83	35	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 10:18:48	2025-04-18 10:18:48	select	basic
84	35	68	Price	500	سعر		2025-04-18 10:18:48	2025-04-18 10:18:48	numeric	basic
85	35	57	Model	1	Model		2025-04-18 10:18:48	2025-04-18 10:18:48	model	basic
86	36	62	Make	1	الوضع والنموذج		2025-04-18 10:28:39	2025-04-18 10:28:39	make	basic
87	36	63	Regional Specs	4	المواصفات الإقليمية		2025-04-18 10:28:39	2025-04-18 10:28:39	select	basic
88	36	64	Year	5	سنة		2025-04-18 10:28:39	2025-04-18 10:28:39	select	basic
89	36	65	Kilometers	500	كيلومترات		2025-04-18 10:28:39	2025-04-18 10:28:39	numeric	basic
90	36	66	Body Type	8	نوع الجسم		2025-04-18 10:28:39	2025-04-18 10:28:39	select	basic
91	36	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 10:28:39	2025-04-18 10:28:39	select	basic
92	36	68	Price	500	سعر		2025-04-18 10:28:39	2025-04-18 10:28:39	numeric	basic
93	36	57	Model	1	Model		2025-04-18 10:28:39	2025-04-18 10:28:39	model	basic
94	37	62	Make	1	الوضع والنموذج		2025-04-18 10:29:39	2025-04-18 10:29:39	make	basic
95	37	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 10:29:39	2025-04-18 10:29:39	select	basic
96	37	64	Year	5	سنة		2025-04-18 10:29:39	2025-04-18 10:29:39	select	basic
97	37	65	Kilometers	500	كيلومترات		2025-04-18 10:29:39	2025-04-18 10:29:39	numeric	basic
98	37	66	Body Type	7	نوع الجسم		2025-04-18 10:29:39	2025-04-18 10:29:39	select	basic
99	37	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 10:29:39	2025-04-18 10:29:39	select	basic
100	37	68	Price	500	سعر		2025-04-18 10:29:39	2025-04-18 10:29:39	numeric	basic
101	37	57	Model	1	Model		2025-04-18 10:29:39	2025-04-18 10:29:39	model	basic
102	38	62	Make	1	الوضع والنموذج		2025-04-18 10:42:38	2025-04-18 10:42:38	make	basic
103	38	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 10:42:38	2025-04-18 10:42:38	select	basic
104	38	64	Year	5	سنة		2025-04-18 10:42:38	2025-04-18 10:42:38	select	basic
105	38	65	Kilometers	1000	كيلومترات		2025-04-18 10:42:38	2025-04-18 10:42:38	numeric	basic
106	38	66	Body Type	7	نوع الجسم		2025-04-18 10:42:38	2025-04-18 10:42:38	select	basic
107	38	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 10:42:38	2025-04-18 10:42:38	select	basic
108	38	68	Price	500	سعر		2025-04-18 10:42:38	2025-04-18 10:42:38	numeric	basic
109	38	57	Model	1	Model		2025-04-18 10:42:38	2025-04-18 10:42:38	model	basic
110	40	62	Make	4	الوضع والنموذج		2025-04-18 11:04:37	2025-04-18 11:04:37	make	basic
111	40	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 11:04:37	2025-04-18 11:04:37	select	basic
112	40	64	Year	5	سنة		2025-04-18 11:04:37	2025-04-18 11:04:37	select	basic
113	40	65	Kilometers	464646	كيلومترات		2025-04-18 11:04:37	2025-04-18 11:04:37	numeric	basic
114	40	66	Body Type	7	نوع الجسم		2025-04-18 11:04:37	2025-04-18 11:04:37	select	basic
115	40	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 11:04:37	2025-04-18 11:04:37	select	basic
116	40	68	Price	500	سعر		2025-04-18 11:04:37	2025-04-18 11:04:37	numeric	basic
117	40	57	Model	2	Model		2025-04-18 11:04:37	2025-04-18 11:04:37	model	basic
118	42	62	Make	1	الوضع والنموذج		2025-04-18 11:32:26	2025-04-18 11:32:26	make	basic
119	42	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 11:32:26	2025-04-18 11:32:26	select	basic
120	42	64	Year	5	سنة		2025-04-18 11:32:26	2025-04-18 11:32:26	select	basic
121	42	65	Kilometers	25	كيلومترات		2025-04-18 11:32:26	2025-04-18 11:32:26	numeric	basic
122	42	66	Body Type	7	نوع الجسم		2025-04-18 11:32:26	2025-04-18 11:32:26	select	basic
123	42	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 11:32:26	2025-04-18 11:32:26	select	basic
124	42	68	Price	25	سعر		2025-04-18 11:32:26	2025-04-18 11:32:26	numeric	basic
125	42	69	Phone Number	+963 3441562554	رقم التليفون		2025-04-18 11:32:26	2025-04-18 11:32:26	mobile	basic
126	42	57	Model	1	Model		2025-04-18 11:32:26	2025-04-18 11:32:26	model	basic
127	40	70	images		الصور		2025-04-18 11:33:28	2025-04-18 11:33:28	files	advance
128	40	56	Description	Hello	وصف		2025-04-18 11:33:28	2025-04-18 11:33:28	textarea	advance
129	40	50	Fuel Type	11	نوع الوقود		2025-04-18 11:33:28	2025-04-18 11:33:28	select	advance
130	40	51	Exterior Color	Black	اللون الخارجي		2025-04-18 11:33:28	2025-04-18 11:33:28	text	advance
131	40	52	Interior Color	1452	اللون الداخلي		2025-04-18 11:33:28	2025-04-18 11:33:28	select	advance
132	40	53	Warranty	1454	الضمان		2025-04-18 11:33:28	2025-04-18 11:33:28	select	advance
264	80	47	Price		Price		2025-04-19 11:06:14	2025-04-19 11:06:14	text	basic
133	40	54	Body Condition	1456	حالة الجسم		2025-04-18 11:33:28	2025-04-18 11:33:28	select	advance
134	40	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-18 11:33:28	2025-04-18 11:33:28	select	advance
135	47	62	Make	1	الوضع والنموذج		2025-04-18 20:04:22	2025-04-18 20:04:22	make	basic
136	47	63	Regional Specs	3	المواصفات الإقليمية		2025-04-18 20:04:22	2025-04-18 20:04:22	select	basic
137	47	64	Year	5	سنة		2025-04-18 20:04:22	2025-04-18 20:04:22	select	basic
138	47	65	Kilometers	5000	كيلومترات		2025-04-18 20:04:22	2025-04-18 20:04:22	numeric	basic
139	47	66	Body Type	7	نوع الجسم		2025-04-18 20:04:22	2025-04-18 20:04:22	select	basic
140	47	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-18 20:04:22	2025-04-18 20:04:22	select	basic
141	47	68	Price	5000	سعر		2025-04-18 20:04:22	2025-04-18 20:04:22	numeric	basic
142	47	57	Model	1	Model		2025-04-18 20:04:22	2025-04-18 20:04:22	model	basic
143	47	70	images		الصور		2025-04-18 20:05:33	2025-04-18 20:05:33	files	advance
144	47	56	Description	hello	وصف		2025-04-18 20:05:33	2025-04-18 20:05:33	textarea	advance
145	47	50	Fuel Type	11	نوع الوقود		2025-04-18 20:05:33	2025-04-18 20:05:33	select	advance
146	47	51	Exterior Color	Blaxk	اللون الخارجي		2025-04-18 20:05:33	2025-04-18 20:05:33	text	advance
147	47	52	Interior Color	1452	اللون الداخلي		2025-04-18 20:05:33	2025-04-18 20:05:33	select	advance
148	47	53	Warranty	1454	الضمان		2025-04-18 20:05:33	2025-04-18 20:05:33	select	advance
149	47	54	Body Condition	1456	حالة الجسم		2025-04-18 20:05:33	2025-04-18 20:05:33	select	advance
150	47	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-18 20:05:33	2025-04-18 20:05:33	select	advance
151	51	62	Make	1	الوضع والنموذج		2025-04-19 05:05:20	2025-04-19 05:05:20	make	basic
152	51	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 05:05:20	2025-04-19 05:05:20	select	basic
153	51	64	Year	5	سنة		2025-04-19 05:05:21	2025-04-19 05:05:21	select	basic
154	51	65	Kilometers	500	كيلومترات		2025-04-19 05:05:21	2025-04-19 05:05:21	numeric	basic
155	51	66	Body Type	7	نوع الجسم		2025-04-19 05:05:21	2025-04-19 05:05:21	select	basic
156	51	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 05:05:21	2025-04-19 05:05:21	select	basic
157	51	68	Price	600	سعر		2025-04-19 05:05:21	2025-04-19 05:05:21	numeric	basic
158	51	57	Model	1	Model		2025-04-19 05:05:21	2025-04-19 05:05:21	model	basic
159	51	70	images		الصور		2025-04-19 05:06:06	2025-04-19 05:06:06	files	advance
160	51	56	Description	hello	وصف		2025-04-19 05:06:06	2025-04-19 05:06:06	textarea	advance
161	51	50	Fuel Type	11	نوع الوقود		2025-04-19 05:06:06	2025-04-19 05:06:06	select	advance
162	51	51	Exterior Color	Blaxk	اللون الخارجي		2025-04-19 05:06:06	2025-04-19 05:06:06	text	advance
163	51	52	Interior Color	1452	اللون الداخلي		2025-04-19 05:06:06	2025-04-19 05:06:06	select	advance
164	51	53	Warranty	1454	الضمان		2025-04-19 05:06:06	2025-04-19 05:06:06	select	advance
165	51	54	Body Condition	1456	حالة الجسم		2025-04-19 05:06:06	2025-04-19 05:06:06	select	advance
166	51	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 05:06:06	2025-04-19 05:06:06	select	advance
167	55	62	Make	1	الوضع والنموذج		2025-04-19 05:16:16	2025-04-19 05:16:16	make	basic
168	55	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 05:16:16	2025-04-19 05:16:16	select	basic
169	55	64	Year	5	سنة		2025-04-19 05:16:16	2025-04-19 05:16:16	select	basic
170	55	65	Kilometers	6677	كيلومترات		2025-04-19 05:16:16	2025-04-19 05:16:16	numeric	basic
171	55	66	Body Type	7	نوع الجسم		2025-04-19 05:16:16	2025-04-19 05:16:16	select	basic
172	55	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 05:16:16	2025-04-19 05:16:16	select	basic
173	55	68	Price	600	سعر		2025-04-19 05:16:16	2025-04-19 05:16:16	numeric	basic
174	55	57	Model	1	Model		2025-04-19 05:16:16	2025-04-19 05:16:16	model	basic
175	55	70	images		الصور		2025-04-19 05:17:00	2025-04-19 05:17:00	files	advance
176	55	56	Description	description	وصف		2025-04-19 05:17:00	2025-04-19 05:17:00	textarea	advance
177	55	50	Fuel Type	11	نوع الوقود		2025-04-19 05:17:00	2025-04-19 05:17:00	select	advance
178	55	51	Exterior Color	Blaxk	اللون الخارجي		2025-04-19 05:17:00	2025-04-19 05:17:00	text	advance
179	55	52	Interior Color	1452	اللون الداخلي		2025-04-19 05:17:00	2025-04-19 05:17:00	select	advance
180	55	53	Warranty	1454	الضمان		2025-04-19 05:17:00	2025-04-19 05:17:00	select	advance
181	55	54	Body Condition	1456	حالة الجسم		2025-04-19 05:17:00	2025-04-19 05:17:00	select	advance
182	55	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 05:17:00	2025-04-19 05:17:00	select	advance
183	59	62	Make	1	الوضع والنموذج		2025-04-19 09:14:46	2025-04-19 09:14:46	make	basic
184	59	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 09:14:46	2025-04-19 09:14:46	select	basic
185	59	64	Year	5	سنة		2025-04-19 09:14:46	2025-04-19 09:14:46	select	basic
186	59	65	Kilometers	2500	كيلومترات		2025-04-19 09:14:46	2025-04-19 09:14:46	numeric	basic
187	59	66	Body Type	7	نوع الجسم		2025-04-19 09:14:46	2025-04-19 09:14:46	select	basic
188	59	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 09:14:46	2025-04-19 09:14:46	select	basic
189	59	68	Price	500	سعر		2025-04-19 09:14:46	2025-04-19 09:14:46	numeric	basic
190	59	57	Model	1	Model		2025-04-19 09:14:46	2025-04-19 09:14:46	model	basic
191	59	70	images		الصور		2025-04-19 09:15:22	2025-04-19 09:15:22	files	advance
192	59	56	Description	hello	وصف		2025-04-19 09:15:22	2025-04-19 09:15:22	textarea	advance
193	59	50	Fuel Type	11	نوع الوقود		2025-04-19 09:15:22	2025-04-19 09:15:22	select	advance
194	59	51	Exterior Color	Blaxk	اللون الخارجي		2025-04-19 09:15:22	2025-04-19 09:15:22	text	advance
195	59	52	Interior Color	1452	اللون الداخلي		2025-04-19 09:15:22	2025-04-19 09:15:22	select	advance
196	59	53	Warranty	1454	الضمان		2025-04-19 09:15:22	2025-04-19 09:15:22	select	advance
197	59	54	Body Condition	1456	حالة الجسم		2025-04-19 09:15:22	2025-04-19 09:15:22	select	advance
198	59	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 09:15:22	2025-04-19 09:15:22	select	advance
199	65	62	Make	1	الوضع والنموذج		2025-04-19 09:30:35	2025-04-19 09:30:35	make	basic
200	65	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 09:30:35	2025-04-19 09:30:35	select	basic
201	65	64	Year	5	سنة		2025-04-19 09:30:35	2025-04-19 09:30:35	select	basic
202	65	65	Kilometers	500	كيلومترات		2025-04-19 09:30:35	2025-04-19 09:30:35	numeric	basic
203	65	66	Body Type	7	نوع الجسم		2025-04-19 09:30:35	2025-04-19 09:30:35	select	basic
204	65	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 09:30:35	2025-04-19 09:30:35	select	basic
205	65	68	Price	500	سعر		2025-04-19 09:30:35	2025-04-19 09:30:35	numeric	basic
206	65	57	Model	1	Model		2025-04-19 09:30:35	2025-04-19 09:30:35	model	basic
207	65	70	images		الصور		2025-04-19 09:31:26	2025-04-19 09:31:26	files	advance
208	65	56	Description	hello	وصف		2025-04-19 09:31:26	2025-04-19 09:31:26	textarea	advance
209	65	50	Fuel Type	11	نوع الوقود		2025-04-19 09:31:26	2025-04-19 09:31:26	select	advance
210	65	51	Exterior Color	Black	اللون الخارجي		2025-04-19 09:31:26	2025-04-19 09:31:26	text	advance
211	65	52	Interior Color	1452	اللون الداخلي		2025-04-19 09:31:26	2025-04-19 09:31:26	select	advance
212	65	53	Warranty	1454	الضمان		2025-04-19 09:31:26	2025-04-19 09:31:26	select	advance
213	65	54	Body Condition	1456	حالة الجسم		2025-04-19 09:31:26	2025-04-19 09:31:26	select	advance
214	65	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 09:31:26	2025-04-19 09:31:26	select	advance
215	66	62	Make	4	الوضع والنموذج		2025-04-19 09:41:40	2025-04-19 09:41:40	make	basic
216	66	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 09:41:40	2025-04-19 09:41:40	select	basic
217	66	64	Year	5	سنة		2025-04-19 09:41:40	2025-04-19 09:41:40	select	basic
218	66	65	Kilometers	20000	كيلومترات		2025-04-19 09:41:40	2025-04-19 09:41:40	numeric	basic
219	66	66	Body Type	7	نوع الجسم		2025-04-19 09:41:40	2025-04-19 09:41:40	select	basic
220	66	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 09:41:40	2025-04-19 09:41:40	select	basic
221	66	68	Price	20000	سعر		2025-04-19 09:41:40	2025-04-19 09:41:40	numeric	basic
222	66	69	Phone Number	+963 453464049	رقم التليفون		2025-04-19 09:41:40	2025-04-19 09:41:40	mobile	basic
223	66	57	Model	2	Model		2025-04-19 09:41:40	2025-04-19 09:41:40	model	basic
224	68	62	Make	1	الوضع والنموذج		2025-04-19 09:43:05	2025-04-19 09:43:05	make	basic
225	68	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 09:43:05	2025-04-19 09:43:05	select	basic
226	68	64	Year	5	سنة		2025-04-19 09:43:05	2025-04-19 09:43:05	select	basic
227	68	65	Kilometers	500	كيلومترات		2025-04-19 09:43:05	2025-04-19 09:43:05	numeric	basic
228	68	66	Body Type	7	نوع الجسم		2025-04-19 09:43:05	2025-04-19 09:43:05	select	basic
229	68	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 09:43:05	2025-04-19 09:43:05	select	basic
230	68	68	Price	800	سعر		2025-04-19 09:43:05	2025-04-19 09:43:05	numeric	basic
231	68	57	Model	1	Model		2025-04-19 09:43:05	2025-04-19 09:43:05	model	basic
232	68	70	images		الصور		2025-04-19 09:43:46	2025-04-19 09:43:46	files	advance
233	68	56	Description	hello	وصف		2025-04-19 09:43:46	2025-04-19 09:43:46	textarea	advance
234	68	50	Fuel Type	11	نوع الوقود		2025-04-19 09:43:46	2025-04-19 09:43:46	select	advance
235	68	51	Exterior Color	Blaxk	اللون الخارجي		2025-04-19 09:43:46	2025-04-19 09:43:46	text	advance
236	68	52	Interior Color	1452	اللون الداخلي		2025-04-19 09:43:46	2025-04-19 09:43:46	select	advance
237	68	53	Warranty	1454	الضمان		2025-04-19 09:43:46	2025-04-19 09:43:46	select	advance
238	68	54	Body Condition	1456	حالة الجسم		2025-04-19 09:43:46	2025-04-19 09:43:46	select	advance
239	68	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 09:43:46	2025-04-19 09:43:46	select	advance
240	70	62	Make	1	الوضع والنموذج		2025-04-19 09:56:36	2025-04-19 09:56:36	make	basic
241	70	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 09:56:36	2025-04-19 09:56:36	select	basic
242	70	64	Year	5	سنة		2025-04-19 09:56:36	2025-04-19 09:56:36	select	basic
243	70	65	Kilometers	6000	كيلومترات		2025-04-19 09:56:36	2025-04-19 09:56:36	numeric	basic
244	70	66	Body Type	7	نوع الجسم		2025-04-19 09:56:36	2025-04-19 09:56:36	select	basic
245	70	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 09:56:36	2025-04-19 09:56:36	select	basic
246	70	68	Price	900	سعر		2025-04-19 09:56:36	2025-04-19 09:56:36	numeric	basic
247	70	57	Model	1	Model		2025-04-19 09:56:36	2025-04-19 09:56:36	model	basic
248	70	70	images		الصور		2025-04-19 09:57:15	2025-04-19 09:57:15	files	advance
249	70	56	Description	hello	وصف		2025-04-19 09:57:15	2025-04-19 09:57:15	textarea	advance
250	70	50	Fuel Type	11	نوع الوقود		2025-04-19 09:57:15	2025-04-19 09:57:15	select	advance
251	70	51	Exterior Color	Blaxk	اللون الخارجي		2025-04-19 09:57:15	2025-04-19 09:57:15	text	advance
252	70	52	Interior Color	1452	اللون الداخلي		2025-04-19 09:57:15	2025-04-19 09:57:15	select	advance
253	70	53	Warranty	1454	الضمان		2025-04-19 09:57:15	2025-04-19 09:57:15	select	advance
254	70	54	Body Condition	1456	حالة الجسم		2025-04-19 09:57:15	2025-04-19 09:57:15	select	advance
255	70	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 09:57:15	2025-04-19 09:57:15	select	advance
256	80	39	Location		Location		2025-04-19 11:06:14	2025-04-19 11:06:14	text	basic
257	80	40	Property Type		Property Type		2025-04-19 11:06:14	2025-04-19 11:06:14	select	basic
258	80	41	Housing Category		Housing Category		2025-04-19 11:06:14	2025-04-19 11:06:14	select	basic
259	80	42	Is it furnished?		?Is it furnished		2025-04-19 11:06:14	2025-04-19 11:06:14	select	basic
260	80	43	Facilities		Facilities		2025-04-19 11:06:14	2025-04-19 11:06:14	select	basic
261	80	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 11:06:14	2025-04-19 11:06:14	text	basic
262	80	45	Listed By		Listed By		2025-04-19 11:06:14	2025-04-19 11:06:14	select	basic
263	80	46	Rent is Paid		Rent is Paid		2025-04-19 11:06:14	2025-04-19 11:06:14	select	basic
265	80	48	Phone Number		Phone Number		2025-04-19 11:06:14	2025-04-19 11:06:14	text	basic
266	81	39	Location		Location		2025-04-19 13:05:13	2025-04-19 13:05:13	text	basic
267	81	40	Property Type		Property Type		2025-04-19 13:05:13	2025-04-19 13:05:13	select	basic
268	81	41	Housing Category		Housing Category		2025-04-19 13:05:13	2025-04-19 13:05:13	select	basic
269	81	42	Is it furnished?		?Is it furnished		2025-04-19 13:05:13	2025-04-19 13:05:13	select	basic
270	81	43	Facilities		Facilities		2025-04-19 13:05:13	2025-04-19 13:05:13	select	basic
271	81	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 13:05:13	2025-04-19 13:05:13	text	basic
272	81	45	Listed By		Listed By		2025-04-19 13:05:13	2025-04-19 13:05:13	select	basic
273	81	46	Rent is Paid		Rent is Paid		2025-04-19 13:05:13	2025-04-19 13:05:13	select	basic
274	81	47	Price		Price		2025-04-19 13:05:13	2025-04-19 13:05:13	text	basic
275	81	48	Phone Number		Phone Number		2025-04-19 13:05:13	2025-04-19 13:05:13	text	basic
276	82	62	Make	1	الوضع والنموذج		2025-04-19 13:06:02	2025-04-19 13:06:02	make	basic
277	82	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 13:06:02	2025-04-19 13:06:02	select	basic
278	82	64	Year	5	سنة		2025-04-19 13:06:02	2025-04-19 13:06:02	select	basic
279	82	65	Kilometers	25	كيلومترات		2025-04-19 13:06:02	2025-04-19 13:06:02	numeric	basic
280	82	66	Body Type	7	نوع الجسم		2025-04-19 13:06:02	2025-04-19 13:06:02	select	basic
281	82	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 13:06:02	2025-04-19 13:06:02	select	basic
282	82	68	Price	25	سعر		2025-04-19 13:06:02	2025-04-19 13:06:02	numeric	basic
283	82	57	Model	1	Model		2025-04-19 13:06:02	2025-04-19 13:06:02	model	basic
284	82	70	images		الصور		2025-04-19 13:06:30	2025-04-19 13:06:30	files	advance
285	82	56	Description	nxnx	وصف		2025-04-19 13:06:30	2025-04-19 13:06:30	textarea	advance
286	82	50	Fuel Type	11	نوع الوقود		2025-04-19 13:06:30	2025-04-19 13:06:30	select	advance
287	82	51	Exterior Color	Bxnx	اللون الخارجي		2025-04-19 13:06:30	2025-04-19 13:06:30	text	advance
288	82	52	Interior Color	1452	اللون الداخلي		2025-04-19 13:06:30	2025-04-19 13:06:30	select	advance
289	82	53	Warranty	1454	الضمان		2025-04-19 13:06:30	2025-04-19 13:06:30	select	advance
290	82	54	Body Condition	1456	حالة الجسم		2025-04-19 13:06:30	2025-04-19 13:06:30	select	advance
291	82	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 13:06:30	2025-04-19 13:06:30	select	advance
292	85	39	Location		Location		2025-04-19 13:17:30	2025-04-19 13:17:30	text	basic
293	85	40	Property Type		Property Type		2025-04-19 13:17:30	2025-04-19 13:17:30	select	basic
294	85	41	Housing Category		Housing Category		2025-04-19 13:17:30	2025-04-19 13:17:30	select	basic
295	85	42	Is it furnished?		?Is it furnished		2025-04-19 13:17:30	2025-04-19 13:17:30	select	basic
296	85	43	Facilities		Facilities		2025-04-19 13:17:30	2025-04-19 13:17:30	select	basic
297	85	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 13:17:30	2025-04-19 13:17:30	text	basic
298	85	45	Listed By		Listed By		2025-04-19 13:17:30	2025-04-19 13:17:30	select	basic
299	85	46	Rent is Paid		Rent is Paid		2025-04-19 13:17:30	2025-04-19 13:17:30	select	basic
300	85	47	Price		Price		2025-04-19 13:17:30	2025-04-19 13:17:30	text	basic
301	85	48	Phone Number		Phone Number		2025-04-19 13:17:30	2025-04-19 13:17:30	text	basic
302	85	49	Images		Images		2025-04-19 13:17:30	2025-04-19 13:17:30	file	basic
303	86	62	Make	1	الوضع والنموذج		2025-04-19 13:19:12	2025-04-19 13:19:12	make	basic
304	86	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 13:19:12	2025-04-19 13:19:12	select	basic
305	86	64	Year	5	سنة		2025-04-19 13:19:12	2025-04-19 13:19:12	select	basic
306	86	65	Kilometers	25	كيلومترات		2025-04-19 13:19:12	2025-04-19 13:19:12	numeric	basic
307	86	66	Body Type	7	نوع الجسم		2025-04-19 13:19:12	2025-04-19 13:19:12	select	basic
308	86	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 13:19:12	2025-04-19 13:19:12	select	basic
309	86	68	Price	52	سعر		2025-04-19 13:19:12	2025-04-19 13:19:12	numeric	basic
310	86	57	Model	1	Model		2025-04-19 13:19:12	2025-04-19 13:19:12	model	basic
311	86	70	images		الصور		2025-04-19 13:19:46	2025-04-19 13:19:46	files	advance
312	86	56	Description	hello	وصف		2025-04-19 13:19:46	2025-04-19 13:19:46	textarea	advance
313	86	50	Fuel Type	11	نوع الوقود		2025-04-19 13:19:46	2025-04-19 13:19:46	select	advance
314	86	51	Exterior Color	Black	اللون الخارجي		2025-04-19 13:19:46	2025-04-19 13:19:46	text	advance
315	86	52	Interior Color	1452	اللون الداخلي		2025-04-19 13:19:46	2025-04-19 13:19:46	select	advance
316	86	53	Warranty	1454	الضمان		2025-04-19 13:19:46	2025-04-19 13:19:46	select	advance
317	86	54	Body Condition	1456	حالة الجسم		2025-04-19 13:19:46	2025-04-19 13:19:46	select	advance
318	86	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 13:19:46	2025-04-19 13:19:46	select	advance
319	87	62	Make	1	الوضع والنموذج		2025-04-19 13:23:56	2025-04-19 13:23:56	make	basic
320	87	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 13:23:56	2025-04-19 13:23:56	select	basic
321	87	64	Year	5	سنة		2025-04-19 13:23:56	2025-04-19 13:23:56	select	basic
322	87	65	Kilometers	255	كيلومترات		2025-04-19 13:23:56	2025-04-19 13:23:56	numeric	basic
323	87	66	Body Type	7	نوع الجسم		2025-04-19 13:23:56	2025-04-19 13:23:56	select	basic
324	87	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 13:23:56	2025-04-19 13:23:56	select	basic
325	87	68	Price	25	سعر		2025-04-19 13:23:56	2025-04-19 13:23:56	numeric	basic
326	87	57	Model	65	Model		2025-04-19 13:23:56	2025-04-19 13:23:56	model	basic
327	87	70	images		الصور		2025-04-19 13:24:28	2025-04-19 13:24:28	files	advance
328	87	56	Description	desc	وصف		2025-04-19 13:24:28	2025-04-19 13:24:28	textarea	advance
329	87	50	Fuel Type	11	نوع الوقود		2025-04-19 13:24:28	2025-04-19 13:24:28	select	advance
330	87	51	Exterior Color	Ggg	اللون الخارجي		2025-04-19 13:24:28	2025-04-19 13:24:28	text	advance
331	87	52	Interior Color	1452	اللون الداخلي		2025-04-19 13:24:28	2025-04-19 13:24:28	select	advance
332	87	53	Warranty	1454	الضمان		2025-04-19 13:24:28	2025-04-19 13:24:28	select	advance
333	87	54	Body Condition	1456	حالة الجسم		2025-04-19 13:24:28	2025-04-19 13:24:28	select	advance
334	87	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 13:24:28	2025-04-19 13:24:28	select	advance
335	88	62	Make	1	الوضع والنموذج		2025-04-19 13:43:56	2025-04-19 13:43:56	make	basic
336	88	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 13:43:56	2025-04-19 13:43:56	select	basic
337	88	64	Year	5	سنة		2025-04-19 13:43:56	2025-04-19 13:43:56	select	basic
338	88	65	Kilometers	2500	كيلومترات		2025-04-19 13:43:56	2025-04-19 13:43:56	numeric	basic
339	88	66	Body Type	7	نوع الجسم		2025-04-19 13:43:56	2025-04-19 13:43:56	select	basic
340	88	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 13:43:56	2025-04-19 13:43:56	select	basic
341	88	68	Price	3600	سعر		2025-04-19 13:43:56	2025-04-19 13:43:56	numeric	basic
342	88	57	Model	1	Model		2025-04-19 13:43:56	2025-04-19 13:43:56	model	basic
343	88	70	images		الصور		2025-04-19 13:44:42	2025-04-19 13:44:42	files	advance
344	88	56	Description	hdjs	وصف		2025-04-19 13:44:42	2025-04-19 13:44:42	textarea	advance
345	88	50	Fuel Type	11	نوع الوقود		2025-04-19 13:44:42	2025-04-19 13:44:42	select	advance
346	88	51	Exterior Color	Black	اللون الخارجي		2025-04-19 13:44:42	2025-04-19 13:44:42	text	advance
347	88	52	Interior Color	1452	اللون الداخلي		2025-04-19 13:44:42	2025-04-19 13:44:42	select	advance
348	88	53	Warranty	1454	الضمان		2025-04-19 13:44:42	2025-04-19 13:44:42	select	advance
349	88	54	Body Condition	1456	حالة الجسم		2025-04-19 13:44:42	2025-04-19 13:44:42	select	advance
350	88	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 13:44:42	2025-04-19 13:44:42	select	advance
351	89	62	Make	1	الوضع والنموذج		2025-04-19 16:44:11	2025-04-19 16:44:11	make	basic
352	89	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 16:44:11	2025-04-19 16:44:11	select	basic
353	89	64	Year	5	سنة		2025-04-19 16:44:11	2025-04-19 16:44:11	select	basic
354	89	65	Kilometers	52	كيلومترات		2025-04-19 16:44:11	2025-04-19 16:44:11	numeric	basic
355	89	66	Body Type	7	نوع الجسم		2025-04-19 16:44:11	2025-04-19 16:44:11	select	basic
356	89	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 16:44:11	2025-04-19 16:44:11	select	basic
357	89	68	Price	556	سعر		2025-04-19 16:44:11	2025-04-19 16:44:11	numeric	basic
358	89	57	Model	1	Model		2025-04-19 16:44:11	2025-04-19 16:44:11	model	basic
359	89	70	images		الصور		2025-04-19 16:48:06	2025-04-19 16:48:06	files	advance
360	89	56	Description	heel	وصف		2025-04-19 16:48:06	2025-04-19 16:48:06	textarea	advance
361	89	50	Fuel Type	11	نوع الوقود		2025-04-19 16:48:06	2025-04-19 16:48:06	select	advance
362	89	51	Exterior Color	Blaxk	اللون الخارجي		2025-04-19 16:48:06	2025-04-19 16:48:06	text	advance
363	89	52	Interior Color	1452	اللون الداخلي		2025-04-19 16:48:06	2025-04-19 16:48:06	select	advance
364	89	53	Warranty	1454	الضمان		2025-04-19 16:48:06	2025-04-19 16:48:06	select	advance
365	89	54	Body Condition	1456	حالة الجسم		2025-04-19 16:48:06	2025-04-19 16:48:06	select	advance
366	89	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 16:48:06	2025-04-19 16:48:06	select	advance
367	90	62	Make	1	الوضع والنموذج		2025-04-19 16:56:51	2025-04-19 16:56:51	make	basic
368	90	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 16:56:51	2025-04-19 16:56:51	select	basic
369	90	64	Year	5	سنة		2025-04-19 16:56:51	2025-04-19 16:56:51	select	basic
370	90	65	Kilometers	6000	كيلومترات		2025-04-19 16:56:52	2025-04-19 16:56:52	numeric	basic
371	90	66	Body Type	7	نوع الجسم		2025-04-19 16:56:52	2025-04-19 16:56:52	select	basic
372	90	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 16:56:52	2025-04-19 16:56:52	select	basic
373	90	68	Price	69696	سعر		2025-04-19 16:56:52	2025-04-19 16:56:52	numeric	basic
374	90	57	Model	1	Model		2025-04-19 16:56:52	2025-04-19 16:56:52	model	basic
375	90	70	images		الصور		2025-04-19 16:57:40	2025-04-19 16:57:40	files	advance
376	90	56	Description	hellp this is description	وصف		2025-04-19 16:57:40	2025-04-19 16:57:40	textarea	advance
377	90	50	Fuel Type	11	نوع الوقود		2025-04-19 16:57:40	2025-04-19 16:57:40	select	advance
378	90	51	Exterior Color	Black	اللون الخارجي		2025-04-19 16:57:40	2025-04-19 16:57:40	text	advance
379	90	52	Interior Color	1452	اللون الداخلي		2025-04-19 16:57:40	2025-04-19 16:57:40	select	advance
380	90	53	Warranty	1455	الضمان		2025-04-19 16:57:40	2025-04-19 16:57:40	select	advance
381	90	54	Body Condition	1456	حالة الجسم		2025-04-19 16:57:40	2025-04-19 16:57:40	select	advance
382	90	55	Mechanical Condition	1459	الحالة الميكانيكية		2025-04-19 16:57:40	2025-04-19 16:57:40	select	advance
383	93	62	Make	1	الوضع والنموذج		2025-04-19 17:03:27	2025-04-19 17:03:27	make	basic
384	93	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 17:03:27	2025-04-19 17:03:27	select	basic
385	93	64	Year	5	سنة		2025-04-19 17:03:27	2025-04-19 17:03:27	select	basic
386	93	65	Kilometers	6000	كيلومترات		2025-04-19 17:03:27	2025-04-19 17:03:27	numeric	basic
387	93	66	Body Type	7	نوع الجسم		2025-04-19 17:03:27	2025-04-19 17:03:27	select	basic
388	93	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 17:03:27	2025-04-19 17:03:27	select	basic
389	93	68	Price	300	سعر		2025-04-19 17:03:27	2025-04-19 17:03:27	numeric	basic
390	93	57	Model	1	Model		2025-04-19 17:03:27	2025-04-19 17:03:27	model	basic
391	93	70	images		الصور		2025-04-19 17:05:39	2025-04-19 17:05:39	files	advance
392	93	56	Description	hamud	وصف		2025-04-19 17:05:39	2025-04-19 17:05:39	textarea	advance
393	93	50	Fuel Type	11	نوع الوقود		2025-04-19 17:05:39	2025-04-19 17:05:39	select	advance
394	93	51	Exterior Color	White	اللون الخارجي		2025-04-19 17:05:39	2025-04-19 17:05:39	text	advance
395	93	52	Interior Color	1452	اللون الداخلي		2025-04-19 17:05:39	2025-04-19 17:05:39	select	advance
396	93	53	Warranty	1454	الضمان		2025-04-19 17:05:39	2025-04-19 17:05:39	select	advance
397	93	54	Body Condition	1456	حالة الجسم		2025-04-19 17:05:39	2025-04-19 17:05:39	select	advance
398	93	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 17:05:39	2025-04-19 17:05:39	select	advance
399	94	39	Location		Location		2025-04-19 17:16:29	2025-04-19 17:16:29	text	basic
400	94	40	Property Type		Property Type		2025-04-19 17:16:29	2025-04-19 17:16:29	select	basic
401	94	41	Housing Category		Housing Category		2025-04-19 17:16:29	2025-04-19 17:16:29	select	basic
402	94	42	Is it furnished?		?Is it furnished		2025-04-19 17:16:29	2025-04-19 17:16:29	select	basic
403	94	43	Facilities		Facilities		2025-04-19 17:16:29	2025-04-19 17:16:29	select	basic
404	94	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 17:16:29	2025-04-19 17:16:29	text	basic
405	94	45	Listed By		Listed By		2025-04-19 17:16:29	2025-04-19 17:16:29	select	basic
406	94	46	Rent is Paid		Rent is Paid		2025-04-19 17:16:29	2025-04-19 17:16:29	select	basic
407	94	47	Price		Price		2025-04-19 17:16:29	2025-04-19 17:16:29	text	basic
408	94	48	Phone Number		Phone Number		2025-04-19 17:16:29	2025-04-19 17:16:29	text	basic
409	95	39	Location		Location		2025-04-19 17:17:33	2025-04-19 17:17:33	text	basic
410	95	40	Property Type		Property Type		2025-04-19 17:17:33	2025-04-19 17:17:33	select	basic
411	95	41	Housing Category		Housing Category		2025-04-19 17:17:33	2025-04-19 17:17:33	select	basic
412	95	42	Is it furnished?		?Is it furnished		2025-04-19 17:17:33	2025-04-19 17:17:33	select	basic
413	95	43	Facilities		Facilities		2025-04-19 17:17:33	2025-04-19 17:17:33	select	basic
414	95	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 17:17:33	2025-04-19 17:17:33	text	basic
415	95	45	Listed By		Listed By		2025-04-19 17:17:33	2025-04-19 17:17:33	select	basic
416	95	46	Rent is Paid		Rent is Paid		2025-04-19 17:17:33	2025-04-19 17:17:33	select	basic
417	95	47	Price		Price		2025-04-19 17:17:33	2025-04-19 17:17:33	text	basic
418	95	48	Phone Number		Phone Number		2025-04-19 17:17:33	2025-04-19 17:17:33	text	basic
419	98	58	Ad Title	Hello	عنوان الإعلان		2025-04-19 17:26:59	2025-04-19 17:26:59	text	basic
420	99	58	Ad Title	Raza	عنوان الإعلان		2025-04-19 17:28:08	2025-04-19 17:28:08	text	basic
421	121	62	Make	1	الوضع والنموذج		2025-04-19 17:43:45	2025-04-19 17:43:45	make	basic
422	121	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 17:43:45	2025-04-19 17:43:45	select	basic
423	121	64	Year	5	سنة		2025-04-19 17:43:45	2025-04-19 17:43:45	select	basic
424	121	65	Kilometers	68580000	كيلومترات		2025-04-19 17:43:45	2025-04-19 17:43:45	numeric	basic
425	121	66	Body Type	7	نوع الجسم		2025-04-19 17:43:45	2025-04-19 17:43:45	select	basic
426	121	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 17:43:45	2025-04-19 17:43:45	select	basic
427	121	68	Price	5896	سعر		2025-04-19 17:43:45	2025-04-19 17:43:45	numeric	basic
428	121	69	Phone Number	+92 3441562554	رقم التليفون		2025-04-19 17:43:45	2025-04-19 17:43:45	mobile	basic
429	121	57	Model	71	Model		2025-04-19 17:43:45	2025-04-19 17:43:45	model	basic
430	121	70	images		الصور		2025-04-19 17:44:51	2025-04-19 17:44:51	files	advance
431	121	56	Description	hello this is description	وصف		2025-04-19 17:44:51	2025-04-19 17:44:51	textarea	advance
432	121	50	Fuel Type	11	نوع الوقود		2025-04-19 17:44:51	2025-04-19 17:44:51	select	advance
433	121	51	Exterior Color	This is black	اللون الخارجي		2025-04-19 17:44:51	2025-04-19 17:44:51	text	advance
434	121	52	Interior Color	1452	اللون الداخلي		2025-04-19 17:44:51	2025-04-19 17:44:51	select	advance
435	121	53	Warranty	1454	الضمان		2025-04-19 17:44:51	2025-04-19 17:44:51	select	advance
436	121	54	Body Condition	1456	حالة الجسم		2025-04-19 17:44:51	2025-04-19 17:44:51	select	advance
437	121	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-19 17:44:51	2025-04-19 17:44:51	select	advance
438	122	62	Make	1	الوضع والنموذج		2025-04-19 18:08:23	2025-04-19 18:08:23	make	basic
439	122	63	Regional Specs	3	المواصفات الإقليمية		2025-04-19 18:08:23	2025-04-19 18:08:23	select	basic
440	122	64	Year	5	سنة		2025-04-19 18:08:23	2025-04-19 18:08:23	select	basic
441	122	65	Kilometers	6900	كيلومترات		2025-04-19 18:08:23	2025-04-19 18:08:23	numeric	basic
442	122	66	Body Type	7	نوع الجسم		2025-04-19 18:08:23	2025-04-19 18:08:23	select	basic
443	122	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-19 18:08:23	2025-04-19 18:08:23	select	basic
444	122	68	Price	69900	سعر		2025-04-19 18:08:23	2025-04-19 18:08:23	numeric	basic
445	122	57	Model	1	Model		2025-04-19 18:08:23	2025-04-19 18:08:23	model	basic
446	122	70	images		الصور		2025-04-19 18:08:57	2025-04-19 18:08:57	files	advance
447	122	56	Description	lsksks	وصف		2025-04-19 18:08:57	2025-04-19 18:08:57	textarea	advance
448	122	50	Fuel Type	11	نوع الوقود		2025-04-19 18:08:57	2025-04-19 18:08:57	select	advance
449	122	51	Exterior Color	Black	اللون الخارجي		2025-04-19 18:08:57	2025-04-19 18:08:57	text	advance
450	122	52	Interior Color	1452	اللون الداخلي		2025-04-19 18:08:57	2025-04-19 18:08:57	select	advance
451	122	53	Warranty	1454	الضمان		2025-04-19 18:08:57	2025-04-19 18:08:57	select	advance
452	122	54	Body Condition	1456	حالة الجسم		2025-04-19 18:08:57	2025-04-19 18:08:57	select	advance
453	122	55	Mechanical Condition	1459	الحالة الميكانيكية		2025-04-19 18:08:57	2025-04-19 18:08:57	select	advance
454	125	39	Location		Location		2025-04-19 18:24:39	2025-04-19 18:24:39	text	basic
455	125	40	Property Type		Property Type		2025-04-19 18:24:39	2025-04-19 18:24:39	select	basic
456	125	41	Housing Category		Housing Category		2025-04-19 18:24:39	2025-04-19 18:24:39	select	basic
457	125	42	Is it furnished?		?Is it furnished		2025-04-19 18:24:39	2025-04-19 18:24:39	select	basic
458	125	43	Facilities		Facilities		2025-04-19 18:24:39	2025-04-19 18:24:39	select	basic
459	125	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 18:24:39	2025-04-19 18:24:39	text	basic
460	125	45	Listed By		Listed By		2025-04-19 18:24:39	2025-04-19 18:24:39	select	basic
461	125	46	Rent is Paid		Rent is Paid		2025-04-19 18:24:39	2025-04-19 18:24:39	select	basic
462	125	47	Price		Price		2025-04-19 18:24:39	2025-04-19 18:24:39	text	basic
463	125	48	Phone Number		Phone Number		2025-04-19 18:24:39	2025-04-19 18:24:39	text	basic
464	128	39	Location		Location		2025-04-19 18:38:41	2025-04-19 18:38:41	text	basic
465	128	40	Property Type		Property Type		2025-04-19 18:38:41	2025-04-19 18:38:41	select	basic
466	128	41	Housing Category		Housing Category		2025-04-19 18:38:41	2025-04-19 18:38:41	select	basic
467	128	42	Is it furnished?		?Is it furnished		2025-04-19 18:38:41	2025-04-19 18:38:41	select	basic
468	128	43	Facilities		Facilities		2025-04-19 18:38:41	2025-04-19 18:38:41	select	basic
469	128	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 18:38:41	2025-04-19 18:38:41	text	basic
470	128	45	Listed By		Listed By		2025-04-19 18:38:41	2025-04-19 18:38:41	select	basic
471	128	46	Rent is Paid		Rent is Paid		2025-04-19 18:38:41	2025-04-19 18:38:41	select	basic
472	128	47	Price		Price		2025-04-19 18:38:41	2025-04-19 18:38:41	text	basic
473	128	48	Phone Number		Phone Number		2025-04-19 18:38:41	2025-04-19 18:38:41	text	basic
474	129	39	Location		Location		2025-04-19 18:41:20	2025-04-19 18:41:20	text	basic
475	129	40	Property Type		Property Type		2025-04-19 18:41:20	2025-04-19 18:41:20	select	basic
476	129	41	Housing Category		Housing Category		2025-04-19 18:41:20	2025-04-19 18:41:20	select	basic
477	129	42	Is it furnished?		?Is it furnished		2025-04-19 18:41:20	2025-04-19 18:41:20	select	basic
478	129	43	Facilities		Facilities		2025-04-19 18:41:20	2025-04-19 18:41:20	select	basic
479	129	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 18:41:20	2025-04-19 18:41:20	text	basic
480	129	45	Listed By		Listed By		2025-04-19 18:41:20	2025-04-19 18:41:20	select	basic
481	129	46	Rent is Paid		Rent is Paid		2025-04-19 18:41:20	2025-04-19 18:41:20	select	basic
482	129	47	Price		Price		2025-04-19 18:41:20	2025-04-19 18:41:20	text	basic
483	129	48	Phone Number		Phone Number		2025-04-19 18:41:20	2025-04-19 18:41:20	text	basic
484	130	39	Location		Location		2025-04-19 18:44:30	2025-04-19 18:44:30	text	basic
485	130	40	Property Type		Property Type		2025-04-19 18:44:30	2025-04-19 18:44:30	select	basic
486	130	41	Housing Category		Housing Category		2025-04-19 18:44:30	2025-04-19 18:44:30	select	basic
487	130	42	Is it furnished?		?Is it furnished		2025-04-19 18:44:30	2025-04-19 18:44:30	select	basic
488	130	43	Facilities		Facilities		2025-04-19 18:44:30	2025-04-19 18:44:30	select	basic
489	130	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 18:44:30	2025-04-19 18:44:30	text	basic
490	130	45	Listed By		Listed By		2025-04-19 18:44:30	2025-04-19 18:44:30	select	basic
491	130	46	Rent is Paid		Rent is Paid		2025-04-19 18:44:30	2025-04-19 18:44:30	select	basic
492	130	47	Price		Price		2025-04-19 18:44:30	2025-04-19 18:44:30	text	basic
493	130	48	Phone Number		Phone Number		2025-04-19 18:44:30	2025-04-19 18:44:30	text	basic
494	131	39	Location		Location		2025-04-19 18:46:20	2025-04-19 18:46:20	text	basic
495	131	40	Property Type		Property Type		2025-04-19 18:46:20	2025-04-19 18:46:20	select	basic
496	131	41	Housing Category		Housing Category		2025-04-19 18:46:20	2025-04-19 18:46:20	select	basic
497	131	42	Is it furnished?		?Is it furnished		2025-04-19 18:46:20	2025-04-19 18:46:20	select	basic
498	131	43	Facilities		Facilities		2025-04-19 18:46:20	2025-04-19 18:46:20	select	basic
499	131	44	Area/Size in sqft		Area/Size in sqft		2025-04-19 18:46:20	2025-04-19 18:46:20	text	basic
500	131	45	Listed By		Listed By		2025-04-19 18:46:20	2025-04-19 18:46:20	select	basic
501	131	46	Rent is Paid		Rent is Paid		2025-04-19 18:46:20	2025-04-19 18:46:20	select	basic
502	131	47	Price		Price		2025-04-19 18:46:20	2025-04-19 18:46:20	text	basic
503	131	48	Phone Number		Phone Number		2025-04-19 18:46:20	2025-04-19 18:46:20	text	basic
504	132	58	Ad Title	Hamid	عنوان الإعلان		2025-04-19 18:50:15	2025-04-19 18:50:15	text	basic
505	132	59	Select Category	1465	حدد الفئة		2025-04-19 18:50:15	2025-04-19 18:50:15	select	basic
506	132	60	Select Property Type	1464	اختر نوع العقار		2025-04-19 18:50:15	2025-04-19 18:50:15	select	basic
507	134	58	Ad Title	Shsj	عنوان الإعلان		2025-04-19 18:56:18	2025-04-19 18:56:18	text	basic
508	134	59	Select Category	1465	حدد الفئة		2025-04-19 18:56:18	2025-04-19 18:56:18	select	basic
509	134	60	Select Property Type	1464	اختر نوع العقار		2025-04-19 18:56:18	2025-04-19 18:56:18	select	basic
510	135	58	Ad Title	Bdbnd	عنوان الإعلان		2025-04-20 17:00:05	2025-04-20 17:00:05	text	basic
511	135	59	Select Category	1465	حدد الفئة		2025-04-20 17:00:05	2025-04-20 17:00:05	select	basic
512	135	60	Select Property Type	1464	اختر نوع العقار		2025-04-20 17:00:05	2025-04-20 17:00:05	select	basic
513	136	70	images		الصور		2025-04-21 09:06:20	2025-04-21 09:06:20	files	advance
514	136	56	Description	Hello	وصف		2025-04-21 09:06:20	2025-04-21 09:06:20	textarea	advance
515	136	50	Fuel Type	11	نوع الوقود		2025-04-21 09:06:20	2025-04-21 09:06:20	select	advance
516	136	51	Exterior Color	Black	اللون الخارجي		2025-04-21 09:06:20	2025-04-21 09:06:20	text	advance
517	136	52	Interior Color	1452	اللون الداخلي		2025-04-21 09:06:20	2025-04-21 09:06:20	select	advance
518	136	53	Warranty	1454	الضمان		2025-04-21 09:06:20	2025-04-21 09:06:20	select	advance
519	136	54	Body Condition	1456	حالة الجسم		2025-04-21 09:06:20	2025-04-21 09:06:20	select	advance
520	136	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-21 09:06:20	2025-04-21 09:06:20	select	advance
521	142	62	Make	1	الوضع والنموذج		2025-04-21 09:25:57	2025-04-21 09:25:57	make	basic
522	142	63	Regional Specs	3	المواصفات الإقليمية		2025-04-21 09:25:57	2025-04-21 09:25:57	select	basic
523	142	64	Year	6	سنة		2025-04-21 09:25:57	2025-04-21 09:25:57	select	basic
524	142	65	Kilometers	600	كيلومترات		2025-04-21 09:25:57	2025-04-21 09:25:57	numeric	basic
525	142	66	Body Type	7	نوع الجسم		2025-04-21 09:25:57	2025-04-21 09:25:57	select	basic
526	142	67	Is your car insured in Syria	10	هل سيارتك مؤمنة في سوريا؟		2025-04-21 09:25:57	2025-04-21 09:25:57	select	basic
527	142	68	Price	68548	سعر		2025-04-21 09:25:57	2025-04-21 09:25:57	numeric	basic
528	142	57	Model	1	Model		2025-04-21 09:25:57	2025-04-21 09:25:57	model	basic
529	142	70	images		الصور		2025-04-21 09:26:34	2025-04-21 09:26:34	files	advance
530	142	56	Description	hi	وصف		2025-04-21 09:26:34	2025-04-21 09:26:34	textarea	advance
531	142	50	Fuel Type	11	نوع الوقود		2025-04-21 09:26:34	2025-04-21 09:26:34	select	advance
532	142	51	Exterior Color	Blqck	اللون الخارجي		2025-04-21 09:26:34	2025-04-21 09:26:34	text	advance
533	142	52	Interior Color	1452	اللون الداخلي		2025-04-21 09:26:34	2025-04-21 09:26:34	select	advance
534	142	53	Warranty	1454	الضمان		2025-04-21 09:26:34	2025-04-21 09:26:34	select	advance
535	142	54	Body Condition	1456	حالة الجسم		2025-04-21 09:26:34	2025-04-21 09:26:34	select	advance
536	142	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-21 09:26:34	2025-04-21 09:26:34	select	advance
537	150	59	Select Category	1467	حدد الفئة		2025-04-21 09:40:39	2025-04-21 09:40:39	select	basic
538	150	60	Select Property Type	1468	اختر نوع العقار		2025-04-21 09:40:39	2025-04-21 09:40:39	select	basic
539	165	62	Make	1	الوضع والنموذج		2025-04-21 11:26:53	2025-04-21 11:26:53	make	basic
540	165	63	Regional Specs	3	المواصفات الإقليمية		2025-04-21 11:26:53	2025-04-21 11:26:53	select	basic
541	165	64	Year	5	سنة		2025-04-21 11:26:53	2025-04-21 11:26:53	select	basic
542	165	65	Kilometers	6000	كيلومترات		2025-04-21 11:26:53	2025-04-21 11:26:53	numeric	basic
543	165	66	Body Type	7	نوع الجسم		2025-04-21 11:26:53	2025-04-21 11:26:53	select	basic
544	165	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-21 11:26:53	2025-04-21 11:26:53	select	basic
545	165	68	Price	6352	سعر		2025-04-21 11:26:53	2025-04-21 11:26:53	numeric	basic
546	165	57	Model	1	Model		2025-04-21 11:26:53	2025-04-21 11:26:53	model	basic
547	165	70	images		الصور		2025-04-21 11:27:33	2025-04-21 11:27:33	files	advance
548	165	56	Description	hello	وصف		2025-04-21 11:27:33	2025-04-21 11:27:33	textarea	advance
549	165	50	Fuel Type	11	نوع الوقود		2025-04-21 11:27:33	2025-04-21 11:27:33	select	advance
550	165	51	Exterior Color	Blue	اللون الخارجي		2025-04-21 11:27:33	2025-04-21 11:27:33	text	advance
551	165	52	Interior Color	1452	اللون الداخلي		2025-04-21 11:27:33	2025-04-21 11:27:33	select	advance
552	165	53	Warranty	1454	الضمان		2025-04-21 11:27:33	2025-04-21 11:27:33	select	advance
553	165	54	Body Condition	1456	حالة الجسم		2025-04-21 11:27:33	2025-04-21 11:27:33	select	advance
554	165	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-21 11:27:33	2025-04-21 11:27:33	select	advance
555	169	78	Multi option field	option3	حقل متعدد الخيارات		2025-04-21 12:04:59	2025-04-21 12:04:59	checkbox	basic
556	169	73	Text Field	Hello	قيمة النص		2025-04-21 12:04:59	2025-04-21 12:04:59	text	basic
557	169	74	Text Area Field	hamid	حقل منطقة النص		2025-04-21 12:04:59	2025-04-21 12:04:59	textarea	basic
558	169	75	Price	5000	ثمن		2025-04-21 12:04:59	2025-04-21 12:04:59	numeric	basic
559	169	76	Gender	Female	جنس		2025-04-21 12:04:59	2025-04-21 12:04:59	radio	basic
560	169	77	Mobile	+92 3441562554	جوال		2025-04-21 12:04:59	2025-04-21 12:04:59	mobile	basic
561	169	59	Select Category	1465	حدد الفئة		2025-04-21 12:04:59	2025-04-21 12:04:59	select	basic
562	169	60	Select Property Type	1464	اختر نوع العقار		2025-04-21 12:04:59	2025-04-21 12:04:59	select	basic
563	169	79	Amenities	1	وسائل الراحه		2025-04-21 12:04:59	2025-04-21 12:04:59	amenities	basic
564	170	78	Multi option field	option2,option3,option1	حقل متعدد الخيارات		2025-04-21 12:14:12	2025-04-21 12:14:12	checkbox	basic
565	170	73	Text Field	Hdhd	قيمة النص		2025-04-21 12:14:12	2025-04-21 12:14:12	text	basic
566	170	74	Text Area Field	bxhz	حقل منطقة النص		2025-04-21 12:14:12	2025-04-21 12:14:12	textarea	basic
567	170	75	Price	6600	ثمن		2025-04-21 12:14:12	2025-04-21 12:14:12	numeric	basic
568	170	76	Gender	Male	جنس		2025-04-21 12:14:12	2025-04-21 12:14:12	radio	basic
569	170	59	Select Category	1465	حدد الفئة		2025-04-21 12:14:12	2025-04-21 12:14:12	select	basic
570	170	60	Select Property Type	1464	اختر نوع العقار		2025-04-21 12:14:12	2025-04-21 12:14:12	select	basic
571	170	79	Amenities		وسائل الراحه		2025-04-21 12:14:12	2025-04-21 12:14:12	amenities	basic
572	176	78	Multi option field	option3,option1,option2	حقل متعدد الخيارات		2025-04-21 12:35:31	2025-04-21 12:35:31	checkbox	basic
573	176	73	Text Field	Hamid	قيمة النص		2025-04-21 12:35:31	2025-04-21 12:35:31	text	basic
574	176	74	Text Area Field	hello	حقل منطقة النص		2025-04-21 12:35:31	2025-04-21 12:35:31	textarea	basic
575	176	75	Price	600	ثمن		2025-04-21 12:35:31	2025-04-21 12:35:31	numeric	basic
576	176	76	Gender	Female	جنس		2025-04-21 12:35:31	2025-04-21 12:35:31	radio	basic
577	176	59	Select Category	1465	حدد الفئة		2025-04-21 12:35:31	2025-04-21 12:35:31	select	basic
578	176	60	Select Property Type	1464	اختر نوع العقار		2025-04-21 12:35:31	2025-04-21 12:35:31	select	basic
579	176	79	Amenities	3,5,7,8,6	وسائل الراحه		2025-04-21 12:35:31	2025-04-21 12:35:31	amenities	basic
580	177	78	Multi option field	option2,option3,option1	حقل متعدد الخيارات		2025-04-21 12:56:17	2025-04-21 12:56:17	checkbox	basic
581	177	73	Text Field	Field	قيمة النص		2025-04-21 12:56:17	2025-04-21 12:56:17	text	basic
582	177	74	Text Area Field	bello	حقل منطقة النص		2025-04-21 12:56:17	2025-04-21 12:56:17	textarea	basic
583	177	75	Price	6000	ثمن		2025-04-21 12:56:17	2025-04-21 12:56:17	numeric	basic
584	177	76	Gender	Male	جنس		2025-04-21 12:56:17	2025-04-21 12:56:17	radio	basic
585	177	77	Mobile	+92 3441562554	جوال		2025-04-21 12:56:17	2025-04-21 12:56:17	mobile	basic
586	177	59	Select Category	1465	حدد الفئة		2025-04-21 12:56:17	2025-04-21 12:56:17	select	basic
587	177	60	Select Property Type	1468	اختر نوع العقار		2025-04-21 12:56:17	2025-04-21 12:56:17	select	basic
588	177	79	Amenities	4,6,8,10,9,7,5,3,1	وسائل الراحه		2025-04-21 12:56:17	2025-04-21 12:56:17	amenities	basic
589	178	78	Multi option field	option2,option3,option1	حقل متعدد الخيارات		2025-04-21 14:27:32	2025-04-21 14:27:32	checkbox	basic
590	178	73	Text Field	Hlo	قيمة النص		2025-04-21 14:27:32	2025-04-21 14:27:32	text	basic
591	178	74	Text Area Field	description	حقل منطقة النص		2025-04-21 14:27:32	2025-04-21 14:27:32	textarea	basic
592	178	75	Price	68550	ثمن		2025-04-21 14:27:32	2025-04-21 14:27:32	numeric	basic
593	178	76	Gender	Female	جنس		2025-04-21 14:27:32	2025-04-21 14:27:32	radio	basic
594	178	77	Mobile	+92 3441562554	جوال		2025-04-21 14:27:32	2025-04-21 14:27:32	mobile	basic
595	178	59	Select Category	1465	حدد الفئة		2025-04-21 14:27:32	2025-04-21 14:27:32	select	basic
596	178	60	Select Property Type	1464	اختر نوع العقار		2025-04-21 14:27:32	2025-04-21 14:27:32	select	basic
597	178	79	Amenities	2,4,1,3,6,7,8,5,9,10	وسائل الراحه		2025-04-21 14:27:32	2025-04-21 14:27:32	amenities	basic
598	179	62	Make	1	الوضع والنموذج		2025-04-21 14:33:19	2025-04-21 14:33:19	make	basic
599	179	63	Regional Specs	3	المواصفات الإقليمية		2025-04-21 14:33:19	2025-04-21 14:33:19	select	basic
600	179	64	Year	5	سنة		2025-04-21 14:33:19	2025-04-21 14:33:19	select	basic
601	179	65	Kilometers	7000	كيلومترات		2025-04-21 14:33:19	2025-04-21 14:33:19	numeric	basic
602	179	66	Body Type	7	نوع الجسم		2025-04-21 14:33:19	2025-04-21 14:33:19	select	basic
603	179	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-21 14:33:19	2025-04-21 14:33:19	select	basic
604	179	68	Price	6000	سعر		2025-04-21 14:33:19	2025-04-21 14:33:19	numeric	basic
605	179	57	Model	65	Model		2025-04-21 14:33:19	2025-04-21 14:33:19	model	basic
606	180	62	Make	1	الوضع والنموذج		2025-04-21 14:50:15	2025-04-21 14:50:15	make	basic
607	180	63	Regional Specs	3	المواصفات الإقليمية		2025-04-21 14:50:15	2025-04-21 14:50:15	select	basic
608	180	64	Year	5	سنة		2025-04-21 14:50:15	2025-04-21 14:50:15	select	basic
609	180	65	Kilometers	6000	كيلومترات		2025-04-21 14:50:15	2025-04-21 14:50:15	numeric	basic
610	180	66	Body Type	7	نوع الجسم		2025-04-21 14:50:15	2025-04-21 14:50:15	select	basic
611	180	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-21 14:50:15	2025-04-21 14:50:15	select	basic
612	180	68	Price	9000	سعر		2025-04-21 14:50:15	2025-04-21 14:50:15	numeric	basic
613	180	69	Phone Number	+92 3441562554	رقم التليفون		2025-04-21 14:50:15	2025-04-21 14:50:15	mobile	basic
614	180	57	Model	1	Model		2025-04-21 14:50:15	2025-04-21 14:50:15	model	basic
615	180	70	images		الصور		2025-04-21 14:51:52	2025-04-21 14:51:52	files	advance
616	180	56	Description	hello	وصف		2025-04-21 14:51:52	2025-04-21 14:51:52	textarea	advance
617	180	50	Fuel Type	11	نوع الوقود		2025-04-21 14:51:52	2025-04-21 14:51:52	select	advance
618	180	51	Exterior Color	Black	اللون الخارجي		2025-04-21 14:51:52	2025-04-21 14:51:52	text	advance
619	180	52	Interior Color	1452	اللون الداخلي		2025-04-21 14:51:52	2025-04-21 14:51:52	select	advance
620	180	53	Warranty	1454	الضمان		2025-04-21 14:51:52	2025-04-21 14:51:52	select	advance
621	180	54	Body Condition	1456	حالة الجسم		2025-04-21 14:51:52	2025-04-21 14:51:52	select	advance
622	180	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-21 14:51:52	2025-04-21 14:51:52	select	advance
623	181	62	Make	1	الوضع والنموذج		2025-04-21 18:00:19	2025-04-21 18:00:19	make	basic
624	181	63	Regional Specs	3	المواصفات الإقليمية		2025-04-21 18:00:19	2025-04-21 18:00:19	select	basic
625	181	64	Year	5	سنة		2025-04-21 18:00:19	2025-04-21 18:00:19	select	basic
626	181	65	Kilometers	6000	كيلومترات		2025-04-21 18:00:19	2025-04-21 18:00:19	numeric	basic
627	181	66	Body Type	7	نوع الجسم		2025-04-21 18:00:19	2025-04-21 18:00:19	select	basic
628	181	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-21 18:00:19	2025-04-21 18:00:19	select	basic
629	181	68	Price	25	سعر		2025-04-21 18:00:19	2025-04-21 18:00:19	numeric	basic
630	181	57	Model	1	Model		2025-04-21 18:00:19	2025-04-21 18:00:19	model	basic
631	181	70	images		الصور		2025-04-21 18:00:48	2025-04-21 18:00:48	files	advance
632	181	56	Description	description	وصف		2025-04-21 18:00:48	2025-04-21 18:00:48	textarea	advance
633	181	50	Fuel Type	11	نوع الوقود		2025-04-21 18:00:48	2025-04-21 18:00:48	select	advance
634	181	51	Exterior Color	Black	اللون الخارجي		2025-04-21 18:00:48	2025-04-21 18:00:48	text	advance
635	181	52	Interior Color	1452	اللون الداخلي		2025-04-21 18:00:48	2025-04-21 18:00:48	select	advance
636	181	53	Warranty	1454	الضمان		2025-04-21 18:00:48	2025-04-21 18:00:48	select	advance
637	181	54	Body Condition	1456	حالة الجسم		2025-04-21 18:00:48	2025-04-21 18:00:48	select	advance
638	181	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-21 18:00:48	2025-04-21 18:00:48	select	advance
639	182	62	Make	2	الوضع والنموذج		2025-04-22 06:32:37	2025-04-22 06:32:37	make	basic
640	182	63	Regional Specs	3	المواصفات الإقليمية		2025-04-22 06:32:37	2025-04-22 06:32:37	select	basic
641	182	64	Year	6	سنة		2025-04-22 06:32:37	2025-04-22 06:32:37	select	basic
642	182	65	Kilometers	25000	كيلومترات		2025-04-22 06:32:37	2025-04-22 06:32:37	numeric	basic
643	182	66	Body Type	8	نوع الجسم		2025-04-22 06:32:37	2025-04-22 06:32:37	select	basic
644	182	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-22 06:32:37	2025-04-22 06:32:37	select	basic
645	182	68	Price	25000	سعر		2025-04-22 06:32:37	2025-04-22 06:32:37	numeric	basic
647	182	57	Model	4	Model		2025-04-22 06:32:37	2025-04-22 06:32:37	model	basic
652	182	52	Interior Color	1452	اللون الداخلي		2025-04-22 06:34:37	2025-04-22 06:34:37	select	advance
646	182	69	Phone Number	+971 561663258	رقم التليفون		2025-04-22 06:32:37	2025-04-22 06:33:15	mobile	basic
648	182	70	images		الصور		2025-04-22 06:34:37	2025-04-22 06:34:37	files	advance
649	182	56	Description	good mileage \ngood condition	وصف		2025-04-22 06:34:37	2025-04-22 06:34:37	textarea	advance
650	182	50	Fuel Type	11	نوع الوقود		2025-04-22 06:34:37	2025-04-22 06:34:37	select	advance
651	182	51	Exterior Color	White	اللون الخارجي		2025-04-22 06:34:37	2025-04-22 06:34:37	text	advance
653	182	53	Warranty	1454	الضمان		2025-04-22 06:34:37	2025-04-22 06:34:37	select	advance
654	182	54	Body Condition	1456	حالة الجسم		2025-04-22 06:34:37	2025-04-22 06:34:37	select	advance
655	182	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-22 06:34:37	2025-04-22 06:34:37	select	advance
656	183	62	Make	6	الوضع والنموذج		2025-04-22 07:08:10	2025-04-22 07:08:10	make	basic
657	183	63	Regional Specs	4	المواصفات الإقليمية		2025-04-22 07:08:10	2025-04-22 07:08:10	select	basic
658	183	64	Year	6	سنة		2025-04-22 07:08:10	2025-04-22 07:08:10	select	basic
659	183	65	Kilometers	3500	كيلومترات		2025-04-22 07:08:10	2025-04-22 07:08:10	numeric	basic
660	183	66	Body Type	7	نوع الجسم		2025-04-22 07:08:10	2025-04-22 07:08:10	select	basic
661	183	67	Is your car insured in Syria	10	هل سيارتك مؤمنة في سوريا؟		2025-04-22 07:08:10	2025-04-22 07:08:10	select	basic
662	183	68	Price	6557	سعر		2025-04-22 07:08:10	2025-04-22 07:08:10	numeric	basic
663	183	69	Phone Number	+92 3441562554	رقم التليفون		2025-04-22 07:08:10	2025-04-22 07:08:10	mobile	basic
664	183	57	Model	46	Model		2025-04-22 07:08:10	2025-04-22 07:08:10	model	basic
665	183	70	images		الصور		2025-04-22 07:09:49	2025-04-22 07:09:49	files	advance
666	183	56	Description	description here for add posting	وصف		2025-04-22 07:09:49	2025-04-22 07:09:49	textarea	advance
667	183	50	Fuel Type	12	نوع الوقود		2025-04-22 07:09:49	2025-04-22 07:09:49	select	advance
668	183	51	Exterior Color	Black	اللون الخارجي		2025-04-22 07:09:49	2025-04-22 07:09:49	text	advance
669	183	52	Interior Color	1452	اللون الداخلي		2025-04-22 07:09:49	2025-04-22 07:09:49	select	advance
670	183	53	Warranty	1455	الضمان		2025-04-22 07:09:49	2025-04-22 07:09:49	select	advance
671	183	54	Body Condition	1456	حالة الجسم		2025-04-22 07:09:49	2025-04-22 07:09:49	select	advance
672	183	55	Mechanical Condition	1459	الحالة الميكانيكية		2025-04-22 07:09:49	2025-04-22 07:09:49	select	advance
673	184	62	Make	1	الوضع والنموذج		2025-04-23 08:17:19	2025-04-23 08:17:19	make	basic
674	184	63	Regional Specs	4	المواصفات الإقليمية		2025-04-23 08:17:19	2025-04-23 08:17:19	select	basic
675	184	64	Year	6	سنة		2025-04-23 08:17:19	2025-04-23 08:17:19	select	basic
676	184	65	Kilometers	25000	كيلومترات		2025-04-23 08:17:19	2025-04-23 08:17:19	numeric	basic
677	184	66	Body Type	7	نوع الجسم		2025-04-23 08:17:19	2025-04-23 08:17:19	select	basic
678	184	67	Is your car insured in Syria	10	هل سيارتك مؤمنة في سوريا؟		2025-04-23 08:17:19	2025-04-23 08:17:19	select	basic
679	184	68	Price	29000	سعر		2025-04-23 08:17:19	2025-04-23 08:17:19	numeric	basic
681	184	57	Model	65	Model		2025-04-23 08:17:19	2025-04-23 08:17:19	model	basic
715	186	57	Model	5	Model		2025-04-23 08:59:19	2025-04-23 08:59:19	model	basic
716	186	70	images		الصور		2025-04-23 09:00:00	2025-04-23 09:00:00	files	advance
680	184	69	Phone Number	+971 561660258	رقم التليفون		2025-04-23 08:17:19	2025-04-23 08:19:46	mobile	basic
682	184	70	images		الصور		2025-04-23 08:22:30	2025-04-23 08:22:30	files	advance
683	184	56	Description	white maxima with 2014 model \nnew condition \nnew tires in warranty	وصف		2025-04-23 08:22:30	2025-04-23 08:22:30	textarea	advance
684	184	50	Fuel Type	11	نوع الوقود		2025-04-23 08:22:30	2025-04-23 08:22:30	select	advance
685	184	51	Exterior Color	White	اللون الخارجي		2025-04-23 08:22:30	2025-04-23 08:22:30	text	advance
686	184	52	Interior Color	1452	اللون الداخلي		2025-04-23 08:22:30	2025-04-23 08:22:30	select	advance
687	184	53	Warranty	1454	الضمان		2025-04-23 08:22:30	2025-04-23 08:22:30	select	advance
688	184	54	Body Condition	1456	حالة الجسم		2025-04-23 08:22:30	2025-04-23 08:22:30	select	advance
689	184	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-23 08:22:30	2025-04-23 08:22:30	select	advance
690	185	62	Make	10	الوضع والنموذج		2025-04-23 08:35:09	2025-04-23 08:35:09	make	basic
691	185	63	Regional Specs	3	المواصفات الإقليمية		2025-04-23 08:35:09	2025-04-23 08:35:09	select	basic
692	185	64	Year	6	سنة		2025-04-23 08:35:09	2025-04-23 08:35:09	select	basic
693	185	65	Kilometers	36000	كيلومترات		2025-04-23 08:35:09	2025-04-23 08:35:09	numeric	basic
694	185	66	Body Type	8	نوع الجسم		2025-04-23 08:35:09	2025-04-23 08:35:09	select	basic
695	185	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-23 08:35:09	2025-04-23 08:35:09	select	basic
696	185	68	Price	35000	سعر		2025-04-23 08:35:09	2025-04-23 08:35:09	numeric	basic
697	185	69	Phone Number	+92 3352638307	رقم التليفون		2025-04-23 08:35:09	2025-04-23 08:35:09	mobile	basic
698	185	57	Model	118	Model		2025-04-23 08:35:09	2025-04-23 08:35:09	model	basic
699	185	70	images		الصور		2025-04-23 08:37:45	2025-04-23 08:37:45	files	advance
700	185	56	Description	Mercedes 02012 with new condition \nlittle engine problem	وصف		2025-04-23 08:37:45	2025-04-23 08:37:45	textarea	advance
701	185	50	Fuel Type	12	نوع الوقود		2025-04-23 08:37:45	2025-04-23 08:37:45	select	advance
702	185	51	Exterior Color	Silver	اللون الخارجي		2025-04-23 08:37:45	2025-04-23 08:37:45	text	advance
703	185	52	Interior Color	1453	اللون الداخلي		2025-04-23 08:37:45	2025-04-23 08:37:45	select	advance
704	185	53	Warranty	1454	الضمان		2025-04-23 08:37:45	2025-04-23 08:37:45	select	advance
705	185	54	Body Condition	1456	حالة الجسم		2025-04-23 08:37:45	2025-04-23 08:37:45	select	advance
706	185	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-23 08:37:45	2025-04-23 08:37:45	select	advance
707	186	62	Make	2	الوضع والنموذج		2025-04-23 08:59:19	2025-04-23 08:59:19	make	basic
708	186	63	Regional Specs	3	المواصفات الإقليمية		2025-04-23 08:59:19	2025-04-23 08:59:19	select	basic
709	186	64	Year	5	سنة		2025-04-23 08:59:19	2025-04-23 08:59:19	select	basic
710	186	65	Kilometers	88888	كيلومترات		2025-04-23 08:59:19	2025-04-23 08:59:19	numeric	basic
711	186	66	Body Type	7	نوع الجسم		2025-04-23 08:59:19	2025-04-23 08:59:19	select	basic
712	186	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-23 08:59:19	2025-04-23 08:59:19	select	basic
713	186	68	Price	55888	سعر		2025-04-23 08:59:19	2025-04-23 08:59:19	numeric	basic
714	186	69	Phone Number	+963 5588888	رقم التليفون		2025-04-23 08:59:19	2025-04-23 08:59:19	mobile	basic
717	186	56	Description	hhffgc	وصف		2025-04-23 09:00:00	2025-04-23 09:00:00	textarea	advance
718	186	50	Fuel Type	11	نوع الوقود		2025-04-23 09:00:00	2025-04-23 09:00:00	select	advance
719	186	51	Exterior Color	Ggvcc	اللون الخارجي		2025-04-23 09:00:00	2025-04-23 09:00:00	text	advance
720	186	52	Interior Color	1452	اللون الداخلي		2025-04-23 09:00:00	2025-04-23 09:00:00	select	advance
721	186	53	Warranty	1454	الضمان		2025-04-23 09:00:00	2025-04-23 09:00:00	select	advance
722	186	54	Body Condition	1456	حالة الجسم		2025-04-23 09:00:00	2025-04-23 09:00:00	select	advance
723	186	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-23 09:00:00	2025-04-23 09:00:00	select	advance
724	187	64	Year	5	سنة		2025-04-24 09:15:22	2025-04-24 09:15:22	select	basic
725	187	65	Kilometers	6000	كيلومترات		2025-04-24 09:15:22	2025-04-24 09:15:22	numeric	basic
726	187	66	Body Type	7	نوع الجسم		2025-04-24 09:15:22	2025-04-24 09:15:22	select	basic
727	187	67	Is your car insured in Syria	9	هل سيارتك مؤمنة في سوريا؟		2025-04-24 09:15:22	2025-04-24 09:15:22	select	basic
728	187	68	Price	6000	سعر		2025-04-24 09:15:22	2025-04-24 09:15:22	numeric	basic
729	187	69	Phone Number	+92 3441562554	رقم التليفون		2025-04-24 09:15:22	2025-04-24 09:15:22	mobile	basic
730	187	62	Make	1	الوضع والنموذج		2025-04-24 09:15:22	2025-04-24 09:15:22	make	basic
731	187	63	Regional Specs	3	المواصفات الإقليمية		2025-04-24 09:15:22	2025-04-24 09:15:22	select	basic
732	187	57	Model	1	Model		2025-04-24 09:15:22	2025-04-24 09:15:22	model	basic
733	187	70	images		الصور		2025-04-24 09:15:54	2025-04-24 09:15:54	files	advance
734	187	56	Description	hello	وصف		2025-04-24 09:15:54	2025-04-24 09:15:54	textarea	advance
735	187	50	Fuel Type	11	نوع الوقود		2025-04-24 09:15:54	2025-04-24 09:15:54	select	advance
736	187	51	Exterior Color	Black	اللون الخارجي		2025-04-24 09:15:54	2025-04-24 09:15:54	text	advance
737	187	52	Interior Color	1452	اللون الداخلي		2025-04-24 09:15:54	2025-04-24 09:15:54	select	advance
738	187	53	Warranty	1454	الضمان		2025-04-24 09:15:54	2025-04-24 09:15:54	select	advance
739	187	54	Body Condition	1456	حالة الجسم		2025-04-24 09:15:54	2025-04-24 09:15:54	select	advance
740	187	55	Mechanical Condition	1458	الحالة الميكانيكية		2025-04-24 09:15:54	2025-04-24 09:15:54	select	advance
\.


--
-- Data for Name: ad_images; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.ad_images (id, ad_id, image, field_id, created_at, updated_at) FROM stdin;
1	40	mpovKx2yeq1Rwj6g2CEf8sz2SpVu0f8mGS90ARJ9.png	70	2025-04-18 11:33:28	2025-04-18 11:33:28
2	85	yp7M8mtAA4eCSyLRvnd7HEy4bL4UeI4kKMc2U7GD.jpg	49	2025-04-19 13:17:30	2025-04-19 13:17:30
3	136	52Vr369tmMaoo6TvM8x0BKXvLQxy6QbZsrNRMOrn.png	70	2025-04-21 09:06:20	2025-04-21 09:06:20
4	180	2WY8vvFLwpYW2SNVOURW04apSNiKb1UaRNkZrlML.jpg	70	2025-04-21 14:51:52	2025-04-21 14:51:52
5	181	FK1XN9KtTyYqK6TOMsfvqYDfdkRDG19TGEawH2vX.jpg	70	2025-04-21 18:00:48	2025-04-21 18:00:48
6	182	ShBG9KIYjJ4kh5rBsGQJTgnFwJKZg4CmNdFl9M4g.jpg	70	2025-04-22 06:34:37	2025-04-22 06:34:37
7	183	ZvW2u6IsaAxN0IVz2uUU4hLFRkkesvtWsDqEK0Og.jpg	70	2025-04-22 07:09:49	2025-04-22 07:09:49
8	183	RqWINuiymazeXTpLp81sHD50sOTno8vl4HGxRjCv.jpg	70	2025-04-22 07:09:49	2025-04-22 07:09:49
9	183	rXfQ7M9hOAl7XT3fpdeYG5hV7Zm8CuGw2Dg33Mea.jpg	70	2025-04-22 07:09:49	2025-04-22 07:09:49
10	183	MX41u8HMOwJabf2ReyS7rJ4WhaGbW8IfyLP6zTw2.jpg	70	2025-04-22 07:10:37	2025-04-22 07:10:37
11	183	zGt1kFkmV2NEby0LBgaFi4AiVskJPZoI0jxVwfIL.jpg	70	2025-04-22 07:10:37	2025-04-22 07:10:37
12	183	xGZwPTjtyMqXTe2jAojsX7tENXNWxRtO4EZ5aghG.jpg	70	2025-04-22 07:10:37	2025-04-22 07:10:37
13	184	gRupmo97XjWoAqjkH9S8dADytJAf1tNicLemJOTg.jpg	70	2025-04-23 08:22:30	2025-04-23 08:22:30
14	185	q3L979dt2ielFcBQYonpND5aINd7YzULudaENqEu.jpg	70	2025-04-23 08:37:45	2025-04-23 08:37:45
15	185	odQ9zsV037CJv4PcHUJ3iwR8X2eAgvEUXuOyzQHn.jpg	70	2025-04-23 08:37:45	2025-04-23 08:37:45
16	185	gSmf3aJBTfP33kG1rNb5vR1AzIVRWuwAm8y5TDXI.jpg	70	2025-04-23 08:37:45	2025-04-23 08:37:45
17	186	ADWVyVlsmeSOSSGnGTkDCJdeZe5MBdTySdb3XUm9.jpg	70	2025-04-23 09:00:00	2025-04-23 09:00:00
18	187	pgJm0FLEzSlvlBz0dVWn8k1P4cP6mpQiqXyva3qN.jpg	70	2025-04-24 09:15:54	2025-04-24 09:15:54
\.


--
-- Data for Name: ad_plans; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.ad_plans (id, pricing_plan_id, ad_id, name, duration, price, currency, tax, created_at, updated_at, duration_id, payment_method, total_price, discount, promo_code, payment_id) FROM stdin;
1	1	4	Free	30	0	SYP	0	\N	\N	\N	\N	\N	\N	\N	\N
2	1	1	Free	30	0	AED	0	2025-03-19 14:57:57	2025-03-19 14:57:57	\N	\N	\N	\N	\N	\N
3	1	2	Free	30	0	AED	0	2025-04-09 17:18:40	2025-03-19 14:57:57	\N	\N	\N	\N	\N	\N
4	1	86	Free	30	0.00	AED	0	2025-04-19 13:22:30	2025-04-19 13:22:30	\N	3	0.00	0.00	\N	\N
5	2	88	Standard	30	100.00	AED	0	2025-04-19 13:47:17	2025-04-19 13:47:17	\N	3	100.00	0.00	\N	3
6	2	89	Standard	30	100.00	AED	0	2025-04-19 16:48:59	2025-04-19 16:48:59	\N	1	100.00	0.00	\N	4
7	2	90	Standard	30	100.00	AED	0	2025-04-19 16:59:09	2025-04-19 16:59:09	\N	3	100.00	0.00	\N	7
8	2	121	Standard	30	100.00	AED	0	2025-04-19 17:45:38	2025-04-19 17:45:38	\N	1	100.00	0.00	\N	8
9	2	122	Standard	30	100.00	AED	0	2025-04-19 18:09:05	2025-04-19 18:09:05	\N	1	100.00	0.00	\N	9
10	2	131	Standard	30	100.00	AED	0	2025-04-19 18:47:09	2025-04-19 18:47:09	\N	1	100.00	0.00	\N	15
11	2	131	Standard	30	100.00	AED	0	2025-04-19 18:49:12	2025-04-19 18:49:12	\N	1	100.00	0.00	\N	15
12	2	131	Standard	30	100.00	AED	0	2025-04-19 18:49:33	2025-04-19 18:49:33	\N	1	100.00	0.00	\N	15
13	2	132	Standard	30	100.00	AED	0	2025-04-19 18:50:50	2025-04-19 18:50:50	\N	1	100.00	0.00	\N	16
14	2	132	Standard	30	100.00	AED	0	2025-04-19 18:51:57	2025-04-19 18:51:57	\N	1	100.00	0.00	\N	16
15	2	132	Standard	30	100.00	AED	0	2025-04-19 18:51:57	2025-04-19 18:51:57	\N	1	100.00	0.00	\N	17
16	2	134	Standard	30	100.00	AED	0	2025-04-19 18:56:54	2025-04-19 18:56:54	\N	1	100.00	0.00	\N	18
17	1	142	Free	30	0.00	AED	0	2025-04-21 09:26:38	2025-04-21 09:26:38	\N	3	0.00	0.00	\N	\N
18	1	150	Free	30	0.00	AED	0	2025-04-21 09:41:42	2025-04-21 09:41:42	\N	3	0.00	0.00	\N	\N
19	1	165	Free	30	0.00	AED	0	2025-04-21 11:27:38	2025-04-21 11:27:38	\N	3	0.00	0.00	\N	\N
20	1	169	Free	30	0.00	AED	0	2025-04-21 12:05:13	2025-04-21 12:05:13	\N	3	0.00	0.00	\N	\N
21	1	177	Free	30	0.00	AED	0	2025-04-21 12:56:35	2025-04-21 12:56:35	\N	3	0.00	0.00	\N	\N
22	1	178	Free	30	0.00	AED	0	2025-04-21 14:27:48	2025-04-21 14:27:48	\N	3	0.00	0.00	\N	\N
23	1	180	Free	30	0.00	AED	0	2025-04-21 14:52:03	2025-04-21 14:52:03	\N	3	0.00	0.00	\N	\N
24	1	181	Free	30	0.00	AED	0	2025-04-21 18:00:53	2025-04-21 18:00:53	\N	3	0.00	0.00	\N	\N
25	2	182	Standard	30	100.00	AED	0	2025-04-22 06:35:29	2025-04-22 06:35:29	\N	1	100.00	0.00	\N	19
26	2	183	Standard	30	100.00	AED	0	2025-04-22 07:25:30	2025-04-22 07:25:30	\N	1	100.00	0.00	\N	20
27	2	184	Standard	30	100.00	AED	0	2025-04-23 08:22:48	2025-04-23 08:22:48	\N	3	100.00	0.00	\N	21
28	3	185	Premium	30	200.00	AED	0	2025-04-23 08:38:23	2025-04-23 08:38:23	3	1	200.00	0.00	\N	22
29	2	187	Standard	30	100.00	AED	0	2025-04-24 09:16:01	2025-04-24 09:16:01	\N	3	100.00	0.00	\N	23
30	2	187	Standard	30	100.00	AED	0	2025-04-24 09:16:46	2025-04-24 09:16:46	\N	1	100.00	0.00	\N	24
31	2	187	Standard	30	100.00	AED	0	2025-04-24 09:25:52	2025-04-24 09:25:52	\N	3	100.00	0.00	\N	25
32	2	187	Standard	30	100.00	AED	0	2025-04-24 09:28:03	2025-04-24 09:28:03	\N	3	100.00	0.00	\N	26
\.


--
-- Data for Name: ad_report_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.ad_report_types (id, name, name_ar, status, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: ad_reports; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.ad_reports (id, ad_id, report_type_id, user_id, description, status, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: ad_requests; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.ad_requests (id, user_id, parent_category_id, sub_category_id, first_name, dial_code, phone_number, email, description, status, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: answers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.answers (id, question_id, name, name_ar, status, deleted_at, created_at, updated_at) FROM stdin;
1	1	Very Close	قريبة جداً	1	\N	2025-11-11 09:46:26	2025-11-14 06:17:51
2	1	Moderate (occasional visits)	متوسطة (زيارات بين فترة وأخرى)	1	\N	2025-11-11 09:46:53	2025-11-14 06:18:10
3	1	Distant / Independent	بعيدة / مستقلة	1	\N	2025-11-14 06:18:37	2025-11-14 06:18:37
4	2	With family	مع الأهل	1	\N	2025-11-14 06:20:09	2025-11-14 06:20:09
5	2	Near family	قريب من الأهل	1	\N	2025-11-14 06:20:37	2025-11-14 06:20:37
6	2	Far / Completely independent	بعيد / مستقل تماماً	1	\N	2025-11-14 06:21:19	2025-11-14 06:21:19
7	3	I prefer calm discussion and dialogue	أفضل الحوار والهدوء	1	\N	2025-11-14 06:22:24	2025-11-14 06:22:24
8	3	I need some time before discussing again	أحتاج وقت ثم أعود للنقاش	1	\N	2025-11-14 06:23:19	2025-11-14 06:23:19
9	3	I avoid confrontation	أتجنب المواجهة	1	\N	2025-11-14 06:23:51	2025-11-14 06:23:51
10	4	Continuous growth and reaching a higher position	تطوير مستمر والوصول لمنصب أعلى	1	\N	2025-11-14 06:28:30	2025-11-14 06:28:30
11	4	Stability in a suitable job without major changes	الاستقرار في عمل مناسب بدون تغيير كبير	1	\N	2025-11-14 06:29:00	2025-11-14 06:29:00
12	4	Work is not a priority; family life is more important	العمل ليس أولوية، المهم الحياة الأسرية	1	\N	2025-11-14 06:29:34	2025-11-14 06:29:34
13	5	I would like to continue working	أود الاستمرار بالعمل	1	\N	2025-11-14 06:29:58	2025-11-14 06:29:58
14	5	Depends on circumstances and mutual agreement	حسب الظروف والاتفاق	1	\N	2025-11-14 06:30:24	2025-11-14 06:30:24
15	5	I prefer to dedicate myself to the home	أفضل التفرغ للبيت	1	\N	2025-11-14 06:31:06	2025-11-14 06:31:06
17	7	Reading / Learning	Reading / Learning	1	\N	2025-11-15 10:08:50	2025-11-15 10:08:50
18	7	Sports / Outdoor activities	Sports / Outdoor activities	1	\N	2025-11-15 10:08:50	2025-11-15 10:09:58
19	7	Traveling and exploring new places	Traveling and exploring new places	1	\N	2025-11-15 10:08:50	2025-11-15 10:10:40
20	8	Yes, regularly	Yes, regularly	1	\N	2025-11-15 10:11:37	2025-11-15 10:11:37
21	8	Sometimes, when there’s an opportunity	Sometimes, when there’s an opportunity	1	\N	2025-11-15 10:12:17	2025-11-15 10:12:17
22	8	Not very interested	Not very interested	1	\N	2025-11-15 10:12:34	2025-11-15 10:12:34
23	10	I like saving and planning	I like saving and planning	1	\N	2025-11-15 10:13:13	2025-11-15 10:13:13
24	10	A balance between saving and spending	A balance between saving and spending	1	\N	2025-11-15 10:13:30	2025-11-15 10:13:30
25	10	I spend more than I save	I spend more than I save	1	\N	2025-11-15 10:13:47	2025-11-15 10:13:47
26	9	Mainly the husband’s responsibility	Mainly the husband’s responsibility	1	\N	2025-11-15 10:14:32	2025-11-15 10:14:32
27	9	Mainly the wife’s responsibility	Mainly the wife’s responsibility	1	\N	2025-11-15 10:14:50	2025-11-15 10:14:50
28	9	Shared between both	Shared between both	1	\N	2025-11-15 10:15:08	2025-11-15 10:15:08
16	6	Less than 10,000	Less than 10,000	1	\N	2025-11-15 09:33:50	2025-11-15 10:15:46
29	11	Stay in the same country	Stay in the same country	1	\N	2025-11-15 10:30:59	2025-11-15 10:30:59
30	11	Move between countries for new experiences	Move between countries for new experiences	1	\N	2025-11-15 10:31:16	2025-11-15 10:31:16
31	11	Decide based on family and career circumstances	Decide based on family and career circumstances	1	\N	2025-11-15 10:31:33	2025-11-15 10:31:33
32	12	Build a stable and happy family	Build a stable and happy family	1	\N	2025-11-15 10:31:49	2025-11-15 10:31:49
33	12	Achieve professional and financial success together	Achieve professional and financial success together	1	\N	2025-11-15 10:32:05	2025-11-15 10:32:05
34	12	Travel and share new experiences	Travel and share new experiences	1	\N	2025-11-15 10:32:21	2025-11-15 10:32:21
\.


--
-- Data for Name: badges; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.badges (id, name, name_ar, type, description, description_ar, icon, status, created_at, updated_at, deleted_at) FROM stdin;
2	BageTwo	BageTwo	upgrade	BageTwo	BageTwo	68371b4be28ec_1748441931.png	1	2025-05-28 14:18:51	2025-05-28 14:18:52	\N
1	Badge1	شارة1	upgrade	90% of the members prefer to contact profiles with photos!	90% من الأعضاء يفضلون التواصل عبر الملفات الشخصية التي تحتوي على صور!	68371ab817642_1748441784.png	1	2025-05-26 10:54:42	2025-07-14 05:58:08	\N
\.


--
-- Data for Name: cache; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.cache (key, value, expiration) FROM stdin;
\.


--
-- Data for Name: cache_locks; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.cache_locks (key, owner, expiration) FROM stdin;
\.


--
-- Data for Name: categories; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.categories (id, name, name_ar, status, parent_id, created_at, updated_at, sort_order, icon) FROM stdin;
152	Women's Accessories	إكسسوارات نسائية	1	146	2025-04-19 13:47:12	2025-04-19 13:47:12	0	\N
154	Kid's Accessories	إكسسوارات للأطفال	1	148	2025-04-19 13:50:42	2025-04-19 13:50:42	0	\N
3	Holiday homes	بيوت العطالت	1	8	2025-04-08 06:00:56	2025-04-20 04:07:38	0	\N
12	Transportation Services	سيارات جديدة	1	50	2025-04-08 08:23:44	2025-04-20 04:09:43	0	\N
8	Vacation Offers	العطلات و السياجة	1	\N	2025-04-08 06:14:29	2025-04-23 07:22:33	0	OVDEvX0HbFfZBCIsoXrDc7CWmoDRya8XkNTurzru.png
9	Properties	عقارات	1	\N	2025-04-08 06:15:16	2025-04-23 09:13:48	0	NzHBfyCNqKgyiJ3LzgeWtpLrdvEAkwcnyg9F74O2.png
13	New Building	ابنية و مجمعات جديدة	1	9	2025-04-09 07:33:47	2025-04-10 05:48:49	0	\N
18	Promotions and discounts	الترويج و التخفيضات	1	\N	2025-04-09 07:53:44	2025-04-23 09:14:03	0	phJGx25ZJ8LAHMXc0CREH6TdRDW1riMlH020kv0t.png
15	Properties For Sale	عقارات للبيع	1	9	2025-04-09 07:51:12	2025-04-10 05:49:21	0	\N
2	Businesses & Opportunities	فرص و أعمال	1	\N	2025-03-20 08:02:34	2025-04-23 09:14:25	0	T6YzVNyszDkbJ8E0EJA2UAxESJwSWftq2K4VeVjD.png
4	Jobs	وظائف	1	\N	2025-04-08 06:11:50	2025-04-23 09:14:42	0	LRXajRiPggrfiMbKj5FAzP6Vy0NmP7aZxMc415r6.png
7	Education	التعليم و التأهيل	1	18	2025-04-08 06:13:16	2025-04-10 06:08:55	0	\N
10	Used Cars	سيارات مستعملة	1	34	2025-04-08 08:18:33	2025-04-11 02:55:19	0	\N
11	Rent Cars	سيارات للإيجار	1	34	2025-04-08 08:21:55	2025-04-18 07:46:43	0	\N
5	New Cars	سيارات جديدة	1	34	2025-03-18 05:38:01	2025-04-18 07:48:47	0	\N
14	Properties For Rent	عقارات للإيجار	1	9	2025-04-09 07:34:35	2025-04-18 18:26:52	0	\N
6	Fitness & Beauty	اللياقة و الجمال	1	18	2025-04-08 06:12:37	2025-04-18 18:43:19	0	\N
33	Event & Ticket	تذاكر العروض	1	18	\N	2025-04-18 19:03:43	0	\N
16	Domestic Tourism Trips	رحلات سياحة داخلية	1	8	2025-04-09 07:52:34	2025-04-19 02:54:22	0	\N
146	For Women	نسائي	1	145	2025-04-19 13:30:51	2025-04-19 13:34:15	0	\N
148	For Kids	ولادي	1	145	2025-04-19 13:32:11	2025-04-19 13:43:33	0	\N
150	Men's Clothing	ملابس رجالي	1	147	2025-04-19 13:45:32	2025-04-19 13:45:32	0	\N
17	Historical tourism	المعالم الدينية والتاريخية	1	8	2025-04-09 07:52:58	2025-04-10 05:52:40	0	\N
65	Auto Accessories & spare parts	قطع غيار و اكسسوارات	1	34	2025-04-18 17:26:11	2025-04-19 10:56:08	0	\N
19	Tourism & Travel Offers	عروض السياحة و السفر	1	8	2025-04-09 07:54:30	2025-04-19 02:58:25	0	\N
68	International Properties	عقارات دولية	1	9	2025-04-18 18:31:29	2025-04-18 18:31:29	0	\N
22	Holiday Services	رحالت سياحية داخلية	1	8	2025-04-09 07:56:23	2025-04-10 05:54:32	0	\N
28	Looking for Agents & distributors	مطلوب وكلاء و موزعين	1	2	2025-04-09 08:18:47	2025-04-18 19:11:20	0	\N
23	For Export	للتصدير	1	2	2025-04-09 08:08:15	2025-04-18 19:09:26	0	\N
73	Exhibitions	معارض داخلية و دولية	1	2	2025-04-18 19:18:40	2025-04-18 19:18:40	0	\N
29	International Agencies	عقود وكالات عالمية	1	2	2025-04-09 08:19:27	2025-04-18 19:15:54	0	\N
74	Meal Offers	المطاعم و الوجبات	1	\N	2025-04-19 02:26:16	2025-04-23 06:41:36	0	EXngLThuNKhIHYlsVX4QnRQvJFAiIDOP9x5wLCXW.png
30	Find Jobs	فرص وظائف	1	4	2025-04-09 08:21:06	2025-04-10 06:05:41	0	\N
20	Rent Farms	مزارع للايجار	1	8	2025-04-09 07:55:00	2025-04-19 02:57:08	0	\N
32	Freelancer	اعمال حرة	1	4	2025-04-09 08:22:28	2025-04-10 06:06:12	0	\N
35	Shopping	التسوق	1	18	2025-04-10 06:10:58	2025-04-10 06:10:58	0	\N
36	Beauty Centers	مراكز التجميل	1	6	2025-04-10 06:15:05	2025-04-10 06:15:05	0	\N
40	Schools	مدارس	1	7	2025-04-10 06:24:14	2025-04-10 06:24:14	0	\N
41	Universities	جامعات	1	7	2025-04-10 06:24:47	2025-04-10 06:24:47	0	\N
47	Malls	المراكز التجارية	1	35	2025-04-10 06:34:12	2025-04-10 06:34:12	0	\N
46	Kids Show	عروض للأطفال	1	33	2025-04-10 06:32:57	2025-04-18 19:05:50	0	\N
43	Tutors and classes	معلمون و دروس خصوصي	1	7	2025-04-10 06:30:32	2025-04-18 19:02:23	0	\N
51	Auto Services	خدمات السيارات	1	50	2025-04-10 06:38:13	2025-04-10 06:38:13	0	\N
52	Home Maintenance	خدمات صيانة المنزل	1	50	2025-04-10 06:38:57	2025-04-10 06:38:57	0	\N
53	Repairs	تصليح اجهزة	1	50	2025-04-10 06:40:51	2025-04-10 06:40:51	0	\N
56	Health & Wellbeing Services	خدمات لياقة و تدريب رياضي	1	50	2025-04-10 06:42:55	2025-04-10 06:42:55	0	\N
57	Digital Marketing Services	خدمات تسويق الكتروني	1	50	2025-04-10 06:43:22	2025-04-10 06:43:22	0	\N
61	Pets	الحيوانات االليفة	1	50	2025-04-10 06:45:57	2025-04-10 06:45:57	0	\N
62	Other Services	خدمات اخرى	1	50	2025-04-10 06:46:24	2025-04-10 06:46:24	0	\N
81	Event Services	خدمات المناسبات	1	\N	2025-04-19 02:35:38	2025-04-23 09:15:16	0	pJ3T4QRp6ukzhU9tXj6voshye5r5sniP0YKUZBzi.png
63	Import Cars	ٍسيارات للإستيراد	1	34	2025-04-18 07:52:29	2025-04-18 07:52:29	0	\N
64	Motorcycles	متورات	1	34	2025-04-18 07:53:41	2025-04-18 07:53:41	0	\N
66	Heavy Vehicles	مركبات ثقيلة	1	34	2025-04-18 17:27:56	2025-04-18 17:27:56	0	\N
67	Boats and Watercraft	قوارب و مركبات بحرية	1	34	2025-04-18 17:31:39	2025-04-18 17:31:39	0	\N
21	Holiday Homes	بيوت العطلات	1	8	2025-04-09 07:55:38	2025-04-18 18:28:34	0	\N
72	Hair Salons	صالونات شعر	1	6	2025-04-18 18:49:57	2025-04-18 18:49:57	0	\N
37	Gyms	نوادي رياضية	1	6	2025-04-10 06:21:10	2025-04-18 18:51:20	0	\N
39	Dental Beauty Centers	مراكز تجميل اسنان	1	6	2025-04-10 06:23:03	2025-04-18 18:52:44	0	\N
42	Training & learning centers	معاهد تعليم و تدريب	1	7	2025-04-10 06:27:18	2025-04-18 19:01:30	0	\N
48	Shops	محلات التجارية	1	35	2025-04-10 06:34:44	2025-04-18 18:56:17	0	\N
45	Event	تذاكر الفعاليات	1	33	2025-04-10 06:31:55	2025-04-18 19:04:45	0	\N
25	Investment Opportunities	فرص للإستثمار	1	2	2025-04-09 08:10:30	2025-04-18 19:08:38	0	\N
75	Breakfast Offers	عروض الفطور	1	74	2025-04-19 02:27:46	2025-04-19 02:27:46	0	\N
76	Lunch & Dinner Offers	عروض الغداء و العشاء	1	74	2025-04-19 02:28:33	2025-04-19 02:28:33	0	\N
77	Cafe Offers	عروض الكافيهات	1	74	2025-04-19 02:29:19	2025-04-19 02:29:19	0	\N
78	Fast Food	وجبات سريعة	1	74	2025-04-19 02:30:12	2025-04-19 02:30:12	0	\N
79	Bakeries & Pastries	مخابز و معجنات	1	74	2025-04-19 02:31:04	2025-04-19 02:31:04	0	\N
80	Desserts	حلويات	1	74	2025-04-19 02:31:39	2025-04-19 02:31:39	0	\N
82	Event Halls	صالات المناسبات	1	81	2025-04-19 02:36:43	2025-04-19 02:36:43	0	\N
31	Hire Talent	باحثين عن وظائف	1	4	2025-04-09 08:22:05	2025-04-19 02:45:01	0	\N
54	Legal Services	خدمات قانونية و معاملات	1	50	2025-04-10 06:41:35	2025-04-19 12:34:22	0	\N
55	Cleaning Services	خدمات التنظيف	1	50	2025-04-10 06:42:25	2025-04-19 12:35:49	0	\N
60	Construction and cladding services	خدمات البناء و الاكساء	1	50	2025-04-10 06:45:08	2025-04-19 12:38:20	0	\N
59	Graduation Projects Services	خدمات مشاريع التخرج	1	50	2025-04-10 06:44:25	2025-04-19 12:38:52	0	\N
147	For Men	رجالي	1	145	2025-04-19 13:31:30	2025-04-19 13:35:13	0	\N
151	Kid's Clothing	ملابس اطفال	1	148	2025-04-19 13:46:14	2025-04-19 13:46:14	0	\N
149	Women's Clothing	البسة نسائية	1	146	2025-04-19 13:32:39	2025-04-19 13:41:05	0	\N
153	Men's Accessories	إكسسوارات رجالية	1	147	2025-04-19 13:49:38	2025-04-19 13:49:38	0	\N
34	Motors	سيارات و قطع غيار	1	\N	2025-04-10 05:45:15	2025-04-23 06:42:24	0	rNATG3nEOxV6Jx3R6QpVDiMp80V7fI0B1MJwWHkA.png
83	Wedding & Event Planning	خدمات تنظيم الاعراس و المناسبات	1	81	2025-04-19 02:38:17	2025-04-19 02:38:17	0	\N
84	Event Photography	تصوير و مونتاج الحفلات	1	81	2025-04-19 02:39:21	2025-04-19 02:39:21	0	\N
85	Wedding Dresses	فساتين أعراس	1	81	2025-04-19 02:40:13	2025-04-19 02:40:13	0	\N
86	Flower Bouquets	باقات زهور و تنسيق	1	81	2025-04-19 02:41:11	2025-04-19 02:41:11	0	\N
87	Occasion Gifts	هدايا للمناسبات	1	81	2025-04-19 02:42:13	2025-04-19 02:42:13	0	\N
88	Hotels Offer	عروض الفنادق	1	8	2025-04-19 02:56:25	2025-04-19 02:56:25	0	\N
89	Solar & Sustainable Energy	الطاقة الشمسية و المستدامة	1	50	2025-04-19 12:19:24	2025-04-19 12:19:24	0	\N
90	Auto Mechanic Repair	تصليح ميكانيك السيارات	1	51	2025-04-19 12:21:29	2025-04-19 12:21:29	0	\N
91	Air condition & Electrical Repairing	صيانة الكهرباء و التكيف	1	51	2025-04-19 12:22:07	2025-04-19 12:22:07	0	\N
92	Auto Body Repair	سمكري سيارات	1	51	2025-04-19 12:23:31	2025-04-19 12:23:31	0	\N
93	Tyres & Oil Services	خدمة الاطارات و تغير الزيت	1	51	2025-04-19 12:24:46	2025-04-19 12:24:46	0	\N
94	Car Wash	غسيل سيارات	1	51	2025-04-19 12:26:02	2025-04-19 12:26:02	0	\N
95	General Maintenance	صيانة منازل عام	1	52	2025-04-19 12:28:06	2025-04-19 12:28:06	0	\N
96	Electricians	كهرباء منازل	1	52	2025-04-19 12:29:29	2025-04-19 12:29:29	0	\N
97	Painters	دهانات منازل	1	52	2025-04-19 12:30:07	2025-04-19 12:30:07	0	\N
98	Curtain Repair & installation	تركيب و صيانة الستائر	1	52	2025-04-19 12:31:16	2025-04-19 12:31:16	0	\N
99	Carpet & Curtain Washing	غسيل سجاد و ستائر	1	52	2025-04-19 12:31:56	2025-04-19 12:31:56	0	\N
100	Device maintenance	صيانة الاجهزة	1	50	2025-04-19 12:33:40	2025-04-19 12:33:40	0	\N
101	Consultancy Services	خدمات استشارية	1	50	2025-04-19 12:35:16	2025-04-19 12:35:16	0	\N
102	Fitness & Sports Trainer	خدمات لياقة و تدريب رياضي	1	50	2025-04-19 12:36:56	2025-04-19 12:36:56	0	\N
103	Sewing & Embroidery	خياطه و تطريز	1	50	2025-04-19 12:40:01	2025-04-19 12:40:01	0	\N
104	Carpentry & Upholstery	نجارة و تنجيد	1	50	2025-04-19 12:41:21	2025-04-19 12:41:21	0	\N
106	Mobiles & Tablets	موبايلات و تابلت	1	105	2025-04-19 12:43:40	2025-04-19 12:43:40	0	\N
107	Mobiles	موبايلات	1	106	2025-04-19 12:44:19	2025-04-19 12:44:19	0	\N
108	Tablets	تابلت	1	106	2025-04-19 12:45:03	2025-04-19 12:45:03	0	\N
109	Mobile & Tablet Accessories	اكسسوارات موبايل و تابلت	1	106	2025-04-19 12:46:06	2025-04-19 12:46:06	0	\N
110	Electronics	أجهزة الكترونية	1	105	2025-04-19 12:47:38	2025-04-19 12:47:38	0	\N
112	TV's	تلفزيونات	1	111	2025-04-19 12:49:21	2025-04-19 12:49:21	0	\N
113	Audio	صوتيات منزلية	1	111	2025-04-19 12:49:52	2025-04-19 12:49:52	0	\N
114	Receivers	ريسيفرات	1	111	2025-04-19 12:50:24	2025-04-19 12:50:24	0	\N
115	Computer & Accessories	كمبيوتر و اكسسوارات	1	105	2025-04-19 12:51:31	2025-04-19 12:51:31	0	\N
116	Computer	كمبيوتر	1	115	2025-04-19 12:52:00	2025-04-19 12:52:00	0	\N
117	laptop	لاب توب	1	115	2025-04-19 12:52:36	2025-04-19 12:52:36	0	\N
118	Computer Accessories & Spare Parts	أكسسوارات و قطع غيار كمبيوتر	1	115	2025-04-19 12:53:37	2025-04-19 12:53:37	0	\N
119	Mobile Packages	باقات اتصالات	1	106	2025-04-19 12:55:23	2025-04-19 12:55:23	0	\N
120	Home Appliances	أجهزة منزلية	1	105	2025-04-19 12:58:17	2025-04-19 12:58:17	0	\N
121	Refrigerators & Freezers	برادات و فريزرات	1	120	2025-04-19 12:59:02	2025-04-19 12:59:02	0	\N
122	Ovens & Microwave	أفران غاز و مايكروويف	1	120	2025-04-19 12:59:30	2025-04-19 12:59:30	0	\N
123	Washing Machines	غسالات	1	120	2025-04-19 13:00:58	2025-04-19 13:00:58	0	\N
124	Dishwashers	غسالات صحون	1	120	2025-04-19 13:01:37	2025-04-19 13:01:37	0	\N
125	Coolers	مبردات مياه	1	120	2025-04-19 13:02:10	2025-04-19 13:02:10	0	\N
126	Ac & Fans	مكيفات و مراوح	1	120	2025-04-19 13:02:48	2025-04-19 13:02:48	0	\N
127	Vacuum	مكانس كهربائية	1	120	2025-04-19 13:03:17	2025-04-19 13:03:17	0	\N
128	Other Home Appliances	أجهزة منزلية اخرى	1	120	2025-04-19 13:03:51	2025-04-19 13:03:51	0	\N
129	Cameras & Accessories	كاميرات تصوير و اكسسوارات	1	111	2025-04-19 13:09:22	2025-04-19 13:11:35	0	\N
111	TV & Audio & Cameras	تلفيزيونات و صوتيات و كاميرات	1	110	2025-04-19 12:48:31	2025-04-19 13:12:16	0	\N
130	Security Cameras	كاميرات مراقبة	1	111	2025-04-19 13:15:19	2025-04-19 13:15:19	0	\N
131	Telescope	مناظير	1	111	2025-04-19 13:15:56	2025-04-19 13:15:56	0	\N
132	Video Games & Devices	أجهزة و ألعاب فيديو	1	115	2025-04-19 13:17:09	2025-04-19 13:17:09	0	\N
133	Furniture & Decoration	مفروشات و ديكور	1	105	2025-04-19 13:19:56	2025-04-19 13:19:56	0	\N
134	Bedroom	غرف نوم	1	133	2025-04-19 13:20:26	2025-04-19 13:20:26	0	\N
135	living Room	غرف معيشة	1	133	2025-04-19 13:21:00	2025-04-19 13:21:00	0	\N
136	Dining Room	غرف سفرة	1	133	2025-04-19 13:21:31	2025-04-19 13:21:31	0	\N
137	Bathroom Accessories	إكسسوارات الحمام	1	133	2025-04-19 13:22:03	2025-04-19 13:22:03	0	\N
138	Kitchen & Tools	المطبخ و أدواته	1	133	2025-04-19 13:22:53	2025-04-19 13:22:53	0	\N
139	Carpets &  Curtains	سجاد و ستائر	1	133	2025-04-19 13:23:50	2025-04-19 13:23:50	0	\N
140	lighting	إضاءة	1	133	2025-04-19 13:24:20	2025-04-19 13:24:20	0	\N
141	Garden & Outdoor Areas	الحديقة و المفروشات الخارجية	1	133	2025-04-19 13:25:46	2025-04-19 13:25:46	0	\N
142	Other Furniture & décor	أثاث متعدد و ديكور	1	133	2025-04-19 13:26:22	2025-04-19 13:26:22	0	\N
143	Sports Equipment	أجهزة و ادوات رياضية	1	105	2025-04-19 13:27:43	2025-04-19 13:27:43	0	\N
144	Office Furniture	مفروشات مكتبية	1	133	2025-04-19 13:29:12	2025-04-19 13:29:12	0	\N
145	Fashion	الموضة و الاناقة	1	105	2025-04-19 13:30:21	2025-04-19 13:30:21	0	\N
155	Tools & Industrial Machines	أدوات و آلات صناعية	1	105	2025-04-19 13:54:08	2025-04-19 13:54:08	0	\N
157	Cosmetics	مستحضرات التجميل	1	156	2025-04-19 13:56:37	2025-04-19 13:56:37	0	\N
158	Perfumes	العطور	1	156	2025-04-19 13:57:22	2025-04-19 13:57:22	0	\N
159	Hair Care Products	مستحضرات العناية بالشعر	1	156	2025-04-19 13:58:05	2025-04-19 13:58:05	0	\N
160	skin Care Products	مستحضرات العناية بالبشرة	1	156	2025-04-19 13:58:42	2025-04-19 13:58:42	0	\N
161	Nutritional Supplements & Protein	المكملات الغذائية و البروتين	1	156	2025-04-19 13:59:23	2025-04-19 13:59:23	0	\N
162	Elderly Care Product	منتجات العناية بكبار السن	1	156	2025-04-19 14:00:52	2025-04-19 14:00:52	0	\N
156	Personal Care Products	مستحضرات عناية شخصية	1	\N	2025-04-19 13:56:03	2025-04-22 11:17:19	0	zhHlxyKPnzEKoeqtD0HCP8NGBB1UBErO7phAtz4k.png
105	Classified	إعلانات مبوبة	1	\N	2025-04-19 12:42:43	2025-04-23 06:43:31	0	dIiLVeqxjrDsk1GdZq36VkANV1tcS3VHMUESrI9W.png
50	Services	خدمات	1	\N	2025-04-10 06:37:38	2025-04-23 07:23:33	0	TMdUGXwdu564JK3GwL9hW8BIvKX1dOpXZklWi0Bi.png
\.


--
-- Data for Name: category_atributes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.category_atributes (id, category_id, name, name_ar, status, created_at, updated_at, deleted_at) FROM stdin;
2	5	Regional Specs	المواصفات الإقليمية	1	2025-03-18 11:24:06	2025-03-18 11:24:06	\N
3	5	Year	سنة	1	2025-03-18 11:24:45	2025-03-18 11:24:45	\N
4	5	Body Type	نوع الجسم	1	2025-03-18 11:25:27	2025-03-18 11:25:27	\N
5	5	Insurance	تأمين	1	2025-03-18 11:26:47	2025-03-18 11:26:47	\N
6	5	Fuel Type	نوع الوقود	1	2025-03-18 11:28:06	2025-03-20 08:09:34	\N
7	5	Exterior Color	اللون الخارجي	1	2025-03-20 08:41:06	2025-03-20 08:41:06	\N
13	5	sdfs	sdfd	1	2025-03-25 04:18:03	2025-03-25 04:18:03	\N
8	14	Property Type	Property Type	1	2025-03-20 09:33:07	2025-04-10 06:51:42	\N
9	14	Housing Category	Housing Category	1	2025-03-20 09:37:22	2025-04-10 06:53:01	\N
10	14	Is it furnished?	Is it furnished?	1	2025-03-20 09:43:55	2025-04-10 06:53:35	\N
11	14	Facilities	Facilities	1	2025-03-20 09:49:54	2025-04-10 06:58:36	\N
14	14	Listed by	Listed by	1	2025-04-10 07:25:16	2025-04-10 07:25:16	\N
15	14	Rent is Paid	Rent is Paid	1	2025-04-10 07:25:49	2025-04-10 07:25:49	\N
16	5	Interior Color	اللون الداخلي	1	2025-04-17 06:22:29	2025-04-17 06:22:29	\N
17	5	Warranty	الضمان	1	2025-04-17 06:23:03	2025-04-17 06:23:03	\N
18	5	Body Condition	حالة الجسم	1	2025-04-17 06:23:34	2025-04-17 06:23:34	\N
19	5	Mechanical Condition	الحالة الميكانيكية	1	2025-04-17 06:24:26	2025-04-17 06:24:26	\N
1	5	Make & Model	الماركة والموديل	1	2025-03-18 05:44:13	2025-04-18 17:44:48	\N
20	10	Can start	dd	1	2025-04-18 21:34:34	2025-04-18 21:34:34	\N
21	15	Residential	سكني	1	2025-04-19 17:25:32	2025-04-19 17:25:32	\N
22	15	Commercial	تجاري	1	2025-04-19 17:26:44	2025-04-19 17:26:44	\N
23	15	Land	أرض	1	2025-04-19 17:27:44	2025-04-19 17:27:44	\N
24	15	Multiple Units	وحدات متعددة	1	2025-04-19 17:28:17	2025-04-19 17:28:17	\N
25	15	Property Type	نوع العقار	1	2025-04-19 18:44:36	2025-04-19 18:44:36	\N
26	15	Category	باب	1	2025-04-19 18:46:32	2025-04-19 18:46:32	\N
27	14	Residential type	Residential type	1	2025-04-22 10:03:49	2025-04-22 10:03:49	\N
28	14	Commercial Categories	Commercial Categories	1	2025-04-22 11:13:04	2025-04-22 11:13:04	\N
29	14	Property Status	حالة العقار	1	2025-04-24 08:29:51	2025-04-24 08:29:51	\N
30	14	Floor	الطابق	1	2025-04-24 08:30:43	2025-04-24 08:30:43	\N
31	14	Property directions	اتجاهات العقار	1	2025-04-24 08:31:23	2025-04-24 08:31:23	\N
32	14	Bedrooms	غرف النوم	1	2025-04-24 08:32:15	2025-04-24 08:32:15	\N
33	14	Bathrooms	الحمّامات	1	2025-04-24 08:32:40	2025-04-24 08:32:40	\N
34	14	Area/Size	المساحة	1	2025-04-24 08:33:24	2025-04-24 08:33:24	\N
35	14	Near By	بالقرب من	1	2025-04-24 08:35:37	2025-04-24 08:35:37	\N
36	14	Currency	العملة	1	2025-04-24 08:37:13	2025-04-24 08:37:13	\N
37	14	Price Type	نوع السعر	1	2025-04-24 08:37:54	2025-04-24 08:37:54	\N
\.


--
-- Data for Name: category_atributes_value; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.category_atributes_value (id, category_id, attribute_id, name, name_ar, status, created_at, updated_at, deleted_at) FROM stdin;
1	5	1	Honda Civic X Turbo RS 1.5	هوندا سيفيك X توربو RS 1.5	1	2025-03-18 05:51:53	2025-03-18 11:19:53	\N
2	5	1	Toyota Corolla Altis 1.8 Grande	تويوتا كورولا ألتيس 1.8 غراندي	1	2025-03-18 11:18:57	2025-03-18 11:18:57	\N
3	5	2	GCC Specs	GCC Specs	1	2025-03-18 11:28:56	2025-03-18 11:28:56	\N
5	5	3	2025	2025	1	2025-03-18 11:30:13	2025-03-18 11:30:13	\N
6	5	3	2024	2024	1	2025-03-18 11:30:36	2025-03-18 11:30:36	\N
7	5	4	Sedan	سيدان	1	2025-03-18 11:31:10	2025-03-18 11:31:10	\N
8	5	4	SUV	سيارات الدفع الرباعي	1	2025-03-18 11:31:37	2025-03-18 11:31:37	\N
9	5	5	Yes	نعم	1	2025-03-18 11:32:28	2025-03-18 11:32:28	\N
10	5	5	No	لا	1	2025-03-18 11:32:59	2025-03-18 11:32:59	\N
11	5	6	Petrol	بنزين	1	2025-03-18 11:34:39	2025-03-18 11:34:39	\N
12	5	6	Diesel	ديزل	1	2025-03-18 11:35:21	2025-03-18 11:35:21	\N
13	5	1	Toyota Supra	تويوتا سوبرا	1	2025-03-19 15:06:31	2025-03-19 15:06:31	\N
25	5	1	Aston Martin DB9	Aston Martin DB9	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
26	5	1	Aston Martin Vantage	Aston Martin Vantage	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
27	5	1	Audi A1	Audi A1	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
28	5	1	Audi A3	Audi A3	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
29	5	1	Audi A5	Audi A5	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
30	5	1	Audi A6	Audi A6	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
31	5	1	Audi A7	Audi A7	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
32	5	1	Audi A8	Audi A8	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
33	5	1	Audi Audi TT	Audi Audi TT	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
34	5	1	Audi Q3	Audi Q3	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
35	5	1	Audi Q5	Audi Q5	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
36	5	1	Audi Q7	Audi Q7	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
37	5	1	Audi R8	Audi R8	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
38	5	1	Audi RS4	Audi RS4	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
39	5	1	Audi RS5	Audi RS5	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
40	5	1	Audi RS6	Audi RS6	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
41	5	1	Audi RS7	Audi RS7	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
42	5	1	Audi S3	Audi S3	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
43	5	1	Audi S5	Audi S5	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
44	5	1	Audi S6	Audi S6	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
45	5	1	Audi S7	Audi S7	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
46	5	1	Audi S8	Audi S8	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
47	5	1	Bentley Arnage	Bentley Arnage	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
48	5	1	Bentley Continental	Bentley Continental	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
49	5	1	Bentley Continental GT	Bentley Continental GT	1	2025-04-07 15:01:42	2025-04-07 15:01:42	\N
50	5	1	Bentley Continental GTC	Bentley Continental GTC	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
51	5	1	Bentley Flying Spur	Bentley Flying Spur	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
52	5	1	Bentley Mulsanne	Bentley Mulsanne	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
53	5	1	BMW 1-Series	BMW 1-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
54	5	1	BMW 2-Series	BMW 2-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
55	5	1	Alfa Romeo 146	Alfa Romeo 146	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
56	5	1	Alfa Romeo 147	Alfa Romeo 147	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
57	5	1	Alfa Romeo 156	Alfa Romeo 156	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
58	5	1	Alfa Romeo 166	Alfa Romeo 166	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
59	5	1	Alfa Romeo 33	Alfa Romeo 33	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
60	5	1	Alfa Romeo 4C	Alfa Romeo 4C	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
61	5	1	Alfa Romeo 8C Competizione	Alfa Romeo 8C Competizione	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
62	5	1	Alfa Romeo 8C Competizione Coupe	Alfa Romeo 8C Competizione Coupe	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
63	5	1	Alfa Romeo 8C Spider	Alfa Romeo 8C Spider	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
64	5	1	Alfa Romeo 90	Alfa Romeo 90	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
65	5	1	Baic A1	Baic A1	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
66	5	1	Audi A2	Audi A2	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
67	5	1	Audi A3 E-Tron	Audi A3 E-Tron	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
68	5	1	Audi A4 All Road Quattro	Audi A4 All Road Quattro	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
69	5	1	Audi A4 All Road Quattro	Audi A4 All Road Quattro	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
70	5	1	Baic A5	Baic A5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
71	5	1	Audi A6 All Road Quattro	Audi A6 All Road Quattro	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
72	5	1	Bentley Azure	Bentley Azure	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
73	5	1	Alpina B10	Alpina B10	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
74	5	1	Alpina B3	Alpina B3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
75	5	1	Alpina B3 (2007)	Alpina B3 (2007)	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
76	5	1	Alpina B3 (2013)	Alpina B3 (2013)	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
77	5	1	Alpina B4	Alpina B4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
17	14	8	Land	أرض	1	2025-03-20 10:58:14	2025-04-22 09:53:06	\N
15	14	8	Commercial	تجاري	1	2025-03-20 10:57:32	2025-04-22 09:52:30	\N
19	14	10	Furnished	Furnished	1	2025-03-20 11:00:06	2025-04-10 06:57:03	\N
20	14	10	Unfurnished	Unfurnished	1	2025-03-20 11:00:28	2025-04-10 06:57:37	\N
21	14	11	Maids Room	Maids Room	1	2025-03-20 11:00:54	2025-04-10 06:59:18	\N
22	14	11	Private Pool	Private Pool	1	2025-03-20 11:01:19	2025-04-10 06:59:35	\N
23	14	11	Balcony	Balcony	1	2025-03-20 11:01:40	2025-04-10 06:59:49	\N
24	14	11	Private Garden	Private Garden	1	2025-03-20 11:02:00	2025-04-10 07:00:02	\N
4	5	2	American Spec	المواصفات الاستوائية	1	2025-03-18 11:29:32	2025-04-10 08:41:23	\N
16	14	8	Farm	مزرعة	1	2025-03-20 10:57:52	2025-04-22 09:52:08	\N
78	5	1	Alpina B5	Alpina B5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
79	5	1	Alpina B5 (2010)	Alpina B5 (2010)	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
80	5	1	Alpina B6	Alpina B6	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
81	5	1	Alpina B6 (2012)	Alpina B6 (2012)	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
82	5	1	Alpina B7	Alpina B7	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
83	5	1	Alpina B7 (2009)	Alpina B7 (2009)	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
84	5	1	Alfa Romeo Brera	Alfa Romeo Brera	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
85	5	1	Bentley Brooklands	Bentley Brooklands	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
86	5	1	Bentley Continental Flying Spur	Bentley Continental Flying Spur	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
87	5	1	Bentley Continental Super Sports	Bentley Continental Super Sports	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
88	5	1	Alpina D10	Alpina D10	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
89	5	1	Aston Martin Cygnet	Aston Martin Cygnet	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
90	5	1	Alpina D3	Alpina D3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
91	5	1	Alpina D3 (2013)	Alpina D3 (2013)	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
92	5	1	Alpina D4	Alpina D4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
93	5	1	Alpina D5	Alpina D5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
94	5	1	Aston Martin DB7	Aston Martin DB7	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
95	5	1	Aston Martin DBS	Aston Martin DBS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
96	5	1	Ashok Falcon	Ashok Falcon	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
97	5	1	Artega GT	Artega GT	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
98	5	1	Alfa Romeo GT	Alfa Romeo GT	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
99	5	1	Alfa Romeo GTV	Alfa Romeo GTV	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
100	5	1	Ashok Leyland	Ashok Leyland	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
101	5	1	Alfa Romeo Mito	Alfa Romeo Mito	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
102	5	1	Bentley New Continental GT	Bentley New Continental GT	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
103	5	1	Bentley New Continental GTC	Bentley New Continental GTC	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
104	5	1	Aston Martin ONE-77	Aston Martin ONE-77	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
105	5	1	Alpina Roadster	Alpina Roadster	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
106	5	1	Alpina Roadster S	Alpina Roadster S	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
107	5	1	Audi RS3	Audi RS3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
108	5	1	Audi RS8	Audi RS8	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
109	5	1	Audi S4	Audi S4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
110	5	1	Alfa Romeo Spider	Alfa Romeo Spider	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
111	5	1	Audi TT	Audi TT	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
112	5	1	Audi TTS	Audi TTS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
113	5	1	Bentley Turbo	Bentley Turbo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
114	5	1	Aston Martin V12 Vantage	Aston Martin V12 Vantage	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
115	5	1	Aston Martin V8 Vantage	Aston Martin V8 Vantage	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
116	5	1	Aston Martin Virage	Aston Martin Virage	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
117	5	1	Alpina XD3	Alpina XD3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
118	5	1	Aston Martin Zagato	Aston Martin Zagato	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
119	5	1	Aston Martin Rapide	Aston Martin Rapide	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
120	5	1	Aston Martin Vanquish	Aston Martin Vanquish	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
121	5	1	BMW 3-Series	BMW 3-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
122	5	1	BMW 4-Series	BMW 4-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
123	5	1	BMW 5-Series	BMW 5-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
124	5	1	BMW 6-Series	BMW 6-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
125	5	1	BMW 7-Series	BMW 7-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
126	5	1	BMW M2	BMW M2	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
127	5	1	BMW M3	BMW M3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
128	5	1	BMW M4	BMW M4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
129	5	1	BMW M5	BMW M5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
130	5	1	BMW M6	BMW M6	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
131	5	1	BMW X 4	BMW X 4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
132	5	1	BMW X1	BMW X1	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
133	5	1	BMW X3	BMW X3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
134	5	1	BMW X4	BMW X4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
135	5	1	BMW X5	BMW X5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
136	5	1	BMW X5 M	BMW X5 M	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
137	5	1	BMW X6	BMW X6	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
138	5	1	BMW X6 M	BMW X6 M	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
139	5	1	Cadillac ATS	Cadillac ATS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
140	5	1	Cadillac ATS-V	Cadillac ATS-V	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
141	5	1	Cadillac CTS	Cadillac CTS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
142	5	1	Cadillac CTS-V	Cadillac CTS-V	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
143	5	1	Cadillac Escalade	Cadillac Escalade	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
144	5	1	Cadillac XTS	Cadillac XTS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
145	5	1	Chevrolet Camaro	Chevrolet Camaro	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
146	5	1	Chevrolet Caprice	Chevrolet Caprice	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
147	5	1	Chevrolet Captiva	Chevrolet Captiva	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
148	5	1	BMW 2er Gran Tourer	BMW 2er Gran Tourer	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
149	5	1	BMW 3er GT	BMW 3er GT	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
150	5	1	BMW 5er GT	BMW 5er GT	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
151	5	1	Cadillac 62	Cadillac 62	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
152	5	1	BMW 8-Series	BMW 8-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
153	5	1	Chery A11 WindCloud	Chery A11 WindCloud	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
154	5	1	Chery Arrizo 7	Chery Arrizo 7	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
155	5	1	Chevrolet Astro	Chevrolet Astro	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
156	5	1	Chevrolet Avalanche	Chevrolet Avalanche	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
157	5	1	Chevrolet Aveo	Chevrolet Aveo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
158	5	1	Chevrolet Aveo5	Chevrolet Aveo5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
159	5	1	Chevrolet Barina	Chevrolet Barina	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
160	5	1	Chevrolet Blazer	Chevrolet Blazer	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
161	5	1	Cadillac BLS	Cadillac BLS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
162	5	1	Brilliance BS4	Brilliance BS4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
163	5	1	Brilliance BS6	Brilliance BS6	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
164	5	1	Chevrolet Caravan	Chevrolet Caravan	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
165	5	1	Cadillac Catera	Cadillac Catera	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
166	5	1	Chevrolet Cavalier	Chevrolet Cavalier	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
167	5	1	Buick Century	Buick Century	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
168	5	1	Caterham Classic 7	Caterham Classic 7	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
169	5	1	Changan CS35	Changan CS35	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
170	5	1	Changan CS75	Changan CS75	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
171	5	1	Cadillac Deville	Cadillac Deville	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
172	5	1	Cadillac DTS	Cadillac DTS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
173	5	1	Chery E5	Chery E5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
174	5	1	Chery E8	Chery E8	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
175	5	1	Changan EADO	Changan EADO	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
176	5	1	Cadillac Eldorado	Cadillac Eldorado	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
177	5	1	Buick Enclave	Buick Enclave	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
178	5	1	Cadillac ESV	Cadillac ESV	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
179	5	1	BYD F3	BYD F3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
180	5	1	BYD F3-AT	BYD F3-AT	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
181	5	1	BYD F3R	BYD F3R	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
182	5	1	BYD F6	BYD F6	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
183	5	1	Brilliance FSV	Brilliance FSV	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
184	5	1	Brilliance FRV Cross	Brilliance FRV Cross	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
185	5	1	Brilliance FRV	Brilliance FRV	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
186	5	1	Bugatti Grand Sport	Bugatti Grand Sport	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
187	5	1	Brilliance H530	Brilliance H530	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
188	5	1	BMW I3	BMW I3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
189	5	1	BMW I8	BMW I8	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
190	5	1	Brilliance Jinbei Hammer Head	Brilliance Jinbei Hammer Head	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
191	5	1	Buick Lacrosse	Buick Lacrosse	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
192	5	1	Buick Lesabre	Buick Lesabre	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
193	5	1	Buick Park Avenue	Buick Park Avenue	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
194	5	1	Buick Rainier	Buick Rainier	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
195	5	1	Buick Regal	Buick Regal	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
196	5	1	Chery S11 QQ	Chery S11 QQ	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
197	5	1	BYD S6	BYD S6	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
198	5	1	Caterham Seven	Caterham Seven	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
199	5	1	Cadillac Seville	Cadillac Seville	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
200	5	1	Cadillac SLS	Cadillac SLS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
201	5	1	Caterham Super 7	Caterham Super 7	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
202	5	1	Cadillac STS	Cadillac STS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
203	5	1	Cadillac STS-V	Cadillac STS-V	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
204	5	1	Buick Super-Series	Buick Super-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
205	5	1	Bugatti Super Sport	Bugatti Super Sport	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
206	5	1	Chery T11 Tiggo	Chery T11 Tiggo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
207	5	1	Chery Tiggo 5	Chery Tiggo 5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
208	5	1	Chery Tiggo	Chery Tiggo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
209	5	1	Brilliance V5	Brilliance V5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
210	5	1	Chery V5 Crossover	Chery V5 Crossover	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
211	5	1	Bugatti Veyron	Bugatti Veyron	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
212	5	1	Bugatti Vitesse	Bugatti Vitesse	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
213	5	1	Cadillac XLR	Cadillac XLR	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
214	5	1	Cadillac XLR-V	Cadillac XLR-V	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
215	5	1	BMW Z3	BMW Z3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
216	5	1	BMW Z4	BMW Z4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
217	5	1	BMW Z8	BMW Z8	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
218	5	1	Chevrolet Corvette	Chevrolet Corvette	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
219	5	1	Chevrolet Cruze	Chevrolet Cruze	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
220	5	1	Chevrolet Impala	Chevrolet Impala	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
221	5	1	Chevrolet Malibu	Chevrolet Malibu	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
222	5	1	Chevrolet Silverado	Chevrolet Silverado	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
223	5	1	Chevrolet Sonic	Chevrolet Sonic	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
224	5	1	Chevrolet Spark	Chevrolet Spark	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
225	5	1	Chevrolet Suburban	Chevrolet Suburban	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
226	5	1	Chevrolet Tahoe	Chevrolet Tahoe	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
227	5	1	Chevrolet Traverse	Chevrolet Traverse	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
228	5	1	Chevrolet Trax	Chevrolet Trax	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
229	5	1	Chrysler 200	Chrysler 200	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
230	5	1	Chrysler 200C	Chrysler 200C	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
231	5	1	Chrysler 300C	Chrysler 300C	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
232	5	1	Chrysler 300M	Chrysler 300M	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
387	5	1	Ferrari LA	Ferrari LA	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
233	5	1	Chrysler 300 M	Chrysler 300 M	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
234	5	1	Chrysler Aspen	Chrysler Aspen	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
235	5	1	Chrysler Avenger	Chrysler Avenger	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
236	5	1	Citroen AX	Citroen AX	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
237	5	1	Citroen Axel	Citroen Axel	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
238	5	1	Citroen Berlingo PKW	Citroen Berlingo PKW	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
239	5	1	Citroen Berlingo	Citroen Berlingo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
240	5	1	Citroen C1	Citroen C1	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
241	5	1	Citroen C2	Citroen C2	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
242	5	1	Citroen C3	Citroen C3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
243	5	1	Citroen C3 Picasso	Citroen C3 Picasso	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
244	5	1	Citroen C4	Citroen C4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
245	5	1	Citroen C4 AirCross	Citroen C4 AirCross	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
246	5	1	Citroen C4 Cactus	Citroen C4 Cactus	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
247	5	1	Citroen C4 Picasso	Citroen C4 Picasso	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
248	5	1	Citroen C5	Citroen C5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
249	5	1	Citroen C6	Citroen C6	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
250	5	1	Citroen C-Crosser	Citroen C-Crosser	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
251	5	1	China Automobile CEO	China Automobile CEO	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
252	5	1	Citroen C-Elysee	Citroen C-Elysee	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
253	5	1	Chrysler Centura	Chrysler Centura	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
254	5	1	Chrysler Charger	Chrysler Charger	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
255	5	1	Chevrolet Chevy	Chevrolet Chevy	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
256	5	1	Chevrolet Cobalt	Chevrolet Cobalt	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
257	5	1	Chevrolet Colorado	Chevrolet Colorado	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
258	5	1	Chrysler Concorde	Chrysler Concorde	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
259	5	1	Chrysler Cordoba	Chrysler Cordoba	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
260	5	1	Chrysler Crossfire	Chrysler Crossfire	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
261	5	1	Chevrolet CSV	Chevrolet CSV	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
262	5	1	Citroen C-Zero	Citroen C-Zero	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
263	5	1	Dacia Dokker	Dacia Dokker	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
264	5	1	Citroen DS3	Citroen DS3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
265	5	1	Citroen DS4	Citroen DS4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
266	5	1	Citroen DS5	Citroen DS5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
267	5	1	Chevrolet Elcamino	Chevrolet Elcamino	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
268	5	1	Chevrolet Epica	Chevrolet Epica	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
269	5	1	Chevrolet Equinox	Chevrolet Equinox	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
270	5	1	Chevrolet Evanda	Chevrolet Evanda	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
271	5	1	Chevrolet Explorer	Chevrolet Explorer	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
272	5	1	Chevrolet Express	Chevrolet Express	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
273	5	1	Chrysler Grand Voyager	Chrysler Grand Voyager	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
274	5	1	Chevrolet HHR	Chevrolet HHR	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
275	5	1	Chrysler Intrepid	Chrysler Intrepid	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
276	5	1	Chevrolet Kalos	Chevrolet Kalos	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
277	5	1	Chevrolet Lacetti	Chevrolet Lacetti	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
278	5	1	Chrysler Lebaron	Chrysler Lebaron	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
279	5	1	Chrysler LHS	Chrysler LHS	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
280	5	1	Dacia Lodgy	Dacia Lodgy	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
281	5	1	Chevrolet Lumina	Chevrolet Lumina	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
282	5	1	Chevrolet Matiz	Chevrolet Matiz	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
283	5	1	Citroen Nemo PKW	Citroen Nemo PKW	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
284	5	1	Chrysler Neon	Chrysler Neon	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
285	5	1	Chrysler Newport	Chrysler Newport	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
286	5	1	Chevrolet Nubira	Chevrolet Nubira	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
287	5	1	Chevrolet Optra	Chevrolet Optra	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
288	5	1	Chevrolet Orlando	Chevrolet Orlando	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
289	5	1	Chrysler Pacifica	Chrysler Pacifica	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
290	5	1	Citroen Picasso	Citroen Picasso	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
291	5	1	Chrysler Pick Up	Chrysler Pick Up	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
292	5	1	Chevrolet Pick Up	Chevrolet Pick Up	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
293	5	1	Citroen Pluriel	Citroen Pluriel	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
294	5	1	Chrysler Prowler	Chrysler Prowler	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
295	5	1	Chrysler PT Cruiser	Chrysler PT Cruiser	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
296	5	1	Chevrolet Rezzo	Chevrolet Rezzo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
297	5	1	Citroen Saxo	Citroen Saxo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
298	5	1	Chrysler Sebring	Chrysler Sebring	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
299	5	1	Chevrolet SSR	Chevrolet SSR	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
300	5	1	Chrysler Stratus	Chrysler Stratus	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
301	5	1	Chevrolet Terrain	Chevrolet Terrain	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
302	5	1	Chrysler Town	Chrysler Town	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
303	5	1	Chevrolet Tracker	Chevrolet Tracker	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
304	5	1	Chevrolet Trans Sport	Chevrolet Trans Sport	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
305	5	1	Chevrolet T-Series	Chevrolet T-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
306	5	1	China Automobile UFO	China Automobile UFO	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
307	5	1	Chevrolet Uplander	Chevrolet Uplander	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
469	5	1	Ford Megastar	Ford Megastar	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
308	5	1	Chevrolet Venture	Chevrolet Venture	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
309	5	1	CMC Veryca	CMC Veryca	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
310	5	1	Chevrolet Volt	Chevrolet Volt	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
311	5	1	Chrysler Voyager	Chrysler Voyager	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
312	5	1	Citroen Xsara	Citroen Xsara	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
313	5	1	Citroen Xsara Picasso	Citroen Xsara Picasso	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
314	5	1	CMC Z7	CMC Z7	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
315	5	1	Daihatsu Materia	Daihatsu Materia	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
316	5	1	Daihatsu Sirion	Daihatsu Sirion	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
317	5	1	Daihatsu Terios	Daihatsu Terios	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
318	5	1	Dodge Challenger	Dodge Challenger	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
319	5	1	Dodge Charger	Dodge Charger	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
320	5	1	Dodge Durango	Dodge Durango	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
321	5	1	Ferrari 488	Ferrari 488	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
322	5	1	Fiat 500	Fiat 500	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
323	5	1	Ferrari 126	Ferrari 126	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
324	5	1	Fiat 127	Fiat 127	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
325	5	1	Fiat 131	Fiat 131	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
326	5	1	Fiat 132	Fiat 132	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
327	5	1	Fiat 133	Fiat 133	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
328	5	1	Fiat 1400	Fiat 1400	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
329	5	1	Ferrari 206	Ferrari 206	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
330	5	1	Ferrari 306	Ferrari 306	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
331	5	1	Ferrari 308	Ferrari 308	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
332	5	1	Ferrari 355	Ferrari 355	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
333	5	1	Ferrari 360	Ferrari 360	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
334	5	1	Ferrari 360 Modena F1	Ferrari 360 Modena F1	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
335	5	1	Ferrari 430	Ferrari 430	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
336	5	1	Ferrari 456	Ferrari 456	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
337	5	1	Ferrari 458	Ferrari 458	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
338	5	1	Fiat 500L	Fiat 500L	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
339	5	1	Ferrari 512	Ferrari 512	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
340	5	1	Ferrari 550 Barchetta	Ferrari 550 Barchetta	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
341	5	1	Ferrari 550 Maranello	Ferrari 550 Maranello	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
342	5	1	Ferrari 575	Ferrari 575	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
343	5	1	Ferrari 575M	Ferrari 575M	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
344	5	1	Ferrari 599	Ferrari 599	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
345	5	1	Ferrari 599 GTB	Ferrari 599 GTB	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
346	5	1	Ferrari 612	Ferrari 612	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
347	5	1	Fiat Abarth	Fiat Abarth	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
348	5	1	Daihatsu Applause	Daihatsu Applause	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
349	5	1	Dodge Avenger	Dodge Avenger	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
350	5	1	Fiat Barchrtta	Fiat Barchrtta	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
351	5	1	Fiat Brava	Fiat Brava	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
352	5	1	Fiat Bravo	Fiat Bravo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
353	5	1	Dodge Caliber	Dodge Caliber	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
354	5	1	Ferrari California	Ferrari California	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
355	5	1	Ferrari California T	Ferrari California T	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
356	5	1	Dodge Caravan	Dodge Caravan	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
357	5	1	Daihatsu Charade	Daihatsu Charade	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
358	5	1	Daewoo Cielo	Daewoo Cielo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
359	5	1	Daihatsu Copen	Daihatsu Copen	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
360	5	1	Fiat Croma	Fiat Croma	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
361	5	1	Eicher Cruiser	Eicher Cruiser	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
362	5	1	Daihatsu Cuore	Daihatsu Cuore	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
363	5	1	Dodge Dakota	Dodge Dakota	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
364	5	1	Dodge Dart	Dodge Dart	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
365	5	1	Daihatsu Deluxe	Daihatsu Deluxe	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
366	5	1	Fiat Doblo	Fiat Doblo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
367	5	1	Fiat Doblo Neu	Fiat Doblo Neu	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
368	5	1	Fiat Ducato	Fiat Ducato	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
369	5	1	Fiat Duna	Fiat Duna	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
370	5	1	Ferrari Enzo	Ferrari Enzo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
371	5	1	Daewoo Espero	Daewoo Espero	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
372	5	1	Daewoo Evanda	Daewoo Evanda	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
373	5	1	Ferrari F12	Ferrari F12	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
374	5	1	Ferrari F40	Ferrari F40	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
375	5	1	Ferrari F430	Ferrari F430	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
376	5	1	Ferrari F50	Ferrari F50	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
377	5	1	Ferrari F575M F1	Ferrari F575M F1	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
378	5	1	Ferrari F575 SuperAmerica	Ferrari F575 SuperAmerica	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
379	5	1	Ferrari FF	Ferrari FF	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
380	5	1	Fiat Fiorino	Fiat Fiorino	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
381	5	1	Fiat Grande Punto	Fiat Grande Punto	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
382	5	1	Daihatsu Gran Max	Daihatsu Gran Max	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
383	5	1	Ferrari GTO	Ferrari GTO	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
384	5	1	Dongfeng H30 Cross	Dongfeng H30 Cross	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
385	5	1	Dodge Journey	Dodge Journey	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
386	5	1	Daewoo Kalos	Daewoo Kalos	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
388	5	1	Daewoo Lacetti	Daewoo Lacetti	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
389	5	1	Daewoo Lanos	Daewoo Lanos	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
390	5	1	Dodge Laramie	Dodge Laramie	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
391	5	1	Daewoo Leganza	Daewoo Leganza	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
392	5	1	Dacia Logan	Dacia Logan	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
393	5	1	Dacia Logan MCV	Dacia Logan MCV	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
394	5	1	Dodge Magnum	Dodge Magnum	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
395	5	1	Daewoo Matiz	Daewoo Matiz	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
396	5	1	Daihatsu Mira	Daihatsu Mira	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
397	5	1	Daewoo Musso	Daewoo Musso	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
398	5	1	Dodge Neon	Dodge Neon	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
399	5	1	Daewoo Nova	Daewoo Nova	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
400	5	1	Daewoo Nubira	Daewoo Nubira	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
401	5	1	Daewoo Racer	Daewoo Racer	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
402	5	1	Dodge Ram	Dodge Ram	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
403	5	1	Daewoo Rexton	Daewoo Rexton	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
404	5	1	Daewoo Rezzo	Daewoo Rezzo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
405	5	1	Daihatsu Rocky	Daihatsu Rocky	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
406	5	1	Dongfeng S30	Dongfeng S30	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
407	5	1	Dacia Sandero	Dacia Sandero	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
408	5	1	Ferrari SuperAmerica	Ferrari SuperAmerica	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
409	5	1	Daewoo Tacuma	Daewoo Tacuma	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
410	5	1	Daihatsu Trevis	Daihatsu Trevis	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
411	5	1	Dodge Viper	Dodge Viper	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
412	5	1	Daihatsu YRV	Daihatsu YRV	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
413	5	1	Fiat LINEA	Fiat LINEA	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
414	5	1	Ford Eco Sport	Ford Eco Sport	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
415	5	1	Ford Edge	Ford Edge	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
416	5	1	Ford Escape	Ford Escape	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
417	5	1	Ford Expedition	Ford Expedition	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
418	5	1	Ford Explorer	Ford Explorer	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
419	5	1	Ford F150	Ford F150	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
420	5	1	Ford Fiesta	Ford Fiesta	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
421	5	1	Ford Figo	Ford Figo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
422	5	1	Ford Flex	Ford Flex	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
423	5	1	Ford Focus	Ford Focus	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
424	5	1	Ford Fusion	Ford Fusion	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
425	5	1	Ford Mustang	Ford Mustang	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
426	5	1	Ford Ranger	Ford Ranger	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
427	5	1	Ford Taurus	Ford Taurus	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
428	5	1	GMC Acadia	GMC Acadia	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
429	5	1	GMC Sierra 1500	GMC Sierra 1500	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
430	5	1	GMC Yukon	GMC Yukon	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
431	5	1	Ford B-Max	Ford B-Max	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
432	5	1	Ford Bronco	Ford Bronco	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
433	5	1	GMC Canyon	GMC Canyon	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
434	5	1	Geely CK	Geely CK	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
435	5	1	Ford C-Max	Ford C-Max	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
436	5	1	Ford Contour	Ford Contour	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
437	5	1	Ford Crown Victoria	Ford Crown Victoria	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
438	5	1	Great Wall Deer	Great Wall Deer	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
439	5	1	GMC Denali	GMC Denali	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
440	5	1	Geely Emgrand 8	Geely Emgrand 8	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
441	5	1	Geely Emgrand X7	Geely Emgrand X7	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
442	5	1	GMC Envoy	GMC Envoy	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
443	5	1	Ford Escort	Ford Escort	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
444	5	1	Ford Everest	Ford Everest	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
445	5	1	Ford Excursion	Ford Excursion	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
446	5	1	Ford Expedition EL	Ford Expedition EL	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
447	5	1	Ford Fairlane	Ford Fairlane	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
448	5	1	Ford Five Hundred	Ford Five Hundred	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
449	5	1	Ford Focus C-Max	Ford Focus C-Max	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
450	5	1	Ford Focus Electric	Ford Focus Electric	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
451	5	1	Ford Freestar	Ford Freestar	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
452	5	1	Ford F-Series	Ford F-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
453	5	1	GAC GA3	GAC GA3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
454	5	1	GAC GA5	GAC GA5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
455	5	1	Ford Galaxy	Ford Galaxy	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
456	5	1	Geely GC2	Geely GC2	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
457	5	1	Geely GC6	Geely GC6	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
458	5	1	Geely GC7	Geely GC7	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
459	5	1	Ford Granada	Ford Granada	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
460	5	1	GAC GS5	GAC GS5	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
461	5	1	Geely GX2	Geely GX2	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
462	5	1	Fiat IDEA	Fiat IDEA	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
463	5	1	GMC Jimmy	GMC Jimmy	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
464	5	1	Ford KA	Ford KA	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
465	5	1	Fisker Karma	Fisker Karma	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
466	5	1	Ford Kuga	Ford Kuga	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
467	5	1	Fiat Marea	Fiat Marea	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
468	5	1	Ford Maverick	Ford Maverick	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
470	5	1	Ford Monarch	Ford Monarch	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
471	5	1	Ford Mondeo	Ford Mondeo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
472	5	1	Fiat Multipla	Fiat Multipla	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
473	5	1	Ford Mustang GT	Ford Mustang GT	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
474	5	1	Ford Orion	Ford Orion	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
475	5	1	Fiat Other	Fiat Other	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
476	5	1	Fiat Palio	Fiat Palio	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
477	5	1	Fiat Panda	Fiat Panda	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
478	5	1	Ford PickUp	Ford PickUp	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
479	5	1	Ford Probe	Ford Probe	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
480	5	1	Fiat Punto	Fiat Punto	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
481	5	1	Fiat Punto Evo	Fiat Punto Evo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
482	5	1	Fiat Qubo	Fiat Qubo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
483	5	1	Fiat Regata	Fiat Regata	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
484	5	1	Fiat Ritmo	Fiat Ritmo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
485	5	1	GMC Safari	GMC Safari	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
486	5	1	GMC Savana	GMC Savana	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
487	5	1	Fiat Sedici	Fiat Sedici	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
488	5	1	Fiat Seicento	Fiat Seicento	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
489	5	1	Fiat Siena	Fiat Siena	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
490	5	1	GMC Sierra	GMC Sierra	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
491	5	1	Ford Sierra	Ford Sierra	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
492	5	1	Ford S-Max	Ford S-Max	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
493	5	1	Fiat Stilo	Fiat Stilo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
494	5	1	Ford Sport Trac	Ford Sport Trac	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
495	5	1	Ford Streetka	Ford Streetka	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
496	5	1	Foton SUP	Foton SUP	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
497	5	1	GMC Suburban	GMC Suburban	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
498	5	1	Ford Tempo	Ford Tempo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
499	5	1	Fiat Tempra	Fiat Tempra	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
500	5	1	Ford Thunderbird	Ford Thunderbird	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
501	5	1	Ford Tourneo Connect	Ford Tourneo Connect	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
502	5	1	Ford Tourneo Courier	Ford Tourneo Courier	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
503	5	1	Ford Transit	Ford Transit	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
504	5	1	Foton Tunland	Foton Tunland	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
505	5	1	Fiat UNO	Fiat UNO	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
506	5	1	Foton View C1 Minibus	Foton View C1 Minibus	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
507	5	1	Ford Windstar	Ford Windstar	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
508	5	1	GMC Yukon Xl	GMC Yukon Xl	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
509	5	1	GMC Terrain	GMC Terrain	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
510	5	1	Honda Accord	Honda Accord	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
511	5	1	Honda CR-V	Honda CR-V	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
512	5	1	Honda Jazz	Honda Jazz	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
513	5	1	Honda Pilot	Honda Pilot	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
514	5	1	Hyundai Accent	Hyundai Accent	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
515	5	1	Hyundai Azera	Hyundai Azera	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
516	5	1	Hyundai Centennial	Hyundai Centennial	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
517	5	1	Hyundai Elantra	Hyundai Elantra	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
518	5	1	Hyundai Genesis	Hyundai Genesis	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
519	5	1	Hyundai Grand i10	Hyundai Grand i10	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
520	5	1	Hyundai Grand Santa Fe	Hyundai Grand Santa Fe	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
521	5	1	Hyundai i10	Hyundai i10	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
522	5	1	Hyundai i30	Hyundai i30	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
523	5	1	Hyundai i40	Hyundai i40	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
524	5	1	Hyundai Santa Fe	Hyundai Santa Fe	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
525	5	1	Hyundai Sonata	Hyundai Sonata	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
526	5	1	Hyundai Tucson	Hyundai Tucson	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
527	5	1	Infiniti FX35	Infiniti FX35	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
528	5	1	Infiniti FX37	Infiniti FX37	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
529	5	1	Infiniti FX50	Infiniti FX50	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
530	5	1	Infiniti G	Infiniti G	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
531	5	1	Infiniti Q30	Infiniti Q30	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
532	5	1	Infiniti Q50	Infiniti Q50	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
533	5	1	Infiniti Q60	Infiniti Q60	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
534	5	1	Infiniti Q70	Infiniti Q70	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
535	5	1	Infiniti QX50	Infiniti QX50	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
536	5	1	Infiniti QX56	Infiniti QX56	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
537	5	1	Infiniti QX60	Infiniti QX60	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
538	5	1	Infiniti QX70	Infiniti QX70	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
539	5	1	Infiniti QX80	Infiniti QX80	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
540	5	1	Hyundai Atos Prime	Hyundai Atos Prime	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
541	5	1	Honda City	Honda City	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
542	5	1	Honda Civic Hybrid	Honda Civic Hybrid	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
543	5	1	Honda Civic IMA	Honda Civic IMA	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
544	5	1	Hyundai County	Hyundai County	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
545	5	1	Hyundai Coupe	Hyundai Coupe	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
546	5	1	Honda CR-X	Honda CR-X	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
547	5	1	Hyundai Crete	Hyundai Crete	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
548	5	1	Honda CR-Z	Honda CR-Z	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
549	5	1	Honda Crosstour	Honda Crosstour	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
550	5	1	Honda Element	Honda Element	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
551	5	1	Infiniti EX	Infiniti EX	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
552	5	1	Infiniti EX35	Infiniti EX35	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
553	5	1	Hyundai Excel	Hyundai Excel	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
554	5	1	Great Wall Florid	Great Wall Florid	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
555	5	1	Honda FR-V	Honda FR-V	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
556	5	1	Infiniti FX	Infiniti FX	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
557	5	1	Infiniti FX45	Infiniti FX45	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
558	5	1	Infiniti G35	Infiniti G35	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
559	5	1	Infiniti G37	Infiniti G37	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
560	5	1	Hyundai Galloper	Hyundai Galloper	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
561	5	1	Hyundai Getz	Hyundai Getz	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
562	5	1	Hyundai Grandeur	Hyundai Grandeur	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
563	5	1	Infiniti G-Series	Infiniti G-Series	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
564	5	1	Hummer H1	Hummer H1	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
565	5	1	Hummer H2	Hummer H2	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
566	5	1	Hummer H3	Hummer H3	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
567	5	1	Hummer H3T	Hummer H3T	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
568	5	1	Hummer HX	Hummer HX	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
569	5	1	Honda HRV	Honda HRV	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
570	5	1	Hyundai i20	Hyundai i20	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
571	5	1	Infiniti i30	Infiniti i30	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
572	5	1	Infiniti i35	Infiniti i35	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
573	5	1	Honda Insight	Honda Insight	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
574	5	1	Hyundai iX20	Hyundai iX20	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
575	5	1	Hyundai iX35	Hyundai iX35	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
576	5	1	Hyundai iX55	Hyundai iX55	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
577	5	1	Infiniti J30	Infiniti J30	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
578	5	1	Infiniti JX	Infiniti JX	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
579	5	1	Honda Legend	Honda Legend	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
580	5	1	Infiniti M	Infiniti M	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
581	5	1	Hyundai Matrix	Hyundai Matrix	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
582	5	1	Honda MR-V	Honda MR-V	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
583	5	1	Honda NSX	Honda NSX	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
584	5	1	Honda Odyssey	Honda Odyssey	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
585	5	1	Honda Passport	Honda Passport	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
586	5	1	Hyundai Pony	Hyundai Pony	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
587	5	1	Honda Prelude	Honda Prelude	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
588	5	1	Infiniti Q45	Infiniti Q45	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
589	5	1	Infiniti QX35	Infiniti QX35	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
590	5	1	Infiniti QX4	Infiniti QX4	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
591	5	1	Honda Ridgeline	Honda Ridgeline	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
592	5	1	Honda S2000	Honda S2000	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
593	5	1	Honda Stream	Honda Stream	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
594	5	1	Honda S500	Honda S500	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
595	5	1	Hyundai Terracan	Hyundai Terracan	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
596	5	1	Hyundai Tiburon	Hyundai Tiburon	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
597	5	1	Hyundai Trajet	Hyundai Trajet	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
598	5	1	Hyundai Veloster	Hyundai Veloster	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
599	5	1	Hyundai Veracruz	Hyundai Veracruz	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
600	5	1	Hyundai Verna	Hyundai Verna	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
601	5	1	Honda Vezel	Honda Vezel	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
602	5	1	Honda Vigor	Honda Vigor	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
603	5	1	Great Wall Wingle	Great Wall Wingle	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
604	5	1	Infiniti X35	Infiniti X35	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
605	5	1	Hyundai XG 30	Hyundai XG 30	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
606	5	1	Hyundai XG300	Hyundai XG300	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
607	5	1	Hyundai XG350	Hyundai XG350	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
608	5	1	Honda Z	Honda Z	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
609	5	1	Jaguar F-Type	Jaguar F-Type	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
610	5	1	Jaguar S-Type	Jaguar S-Type	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
611	5	1	Jaguar XE	Jaguar XE	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
612	5	1	Jaguar XF	Jaguar XF	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
613	5	1	Jaguar XJ	Jaguar XJ	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
614	5	1	Jeep Cherokee	Jeep Cherokee	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
615	5	1	Jeep Compass	Jeep Compass	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
616	5	1	Jeep Grand Cherokee	Jeep Grand Cherokee	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
617	5	1	Jeep Renegade	Jeep Renegade	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
618	5	1	Jeep Wrangler	Jeep Wrangler	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
619	5	1	Kia Candenza	Kia Candenza	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
620	5	1	Kia Carens	Kia Carens	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
621	5	1	Kia Carnival	Kia Carnival	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
622	5	1	Kia Cerato	Kia Cerato	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
623	5	1	Kia Clarus	Kia Clarus	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
624	5	1	Kia Mohave	Kia Mohave	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
625	5	1	Kia Optima	Kia Optima	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
626	5	1	Kia Picanto	Kia Picanto	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
627	5	1	Kia Quoris	Kia Quoris	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
628	5	1	Kia Rio	Kia Rio	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
629	5	1	Kia Sorento	Kia Sorento	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
630	5	1	Kia Soul	Kia Soul	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
631	5	1	Lada 111	Lada 111	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
632	5	1	Lada 1117	Lada 1117	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
633	5	1	Lada 1118	Lada 1118	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
634	5	1	Lada 1119	Lada 1119	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
635	5	1	Lada 112	Lada 112	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
636	5	1	Lamborghini 350	Lamborghini 350	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
637	5	1	Koenigsegg Agera	Koenigsegg Agera	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
638	5	1	Isuzu Amigo	Isuzu Amigo	1	2025-04-07 15:01:43	2025-04-07 15:01:43	\N
639	5	1	Isuzu Ascender	Isuzu Ascender	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
640	5	1	Lamborghini Aventador	Lamborghini Aventador	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
641	5	1	Isuzu Axiom	Isuzu Axiom	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
642	5	1	Kia Borrego	Kia Borrego	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
643	5	1	Kia Carnival II	Kia Carnival II	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
644	5	1	Koenigsegg CCX	Koenigsegg CCX	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
645	5	1	Kia Ceed	Kia Ceed	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
646	5	1	Jeep Commanche	Jeep Commanche	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
647	5	1	Jeep Commander	Jeep Commander	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
648	5	1	Lamborghini Countach	Lamborghini Countach	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
649	5	1	Iveco Daily	Iveco Daily	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
650	5	1	Isuzu D-Max	Isuzu D-Max	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
651	5	1	Kia Forte	Kia Forte	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
652	5	1	Jaguar F-Pace	Jaguar F-Pace	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
653	5	1	Jeep Grand Wagoneer	Jeep Grand Wagoneer	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
654	5	1	Lada Granta	Lada Granta	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
655	5	1	Jinbei H2	Jinbei H2	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
656	5	1	Isuzu i Mark	Isuzu i Mark	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
657	5	1	Isuzu Impulse	Isuzu Impulse	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
658	5	1	JAC J5	JAC J5	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
659	5	1	JAC J4	JAC J4	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
660	5	1	JAC J6	JAC J6	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
661	5	1	Lada Kalina II	Lada Kalina II	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
662	5	1	Kia Koup	Kia Koup	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
663	5	1	JAC LCV	JAC LCV	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
664	5	1	JAC M1	JAC M1	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
665	5	1	JAC M5	JAC M5	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
666	5	1	Kia Magentis	Kia Magentis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
667	5	1	Iveco Massif	Iveco Massif	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
668	5	1	King Long Mini Van	King Long Mini Van	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
669	5	1	International  MXT	International  MXT	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
670	5	1	Lada Niva	Lada Niva	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
671	5	1	Isuzu NPR	Isuzu NPR	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
672	5	1	Isuzu Oasis	Isuzu Oasis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
673	5	1	Kia Opirus	Kia Opirus	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
674	5	1	Jeep Patriot	Jeep Patriot	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
675	5	1	Lada Priora	Lada Priora	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
676	5	1	Kia Pride	Kia Pride	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
677	5	1	Isuzu Reward-NP	Isuzu Reward-NP	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
678	5	1	Isuzu Revert-NP	Isuzu Revert-NP	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
679	5	1	Isuzu Rodeo	Isuzu Rodeo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
680	5	1	Jeep Rubicon	Jeep Rubicon	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
681	5	1	JAC S3	JAC S3	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
682	5	1	Kia Sephia	Kia Sephia	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
683	5	1	Kia Shuma II	Kia Shuma II	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
684	5	1	Kia Soul EV	Kia Soul EV	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
685	5	1	Jaguar Sovereign	Jaguar Sovereign	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
686	5	1	Kia Spectra	Kia Spectra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
687	5	1	Isuzu Stylus	Isuzu Stylus	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
688	5	1	Kia Sportage	Kia Sportage	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
689	5	1	Jinbei SY6483	Jinbei SY6483	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
690	5	1	Lada Taiga	Lada Taiga	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
691	5	1	Isuzu Trooper	Isuzu Trooper	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
692	5	1	Kia Venga	Kia Venga	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
693	5	1	Jeep Wagoneer	Jeep Wagoneer	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
694	5	1	Jeep Wrangler Unlimited	Jeep Wrangler Unlimited	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
695	5	1	KTM X-BOW	KTM X-BOW	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
696	5	1	Jaguar XFR	Jaguar XFR	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
697	5	1	Jaguar XFR-S	Jaguar XFR-S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
698	5	1	Jaguar XF-Type	Jaguar XF-Type	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
699	5	1	Jaguar XJR	Jaguar XJR	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
700	5	1	Jaguar XJ-Type	Jaguar XJ-Type	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
701	5	1	Jaguar XK	Jaguar XK	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
702	5	1	Jaguar XKR	Jaguar XKR	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
703	5	1	Jaguar XKR-S	Jaguar XKR-S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
704	5	1	Jaguar XK-Type	Jaguar XK-Type	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
705	5	1	Jaguar X - Type	Jaguar X - Type	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
706	5	1	Jaguar X-Type	Jaguar X-Type	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
707	5	1	Land Rover Range Rover	Land Rover Range Rover	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
708	5	1	Land Rover Range Rover Evoque	Land Rover Range Rover Evoque	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
709	5	1	Land Rover Range Rover Sport	Land Rover Range Rover Sport	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
710	5	1	Lexus ES	Lexus ES	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
711	5	1	Lexus IS	Lexus IS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
712	5	1	Lexus LS	Lexus LS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
713	5	1	Lexus LX	Lexus LX	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
714	5	1	Lexus RX	Lexus RX	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
715	5	1	Lincoln Continential	Lincoln Continential	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
716	5	1	Lincoln MKC	Lincoln MKC	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
717	5	1	Lincoln MKX	Lincoln MKX	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
718	5	1	Lincoln MKZ	Lincoln MKZ	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
719	5	1	Lincoln Navigator	Lincoln Navigator	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
720	5	1	Maserati Granturismo	Maserati Granturismo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
721	5	1	Maserati Quattroporte	Maserati Quattroporte	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
722	5	1	Mazda 2	Mazda 2	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
723	5	1	Mazda 3	Mazda 3	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
724	5	1	Mazda 6	Mazda 6	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
725	5	1	Mazda CX-3	Mazda CX-3	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
726	5	1	Mazda CX-5	Mazda CX-5	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
727	5	1	Mazda CX-9	Mazda CX-9	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
728	5	1	Maybach 57	Maybach 57	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
729	5	1	Maybach 62	Maybach 62	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
730	5	1	Mazda 626	Mazda 626	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
731	5	1	Mazda 6 Ultra	Mazda 6 Ultra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
732	5	1	Luxgen 7	Luxgen 7	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
733	5	1	Mazda 929	Mazda 929	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
734	5	1	Mahindra Armada	Mahindra Armada	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
735	5	1	Lincoln Avaitor	Lincoln Avaitor	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
736	5	1	Mazda B-Series	Mazda B-Series	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
737	5	1	Mazda BT-50	Mazda BT-50	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
738	5	1	Maserati Coupe	Maserati Coupe	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
739	5	1	Maserati Coupe / Spyder	Maserati Coupe / Spyder	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
740	5	1	Lexus CT	Lexus CT	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
741	5	1	Lexus CT 200H	Lexus CT 200H	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
742	5	1	Landwind CV-9	Landwind CV-9	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
743	5	1	Mazda CX-7	Mazda CX-7	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
744	5	1	Land Rover Defender	Land Rover Defender	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
745	5	1	Lancia Delta	Lancia Delta	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
746	5	1	Mazda Demio	Mazda Demio	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
747	5	1	Lamborghini Diablo	Lamborghini Diablo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
748	5	1	Land Rover Discovery Sport	Land Rover Discovery Sport	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
749	5	1	Mazda E2000	Mazda E2000	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
750	5	1	Lotus Elan	Lotus Elan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
751	5	1	Lotus Elise	Lotus Elise	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
752	5	1	Lotus Esprit	Lotus Esprit	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
753	5	1	Lotus Europa	Lotus Europa	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
754	5	1	Lotus Evora	Lotus Evora	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
755	5	1	Lotus Exige	Lotus Exige	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
756	5	1	Lancia Flavia	Lancia Flavia	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
757	5	1	Land Rover Freelander	Land Rover Freelander	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
758	5	1	Land Rover Freelander V6	Land Rover Freelander V6	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
759	5	1	Lancia FX-Series	Lancia FX-Series	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
760	5	1	Lamborghini Gallardo	Lamborghini Gallardo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
761	5	1	Maserati Grancabrio	Maserati Grancabrio	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
762	5	1	Maserati Ghibli	Maserati Ghibli	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
763	5	1	Maserati Gransport	Maserati Gransport	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
764	5	1	Lexus GS	Lexus GS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
765	5	1	Lamborghini Huracan	Lamborghini Huracan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
766	5	1	Land Rover HSE V8	Land Rover HSE V8	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
767	5	1	Lexus IS-C	Lexus IS-C	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
768	5	1	Lexus IS-F	Lexus IS-F	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
769	5	1	Lexus LFA	Lexus LFA	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
770	5	1	Lamborghini LM	Lamborghini LM	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
771	5	1	Land Rover LR2	Land Rover LR2	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
772	5	1	Land Rover LR3	Land Rover LR3	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
773	5	1	Land Rover LR4	Land Rover LR4	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
774	5	1	Lancia Lybra	Lancia Lybra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
775	5	1	Lincoln LS	Lincoln LS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
776	5	1	Maserati MC12	Maserati MC12	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
777	5	1	Mazda Miata	Mazda Miata	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
778	5	1	Lamborghini Miura	Lamborghini Miura	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
779	5	1	Lincoln MKS	Lincoln MKS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
780	5	1	Lincoln MKT	Lincoln MKT	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
781	5	1	Lincoln MK-T	Lincoln MK-T	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
782	5	1	Lamborghini Murcielago	Lamborghini Murcielago	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
783	5	1	Mazda MPV	Mazda MPV	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
784	5	1	Lancia Musa	Lancia Musa	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
785	5	1	Mazda MX-3	Mazda MX-3	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
786	5	1	Mazda MX-5	Mazda MX-5	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
787	5	1	Mazda MX-6	Mazda MX-6	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
788	5	1	Mazda Navajo	Mazda Navajo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
789	5	1	Lexus NX	Lexus NX	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
790	5	1	Lancia Phedra	Lancia Phedra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
791	5	1	Mazda Premacy	Mazda Premacy	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
792	5	1	Lexus RC	Lexus RC	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
793	5	1	Lexus RC F	Lexus RC F	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
794	5	1	Landwind S	Landwind S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
795	5	1	Luxgen S5	Luxgen S5	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
796	5	1	Lexus SC	Lexus SC	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
797	5	1	Mahindra Scorpio	Mahindra Scorpio	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
798	5	1	Maserati Spyder	Maserati Spyder	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
799	5	1	Lancia Thema	Lancia Thema	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
800	5	1	Lancia Thesis	Lancia Thesis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
801	5	1	Lincoln Town Car	Lincoln Town Car	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
802	5	1	Luxgen U6	Luxgen U6	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
803	5	1	Lancia Voyager	Lancia Voyager	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
804	5	1	Lancia Y	Lancia Y	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
805	5	1	Mercedes-Benz C 63 AMG	Mercedes-Benz C 63 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
806	5	1	Mercedes-Benz C-Class	Mercedes-Benz C-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
807	5	1	Mercedes-Benz E 63 AMG	Mercedes-Benz E 63 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
808	5	1	Mercedes-Benz E-Class	Mercedes-Benz E-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
809	5	1	Mercedes-Benz G-Class	Mercedes-Benz G-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
810	5	1	Mercedes-Benz GL-Class	Mercedes-Benz GL-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
811	5	1	Mercedes-Benz ML 63 AMG	Mercedes-Benz ML 63 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
812	5	1	Mercedes-Benz S 63 AMG	Mercedes-Benz S 63 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
813	5	1	Mercedes-Benz S-Class	Mercedes-Benz S-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
814	5	1	Mercedes-Benz Sl-Class	Mercedes-Benz Sl-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
815	5	1	Mini Cooper	Mini Cooper	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
816	5	1	Mini Cooper Clubman	Mini Cooper Clubman	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
817	5	1	Mini Cooper Countryman	Mini Cooper Countryman	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
818	5	1	Mercedes-Benz 190	Mercedes-Benz 190	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
819	5	1	Mercedes-Benz 240/260/280	Mercedes-Benz 240/260/280	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
820	5	1	MG 3	MG 3	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
821	5	1	Mercedes-Benz 300/350/380	Mercedes-Benz 300/350/380	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
822	5	1	MG 350	MG 350	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
823	5	1	Mercedes-Benz 400/420	Mercedes-Benz 400/420	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
824	5	1	MG 5	MG 5	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
825	5	1	Mercedes-Benz 500/560	Mercedes-Benz 500/560	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
826	5	1	Mclaren 540C	Mclaren 540C	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
827	5	1	Mclaren 570S	Mclaren 570S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
828	5	1	Mclaren 650S	Mclaren 650S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
829	5	1	MG 6	MG 6	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
830	5	1	Mclaren 675LT	Mclaren 675LT	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
831	5	1	MG 750	MG 750	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
832	5	1	Mercedes-Benz A 45 AMG	Mercedes-Benz A 45 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
833	5	1	Mercedes-Benz A-Class	Mercedes-Benz A-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
834	5	1	Mercedes-Benz B-Klasse Electric Drive	Mercedes-Benz B-Klasse Electric Drive	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
835	5	1	Mercedes-Benz CLA-Klasse	Mercedes-Benz CLA-Klasse	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
836	5	1	Mercedes-Benz CLC-Class	Mercedes-Benz CLC-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
837	5	1	Mercedes-Benz CL-Class	Mercedes-Benz CL-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
838	5	1	Mercedes-Benz CLK-Class	Mercedes-Benz CLK-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
839	5	1	Mercedes-Benz CLS 63 AMG	Mercedes-Benz CLS 63 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
840	5	1	Mercedes-Benz CLS-Class	Mercedes-Benz CLS-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
841	5	1	Mercedes-Benz CLS Shooting Brake	Mercedes-Benz CLS Shooting Brake	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
842	5	1	Mini Cooper S	Mini Cooper S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
843	5	1	Mercury Cougar	Mercury Cougar	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
844	5	1	Mini Coupe	Mini Coupe	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
845	5	1	Mercedes-Benz E-Series	Mercedes-Benz E-Series	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
846	5	1	Mclaren F1	Mclaren F1	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
847	5	1	Mercedes-Benz G 63 AMG	Mercedes-Benz G 63 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
848	5	1	Mercedes-Benz G 65 AMG	Mercedes-Benz G 65 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
849	5	1	Mercedes-Benz GLA-Class	Mercedes-Benz GLA-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
850	5	1	Mercedes-Benz GLA-Klasse	Mercedes-Benz GLA-Klasse	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
851	5	1	Mercedes-Benz GLC-Class	Mercedes-Benz GLC-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
852	5	1	Mercedes-Benz GLE	Mercedes-Benz GLE	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
853	5	1	Mercedes-Benz GLE 63 AMG	Mercedes-Benz GLE 63 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
854	5	1	Mercedes-Benz GLE-Class	Mercedes-Benz GLE-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
855	5	1	Mercedes-Benz GLE-Coupe	Mercedes-Benz GLE-Coupe	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
856	5	1	Mercedes-Benz GLK-Class	Mercedes-Benz GLK-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
857	5	1	Mercury Grand Marquis	Mercury Grand Marquis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
858	5	1	MG GS	MG GS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
859	5	1	Mercedes-Benz G-Series	Mercedes-Benz G-Series	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
860	5	1	Mercury Marauder	Mercury Marauder	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
861	5	1	Mercury Marquis	Mercury Marquis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
862	5	1	Mercury Mariner	Mercury Mariner	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
863	5	1	Mercedes-Benz M-Class	Mercedes-Benz M-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
864	5	1	MG MG TF	MG MG TF	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
865	5	1	MG MG ZR	MG MG ZR	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
866	5	1	MG MG ZS	MG MG ZS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
867	5	1	MG Midget	MG Midget	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
868	5	1	Mercury Milan	Mercury Milan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
869	5	1	Mercury Montego	Mercury Montego	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
870	5	1	Mercury Mountaineer	Mercury Mountaineer	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
871	5	1	Mclaren MP4-12C	Mclaren MP4-12C	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
872	5	1	Mclaren P1	Mclaren P1	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
873	5	1	Mini Paceman	Mini Paceman	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
874	5	1	Mazda Protege	Mazda Protege	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
875	5	1	Mercedes-Benz R-Class	Mercedes-Benz R-Class	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
876	5	1	Mini Roadster	Mini Roadster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
877	5	1	Mazda RX-6	Mazda RX-6	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
878	5	1	Mazda RX-7	Mazda RX-7	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
879	5	1	Mazda RX-8	Mazda RX-8	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
880	5	1	Mercedes-Benz S 65 AMG	Mercedes-Benz S 65 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
881	5	1	Mercury Sable	Mercury Sable	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
882	5	1	Mercedes-Benz S-Class Maybach	Mercedes-Benz S-Class Maybach	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
883	5	1	Mclaren SLR	Mclaren SLR	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
884	5	1	Mercedes-Benz SL 65 AMG	Mercedes-Benz SL 65 AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
885	5	1	Mercedes-Benz SLR	Mercedes-Benz SLR	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
886	5	1	Mercedes-Benz SLR McLaren	Mercedes-Benz SLR McLaren	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
887	5	1	Mercedes-Benz SLS	Mercedes-Benz SLS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
888	5	1	Mercedes-Benz SLS AMG	Mercedes-Benz SLS AMG	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
889	5	1	Mercedes-Benz SLS AMG Elektro	Mercedes-Benz SLS AMG Elektro	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
890	5	1	Mercedes-Benz SLS AMG Roadster	Mercedes-Benz SLS AMG Roadster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
891	5	1	Mercedes-Benz Sprinter	Mercedes-Benz Sprinter	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
892	5	1	Mazda T 3500	Mazda T 3500	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
893	5	1	Mazda Tribute	Mazda Tribute	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
894	5	1	Mercedes-Benz Vaneo	Mercedes-Benz Vaneo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
895	5	1	Mercedes-Benz Viano	Mercedes-Benz Viano	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
896	5	1	Mercedes-Benz Vito	Mercedes-Benz Vito	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
897	5	1	Mercedes-Benz V-Klasse	Mercedes-Benz V-Klasse	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
898	5	1	Mazda Xedos	Mazda Xedos	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
899	5	1	Mazda Xedos 9	Mazda Xedos 9	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
900	5	1	Mercury Zephyr	Mercury Zephyr	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
901	5	1	Mitsubishi ASX	Mitsubishi ASX	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
902	5	1	Mitsubishi Lancer	Mitsubishi Lancer	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
903	5	1	Mitsubishi Lancer EX	Mitsubishi Lancer EX	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
904	5	1	Mitsubishi Outlander	Mitsubishi Outlander	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
905	5	1	Mitsubishi Pajero	Mitsubishi Pajero	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
906	5	1	Nissan Altima	Nissan Altima	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
907	5	1	Nissan Patrol	Nissan Patrol	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
908	5	1	Nissan Juke	Nissan Juke	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
909	5	1	Nissan 370Z	Nissan 370Z	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
910	5	1	Nissan Armada	Nissan Armada	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
911	5	1	Nissan GT-R	Nissan GT-R	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
912	5	1	Nissan Maxima	Nissan Maxima	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
913	5	1	Nissan Murano	Nissan Murano	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
914	5	1	Nissan Pathfinder	Nissan Pathfinder	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
915	5	1	Nissan Patrol Safari	Nissan Patrol Safari	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
916	5	1	Nissan Sentra	Nissan Sentra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
917	5	1	Nissan Sunny	Nissan Sunny	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
918	5	1	Nissan Tiida	Nissan Tiida	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
919	5	1	Nissan Xterra	Nissan Xterra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
920	5	1	Nissan Xtrail	Nissan Xtrail	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
921	5	1	Nissan 300Z	Nissan 300Z	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
922	5	1	Nissan 350Z	Nissan 350Z	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
923	5	1	Morgan 3-Wheeler	Morgan 3-Wheeler	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
924	5	1	Morgan 4-Apr	Morgan 4-Apr	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
925	5	1	Morgan Aero 8	Morgan Aero 8	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
926	5	1	Morgan Aero Coupe	Morgan Aero Coupe	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
927	5	1	Nissan Almera	Nissan Almera	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
928	5	1	Nissan Almera Tino	Nissan Almera Tino	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
929	5	1	Mitsubishi Attrage	Mitsubishi Attrage	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
930	5	1	Nissan Atleon 140	Nissan Atleon 140	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
931	5	1	Nissan Bluebird	Nissan Bluebird	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
932	5	1	Nissan Cabstar	Nissan Cabstar	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
933	5	1	Mitsubishi Canter	Mitsubishi Canter	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
934	5	1	Mitsubishi Carisma	Mitsubishi Carisma	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
935	5	1	Nissan Cedric	Nissan Cedric	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
936	5	1	Mitsubishi Celeste	Mitsubishi Celeste	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
937	5	1	Nissan Civilian	Nissan Civilian	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
938	5	1	Mitsubishi Colt	Mitsubishi Colt	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
939	5	1	Mitsubishi Colt Neu	Mitsubishi Colt Neu	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
940	5	1	Mitsubishi Cordia	Mitsubishi Cordia	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
941	5	1	Mini (BMW) Countryman	Mini (BMW) Countryman	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
942	5	1	Nissan Cube	Nissan Cube	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
943	5	1	Oldsmobile Cutlass	Oldsmobile Cutlass	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
944	5	1	Mitsubishi Delica	Mitsubishi Delica	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
945	5	1	Mitsubishi Eclipse	Mitsubishi Eclipse	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
946	5	1	Mitsubishi Electric Vehicle	Mitsubishi Electric Vehicle	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
947	5	1	Mitsubishi Endeavor	Mitsubishi Endeavor	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
948	5	1	Mitsubishi Evolution	Mitsubishi Evolution	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
949	5	1	Mitsubishi Fortis	Mitsubishi Fortis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
950	5	1	Mitsubishi Galant	Mitsubishi Galant	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
951	5	1	Nissan Gloria	Nissan Gloria	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
952	5	1	Mitsubishi Grandis	Mitsubishi Grandis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
953	5	1	Mitsubishi I-Miev	Mitsubishi I-Miev	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
954	5	1	Mitsubishi L200	Mitsubishi L200	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
955	5	1	Mitsubishi L300	Mitsubishi L300	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
956	5	1	Mitsubishi Lancer Evolution	Mitsubishi Lancer Evolution	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
957	5	1	Mitsubishi Lancer Fortis	Mitsubishi Lancer Fortis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
958	5	1	Nissan LEAF	Nissan LEAF	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
959	5	1	Noble M400	Noble M400	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
960	5	1	Noble M600	Noble M600	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
961	5	1	Mitsubishi Magna	Mitsubishi Magna	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
962	5	1	Nissan Micra	Nissan Micra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
963	5	1	Mini (BMW) Mini II	Mini (BMW) Mini II	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
964	5	1	Nissan Minivan	Nissan Minivan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
965	5	1	Mitsubishi Minivan	Mitsubishi Minivan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
966	5	1	Mitsubishi Mirage	Mitsubishi Mirage	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
967	5	1	Mitsubishi Nativa	Mitsubishi Nativa	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
968	5	1	Nissan Navara	Nissan Navara	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
969	5	1	Nissan Note	Nissan Note	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
970	5	1	Mini (BMW) Paceman	Mini (BMW) Paceman	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
971	5	1	Mitsubishi Pajero Pinin	Mitsubishi Pajero Pinin	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
972	5	1	Nissan Pathfinder Classic	Nissan Pathfinder Classic	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
973	5	1	Nissan Patrol GR	Nissan Patrol GR	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
974	5	1	Nissan Pickup	Nissan Pickup	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
975	5	1	Mitsubishi PickUp	Mitsubishi PickUp	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
976	5	1	Nissan Pixo	Nissan Pixo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
977	5	1	Morgan Plus 4	Morgan Plus 4	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
978	5	1	Morgan Plus 8	Morgan Plus 8	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
979	5	1	Nissan Primera	Nissan Primera	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
980	5	1	Nissan Pulsar	Nissan Pulsar	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
981	5	1	Nissan Qashqai	Nissan Qashqai	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
982	5	1	Nissan Quest	Nissan Quest	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
983	5	1	Mitsubishi Rosa	Mitsubishi Rosa	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
984	5	1	Nissan S130	Nissan S130	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
985	5	1	Mitsubishi Sapporo	Mitsubishi Sapporo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
986	5	1	Oldsmobile Silhouette	Oldsmobile Silhouette	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
987	5	1	Nissan Skyline	Nissan Skyline	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
988	5	1	Mitsubishi Space Star	Mitsubishi Space Star	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
989	5	1	Mitsubishi SpaceWagon	Mitsubishi SpaceWagon	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
990	5	1	Mitsubishi Space Wagon	Mitsubishi Space Wagon	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
991	5	1	Nissan TEANA	Nissan TEANA	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
992	5	1	Nissan Terrano	Nissan Terrano	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
993	5	1	Oldsmobile Toronado	Oldsmobile Toronado	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
994	5	1	Nissan Titan	Nissan Titan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
995	5	1	Nissan UD	Nissan UD	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
996	5	1	Nissan Urvan	Nissan Urvan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
997	5	1	Nissan Versa	Nissan Versa	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
998	5	1	Peugeot 2008	Peugeot 2008	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
999	5	1	Peugeot 208	Peugeot 208	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1000	5	1	Peugeot 3008	Peugeot 3008	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1001	5	1	Peugeot 301	Peugeot 301	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1002	5	1	Peugeot 308	Peugeot 308	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1003	5	1	Peugeot 5008	Peugeot 5008	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1004	5	1	Peugeot 508	Peugeot 508	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1005	5	1	Peugeot RCZ	Peugeot RCZ	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1006	5	1	Porsche Boxster	Porsche Boxster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1007	5	1	Porsche Cayenne	Porsche Cayenne	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1008	5	1	Porsche Cayman	Porsche Cayman	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1009	5	1	Porsche Panamera	Porsche Panamera	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1010	5	1	Peugeot 106	Peugeot 106	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1011	5	1	Peugeot 107	Peugeot 107	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1012	5	1	Peugeot 108	Peugeot 108	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1013	5	1	RAM 1500	RAM 1500	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1014	5	1	Peugeot 205	Peugeot 205	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1015	5	1	Peugeot 206	Peugeot 206	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1016	5	1	Peugeot 207	Peugeot 207	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1017	5	1	Peugeot 306	Peugeot 306	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1018	5	1	Peugeot 307	Peugeot 307	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1019	5	1	Peugeot 4007	Peugeot 4007	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1020	5	1	Peugeot 4008	Peugeot 4008	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1021	5	1	Peugeot 406	Peugeot 406	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1022	5	1	Peugeot 407	Peugeot 407	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1023	5	1	Peugeot 408	Peugeot 408	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1024	5	1	Peugeot 504	Peugeot 504	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1025	5	1	Peugeot 505	Peugeot 505	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1026	5	1	Peugeot 604	Peugeot 604	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1027	5	1	Peugeot 605	Peugeot 605	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1028	5	1	Peugeot 607	Peugeot 607	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1029	5	1	Peugeot 807	Peugeot 807	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1030	5	1	Porsche 911 Carrera	Porsche 911 Carrera	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1031	5	1	Porsche 911 Carrera 4	Porsche 911 Carrera 4	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1032	5	1	Porsche 911 Carrera 4 GTS	Porsche 911 Carrera 4 GTS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1033	5	1	Porsche 911 Carrera 4S	Porsche 911 Carrera 4S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1034	5	1	Porsche 911 Carrera GTS	Porsche 911 Carrera GTS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1035	5	1	Porsche 911 Carrera S	Porsche 911 Carrera S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1036	5	1	Porsche 911 GT2	Porsche 911 GT2	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1037	5	1	Porsche 911 GT3	Porsche 911 GT3	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1038	5	1	Porsche 911 GT3 RS	Porsche 911 GT3 RS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1039	5	1	Porsche 911 Speedster	Porsche 911 Speedster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1040	5	1	Porsche 911 Targa 4	Porsche 911 Targa 4	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1041	5	1	Porsche 911 Targa 4S	Porsche 911 Targa 4S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1042	5	1	Porsche 911 Targa GTS	Porsche 911 Targa GTS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1043	5	1	Porsche 911 Turbo	Porsche 911 Turbo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1044	5	1	Porsche 911 Turbo S	Porsche 911 Turbo S	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1045	5	1	Porsche 918	Porsche 918	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1046	5	1	Porsche 928	Porsche 928	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1047	5	1	Porsche 944	Porsche 944	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1048	5	1	Porsche 968	Porsche 968	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1049	5	1	Porsche 9FF	Porsche 9FF	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1050	5	1	Opel Adam	Opel Adam	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1051	5	1	Opel Agila	Opel Agila	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1052	5	1	Opel Ampera	Opel Ampera	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1053	5	1	Opel Antara	Opel Antara	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1054	5	1	Opel Astra OPC	Opel Astra OPC	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1055	5	1	Opel Astra	Opel Astra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1056	5	1	Peugeot Bipper	Peugeot Bipper	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1057	5	1	Peugeot Boxer	Peugeot Boxer	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1058	5	1	Opel Cascada	Opel Cascada	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1059	5	1	Opel Combo	Opel Combo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1060	5	1	Opel Corsa	Opel Corsa	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1061	5	1	Peugeot Expert	Peugeot Expert	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1062	5	1	Opel Frontera	Opel Frontera	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1063	5	1	Proton Gen-2	Proton Gen-2	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1064	5	1	Pontiac Grand AM	Pontiac Grand AM	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1065	5	1	Opel GT	Opel GT	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1066	5	1	Pontiac GTO	Pontiac GTO	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1067	5	1	Pagani Huayra	Pagani Huayra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1068	5	1	Opel Insignia	Opel Insignia	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1069	5	1	Opel Insignia Country Tourer	Opel Insignia Country Tourer	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1070	5	1	Peugeot Ion	Peugeot Ion	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1071	5	1	Opel Kadett	Opel Kadett	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1072	5	1	Opel Karl	Opel Karl	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1073	5	1	Porsche Macan	Porsche Macan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1074	5	1	Opel Meriva	Opel Meriva	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1075	5	1	Opel Mokka	Opel Mokka	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1076	5	1	Opel Omega	Opel Omega	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1077	5	1	Peugeot Partner	Peugeot Partner	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1078	5	1	Peugeot RC7	Peugeot RC7	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1079	5	1	Proton Savvy	Proton Savvy	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1080	5	1	Opel Signum	Opel Signum	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1081	5	1	Pontiac Solstice	Pontiac Solstice	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1082	5	1	PGO Speedster	PGO Speedster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1083	5	1	Opel Speedster	Opel Speedster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1084	5	1	Oullim Spirra	Oullim Spirra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1085	5	1	Opel Tigra	Opel Tigra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1086	5	1	Opel Tigra Twin Top	Opel Tigra Twin Top	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1087	5	1	Opel Vectra	Opel Vectra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1088	5	1	Opel Vita	Opel Vita	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1089	5	1	Proton Waja	Proton Waja	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1090	5	1	Pontiac Wave	Pontiac Wave	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1091	5	1	Proton Wira	Proton Wira	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1092	5	1	Peugeot X Line	Peugeot X Line	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1093	5	1	Opel Zafira	Opel Zafira	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1094	5	1	Pagani Zonda	Pagani Zonda	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1095	5	1	Renault Captur	Renault Captur	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1096	5	1	Renault Duster	Renault Duster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1097	5	1	Renault Koleos	Renault Koleos	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1098	5	1	Renault Megane	Renault Megane	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1099	5	1	Renault Symbol	Renault Symbol	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1100	5	1	Rolls Royce Ghost	Rolls Royce Ghost	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1101	5	1	Rolls Royce Phantom	Rolls Royce Phantom	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1102	5	1	Rolls Royce Wraith	Rolls Royce Wraith	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1103	5	1	SAAB 900	SAAB 900	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1104	5	1	SAAB 9000	SAAB 9000	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1105	5	1	SAAB 3-Sep	SAAB 3-Sep	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1106	5	1	SAAB 5-Sep	SAAB 5-Sep	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1107	5	1	SAAB 9-7X	SAAB 9-7X	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1108	5	1	Ssangyong Actyon	Ssangyong Actyon	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1109	5	1	Seat Alhambra	Seat Alhambra	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1110	5	1	Seat Altea	Seat Altea	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1111	5	1	Seat Arosa	Seat Arosa	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1112	5	1	Subaru B9 Tribeca	Subaru B9 Tribeca	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1113	5	1	Subaru BRZ	Subaru BRZ	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1114	5	1	Spyker C8	Spyker C8	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1115	5	1	Skoda Citigo	Skoda Citigo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1116	5	1	Renault Clio	Renault Clio	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1117	5	1	Renault Clio RS	Renault Clio RS	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1118	5	1	Seat Cordoba	Seat Cordoba	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1119	5	1	Rolls Royce Corniche	Rolls Royce Corniche	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1120	5	1	Spyker D12	Spyker D12	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1121	5	1	Renault Dokker	Renault Dokker	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1122	5	1	Rolls Royce Drophead	Rolls Royce Drophead	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1123	5	1	Renault Espace	Renault Espace	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1124	5	1	Seat Exeo	Seat Exeo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1125	5	1	Skoda Fabia	Skoda Fabia	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1126	5	1	Skoda Felicia	Skoda Felicia	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1127	5	1	Renault Fluence	Renault Fluence	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1128	5	1	Renault Fluence Elektro	Renault Fluence Elektro	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1129	5	1	Subaru Forester	Subaru Forester	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1130	5	1	Smart Forfour	Smart Forfour	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1131	5	1	Smart Fortwo	Smart Fortwo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1132	5	1	Seat Ibiza	Seat Ibiza	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1133	5	1	Subaru Impreza	Subaru Impreza	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1134	5	1	Seat Inca	Seat Inca	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1135	5	1	Subaru Justy	Subaru Justy	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1136	5	1	Subaru Justy G3X	Subaru Justy G3X	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1137	5	1	Renault Kadjar	Renault Kadjar	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1138	5	1	Ssangyong Korando	Ssangyong Korando	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1139	5	1	Ssangyong Kyron	Ssangyong Kyron	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1140	5	1	Renault Kangoo	Renault Kangoo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1141	5	1	Renault Laguna	Renault Laguna	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1142	5	1	Renault Latitude	Renault Latitude	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1143	5	1	Rover Land	Rover Land	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1144	5	1	Subaru Legacy	Subaru Legacy	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1145	5	1	Seat Leon	Seat Leon	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1146	5	1	Renault Logan	Renault Logan	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1147	5	1	Renault Master	Renault Master	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1148	5	1	Seat Mii	Seat Mii	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1149	5	1	Renault Modus	Renault Modus	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1150	5	1	Ssangyong Musso	Ssangyong Musso	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1151	5	1	Skoda Octavia	Skoda Octavia	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1152	5	1	Rolls Royce Park Ward	Rolls Royce Park Ward	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1153	5	1	Rolls Royce Phantom Series II	Rolls Royce Phantom Series II	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1154	5	1	Renault R12	Renault R12	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1155	5	1	Renault R19	Renault R19	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1156	5	1	Renault R9	Renault R9	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1157	5	1	Skoda Rapid	Skoda Rapid	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1158	5	1	Ssangyong Rexton	Ssangyong Rexton	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1159	5	1	Ssangyong Rodius	Ssangyong Rodius	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1160	5	1	Skoda Roomster	Skoda Roomster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1161	5	1	Rover Rover 25	Rover Rover 25	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1162	5	1	Rover Rover 45	Rover Rover 45	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1163	5	1	Rover Rover 75	Rover Rover 75	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1164	5	1	Rover Rover Streetwise	Rover Rover Streetwise	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1165	5	1	SAAB Saab 9-3 X	SAAB Saab 9-3 X	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1166	5	1	SAAB Saab 9-4X	SAAB Saab 9-4X	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1167	5	1	Renault Safrane	Renault Safrane	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1168	5	1	Renault Sandero	Renault Sandero	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1323	5	1	Ferrari 812	Ferrari 812	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1169	5	1	Renault Scenic	Renault Scenic	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1170	5	1	Rolls Royce Silver Cloud	Rolls Royce Silver Cloud	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1171	5	1	Rolls Royce Silver Race	Rolls Royce Silver Race	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1172	5	1	Rolls Royce Silver Seraph	Rolls Royce Silver Seraph	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1173	5	1	Rolls Royce Silver Shadow II	Rolls Royce Silver Shadow II	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1174	5	1	Rolls Royce Silver Shadow One	Rolls Royce Silver Shadow One	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1175	5	1	Rolls Royce Silver Spur	Rolls Royce Silver Spur	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1176	5	1	Rolls Royce Silver Spur II	Rolls Royce Silver Spur II	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1177	5	1	Rolls Royce Silver Wraith	Rolls Royce Silver Wraith	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1178	5	1	Smart Smart Fortwo Elektro	Smart Smart Fortwo Elektro	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1179	5	1	Smart Smart roadster	Smart Smart roadster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1180	5	1	Skoda Superb	Skoda Superb	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1181	5	1	Ssangyong Tivoli	Ssangyong Tivoli	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1182	5	1	Seat Toledo	Seat Toledo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1183	5	1	Renault Trafic	Renault Trafic	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1184	5	1	Subaru Trezia	Subaru Trezia	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1185	5	1	Renault Twingo	Renault Twingo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1186	5	1	Renault Twizy	Renault Twizy	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1187	5	1	Rover VL 75	Rover VL 75	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1188	5	1	Renault Wind	Renault Wind	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1189	5	1	Skoda Yeti	Skoda Yeti	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1190	5	1	Renault ZOE	Renault ZOE	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1191	5	1	Renault ZOE	Renault ZOE	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1192	5	1	Suzuki APV	Suzuki APV	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1193	5	1	Suzuki Carry	Suzuki Carry	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1194	5	1	Suzuki Celerio	Suzuki Celerio	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1195	5	1	Suzuki Ertiga	Suzuki Ertiga	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1196	5	1	Suzuki Grand Vitara	Suzuki Grand Vitara	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1197	5	1	Suzuki Jimny	Suzuki Jimny	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1198	5	1	Suzuki Kizashi	Suzuki Kizashi	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1199	5	1	Toyota 86	Toyota 86	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1200	5	1	Toyota Avalon	Toyota Avalon	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1201	5	1	Toyota Camry	Toyota Camry	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1202	5	1	Toyota Corolla	Toyota Corolla	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1203	5	1	Toyota FJ Cruiser	Toyota FJ Cruiser	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1204	5	1	Toyota Fortuner	Toyota Fortuner	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1205	5	1	Toyota Innova	Toyota Innova	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1206	5	1	Toyota Land Cruiser	Toyota Land Cruiser	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1207	5	1	Toyota Prado	Toyota Prado	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1208	5	1	Toyota Previa	Toyota Previa	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1209	5	1	Toyota Prius	Toyota Prius	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1210	5	1	Toyota RAV4	Toyota RAV4	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1211	5	1	Toyota Yaris	Toyota Yaris	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1212	5	1	Volkswagen Beetle	Volkswagen Beetle	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1213	5	1	Volkswagen Golf	Volkswagen Golf	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1214	5	1	Volkswagen Golf R	Volkswagen Golf R	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1215	5	1	Volkswagen Jetta	Volkswagen Jetta	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1216	5	1	TATA 1618	TATA 1618	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1217	5	1	Toyota 4Runner	Toyota 4Runner	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1218	5	1	Suzuki Alto	Suzuki Alto	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1219	5	1	Suzuki APV Van	Suzuki APV Van	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1220	5	1	Volkswagen Amarok	Volkswagen Amarok	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1221	5	1	Toyota Aurion	Toyota Aurion	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1222	5	1	Toyota Auris	Toyota Auris	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1223	5	1	Toyota Avanza	Toyota Avanza	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1224	5	1	Toyota Avensis	Toyota Avensis	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1225	5	1	Toyota Avensis Verso	Toyota Avensis Verso	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1226	5	1	Toyota Aygo	Toyota Aygo	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1227	5	1	Suzuki Baleno	Suzuki Baleno	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1228	5	1	Volkswagen Bora	Volkswagen Bora	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1229	5	1	Volkswagen Cabrio	Volkswagen Cabrio	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1230	5	1	Volkswagen Caddy	Volkswagen Caddy	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1231	5	1	Toyota Carina	Toyota Carina	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1232	5	1	Volkswagen CC	Volkswagen CC	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1233	5	1	Toyota Celica	Toyota Celica	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1234	5	1	Suzuki Ciaz	Suzuki Ciaz	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1235	5	1	Toyota Coaster	Toyota Coaster	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1236	5	1	Toyota Corolla Verso	Toyota Corolla Verso	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1237	5	1	Toyota Corona	Toyota Corona	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1238	5	1	Volkswagen Crafter	Volkswagen Crafter	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1239	5	1	Toyota Cressida	Toyota Cressida	1	2025-04-07 15:01:44	2025-04-07 15:01:44	\N
1240	5	1	Toyota Crown	Toyota Crown	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1241	5	1	Toyota Echo	Toyota Echo	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1242	5	1	Volkswagen EOS	Volkswagen EOS	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1243	5	1	Volkswagen Eurovan	Volkswagen Eurovan	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1244	5	1	Volkswagen Golf Plus	Volkswagen Golf Plus	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1245	5	1	Volkswagen Golf R32	Volkswagen Golf R32	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1246	5	1	Toyota GT86	Toyota GT86	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1247	5	1	Volkswagen GTI	Volkswagen GTI	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1248	5	1	Toyota Hiace	Toyota Hiace	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1249	5	1	Toyota Hilux	Toyota Hilux	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1250	5	1	Suzuki Ignis	Suzuki Ignis	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1251	5	1	TATA Indica	TATA Indica	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1252	5	1	Toyota IQ	Toyota IQ	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1253	5	1	Toyota Land Cruiser 70	Toyota Land Cruiser 70	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1254	5	1	Toyota Land Cruiser V8	Toyota Land Cruiser V8	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1255	5	1	Suzuki Liana	Suzuki Liana	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1256	5	1	TATA Manza	TATA Manza	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1257	5	1	Toyota MR2	Toyota MR2	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1258	5	1	Toyota MR 2	Toyota MR 2	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1259	5	1	Toyota Prius+	Toyota Prius+	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1260	5	1	TATA Safari	TATA Safari	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1261	5	1	Toyota Scion	Toyota Scion	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1262	5	1	Toyota Sequoia	Toyota Sequoia	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1263	5	1	Toyota Sienna	Toyota Sienna	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1264	5	1	Toyota Solara	Toyota Solara	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1265	5	1	Suzuki Splash	Suzuki Splash	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1266	5	1	Toyota Starlet	Toyota Starlet	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1267	5	1	Toyota Supra	Toyota Supra	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1268	5	1	Suzuki SX4	Suzuki SX4	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1269	5	1	Suzuki Swift	Suzuki Swift	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1270	5	1	Suzuki SX4 S-Cross	Suzuki SX4 S-Cross	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1271	5	1	TATA Telcoline	TATA Telcoline	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1272	5	1	Toyota Tacoma	Toyota Tacoma	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1273	5	1	Toyota Tercel	Toyota Tercel	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1274	5	1	UAZ Tigr	UAZ Tigr	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1275	5	1	Subaru Tribeca	Subaru Tribeca	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1276	5	1	Toyota Tundra	Toyota Tundra	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1277	5	1	Toyota Urban Cruiser	Toyota Urban Cruiser	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1278	5	1	Toyota Venza	Toyota Venza	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1279	5	1	Suzuki Verona	Suzuki Verona	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1280	5	1	Toyota Verso	Toyota Verso	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1281	5	1	Toyota Verso S	Toyota Verso S	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1282	5	1	Suzuki Vitara	Suzuki Vitara	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1283	5	1	Suzuki Wagon R+	Suzuki Wagon R+	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1284	5	1	Subaru WRX	Subaru WRX	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1285	5	1	Subaru WRX STI	Subaru WRX STI	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1286	5	1	Toyota XA	Toyota XA	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1287	5	1	TATA Xenon	TATA Xenon	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1288	5	1	Suzuki XL7	Suzuki XL7	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1289	5	1	Subaru XV	Subaru XV	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1290	5	1	Toyota Zalas	Toyota Zalas	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1291	5	1	Volkswagen Passat	Volkswagen Passat	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1292	5	1	Volkswagen Scirocco	Volkswagen Scirocco	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1293	5	1	Volkswagen Tiguan	Volkswagen Tiguan	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1294	5	1	Volkswagen Touareg	Volkswagen Touareg	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1295	5	1	Volvo 960	Volvo 960	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1296	5	1	Volvo S90	Volvo S90	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1297	5	1	Volvo V90	Volvo V90	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1298	5	1	Volvo XC60	Volvo XC60	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1299	5	1	Volvo XC90	Volvo XC90	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1300	5	1	Audi A4	Audi A4	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1301	5	1	Ashok tst	Ashok tst	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1302	5	1	Artega dfadsfdfd	Artega dfadsfdfd	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1303	5	1	Alpina ewetet	Alpina ewetet	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1304	5	1	Wiesmann GT	Wiesmann GT	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1305	5	1	Alfa Romeo 145	Alfa Romeo 145	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1306	5	1	Alpina test	Alpina test	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1307	5	1	Alpina test	Alpina test	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1308	5	1	Aston Martin DB11	Aston Martin DB11	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1309	5	1	Aston Martin DB11 Volante	Aston Martin DB11 Volante	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1310	5	1	Lincoln Continental	Lincoln Continental	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1311	5	1	Aston Martin DB9 Volante	Aston Martin DB9 Volante	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1312	5	1	Audi A5 Sportback	Audi A5 Sportback	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1313	5	1	Bentley Bentayga	Bentley Bentayga	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1314	5	1	Infiniti G	Infiniti G	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1315	5	1	BMW 4-Series Convertible	BMW 4-Series Convertible	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1316	5	1	BMW M4 Convertible	BMW M4 Convertible	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1317	5	1	Cadillac ATS Coupe	Cadillac ATS Coupe	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1318	5	1	Cadillac ATS V Coupe	Cadillac ATS V Coupe	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1319	5	1	Cadillac CT6	Cadillac CT6	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1320	5	1	Mercedes-Benz ML 350	Mercedes-Benz ML 350	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1321	5	1	Cadillac XT5	Cadillac XT5	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1322	5	1	Cadillac XTS V	Cadillac XTS V	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1324	5	1	Ferrari GTC4	Ferrari GTC4	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1325	5	1	Ferrari PORTIFINO	Ferrari PORTIFINO	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1326	5	1	Mercedes-Benz ML 500	Mercedes-Benz ML 500	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1327	5	1	Renault Talisman	Renault Talisman	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1328	5	1	Volkswagen Scirocco r	Volkswagen Scirocco r	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1329	5	1	Volkswagen Touran	Volkswagen Touran	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1330	5	1	GMC Terrain	GMC Terrain	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1331	5	1	Volvo V940	Volvo V940	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1332	5	1	Peugeot 1007	Peugeot 1007	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1333	5	1	Lada 110	Lada 110	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1334	5	1	Ferrari 125	Ferrari 125	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1335	5	1	Fiat 128	Fiat 128	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1336	5	1	Mclaren 12C	Mclaren 12C	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1337	5	1	Alfa Romeo 159	Alfa Romeo 159	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1338	5	1	Rover 200	Rover 200	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1339	5	1	BMW 2er Active Tourer	BMW 2er Active Tourer	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1340	5	1	Chrysler 300	Chrysler 300	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1341	5	1	Mitsubishi 3000GT	Mitsubishi 3000GT	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1342	5	1	Volvo 745	Volvo 745	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1343	5	1	Volvo 850	Volvo 850	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1344	5	1	Volvo C30	Volvo C30	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1345	5	1	Volvo C70	Volvo C70	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1346	5	1	Cadillac ATS V Coupe	Cadillac ATS V Coupe	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1347	5	1	TATA Indigo	TATA Indigo	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1348	5	1	Volkswagen LT	Volkswagen LT	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1349	5	1	Volkswagen Lupo	Volkswagen Lupo	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1350	5	1	Wiesmann MF3	Wiesmann MF3	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1351	5	1	Wiesmann MF4	Wiesmann MF4	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1352	5	1	Wiesmann MF5	Wiesmann MF5	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1353	5	1	Tesla Model S	Tesla Model S	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1354	5	1	Tesla Model X	Tesla Model X	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1355	5	1	Volkswagen Multivan	Volkswagen Multivan	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1356	5	1	ZNA Oting	ZNA Oting	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1357	5	1	Volkswagen Passat Variant	Volkswagen Passat Variant	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1358	5	1	Volkswagen Phaeton	Volkswagen Phaeton	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1359	5	1	Volkswagen Polo	Volkswagen Polo	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1360	5	1	Volkswagen Rabbit	Volkswagen Rabbit	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1361	5	1	ZNA Rich	ZNA Rich	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1362	5	1	Volvo S40	Volvo S40	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1363	5	1	Volvo S60	Volvo S60	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1364	5	1	Volvo S70	Volvo S70	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1365	5	1	Volvo S80	Volvo S80	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1366	5	1	Volkswagen Santana	Volkswagen Santana	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1367	5	1	Volkswagen Sharan	Volkswagen Sharan	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1368	5	1	Ford Shelby GT500	Ford Shelby GT500	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1369	5	1	Volkswagen SpaceFox	Volkswagen SpaceFox	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1370	5	1	GMC Terrain	GMC Terrain	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1371	5	1	Volkswagen Transporter	Volkswagen Transporter	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1372	5	1	Volvo V40	Volvo V40	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1373	5	1	Volvo V 40 (2012)	Volvo V 40 (2012)	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1374	5	1	Volvo V 40 Cross Country	Volvo V 40 Cross Country	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1375	5	1	Volvo V50	Volvo V50	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1376	5	1	Volvo V60	Volvo V60	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1377	5	1	Volvo V 60 Cross Country	Volvo V 60 Cross Country	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1378	5	1	Volvo V70	Volvo V70	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1379	5	1	Volkswagen Vento	Volkswagen Vento	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1380	5	1	Volvo XC70	Volvo XC70	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1381	5	1	Volvo XC90 (2014)	Volvo XC90 (2014)	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1382	5	1	ZNA Yumsun	ZNA Yumsun	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1383	5	1	GMC Terrain	GMC Terrain	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1384	5	1	Mazda 323	Mazda 323	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1385	5	1	Peugeot 405	Peugeot 405	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1386	5	1	Mazda 5	Mazda 5	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1387	5	1	Fiat 500X	Fiat 500X	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1388	5	1	MG 550	MG 550	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1389	5	1	Volvo 740	Volvo 740	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1390	5	1	Porsche 911 GT2 RS	Porsche 911 GT2 RS	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1391	5	1	Morgan Aero Coupe	Morgan Aero Coupe	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1392	5	1	Ford Aerostar	Ford Aerostar	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1393	5	1	Audi All Road Quattro	Audi All Road Quattro	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1394	5	1	Hyundai Atos	Hyundai Atos	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1395	5	1	Renault Avantime	Renault Avantime	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1396	5	1	Chery B11 Oriental Son	Chery B11 Oriental Son	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1397	5	1	Kia Bongo III	Kia Bongo III	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1398	5	1	Citroen C8	Citroen C8	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1399	5	1	Volkswagen Cabriolet	Volkswagen Cabriolet	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1400	5	1	PGO Cevennes	PGO Cevennes	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1401	5	1	Honda Civic	Honda Civic	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1402	5	1	Daihatsu Delta	Daihatsu Delta	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1403	5	1	Mitsubishi Diamante	Mitsubishi Diamante	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1485	14	31	Southern	جنوبي	1	2025-04-24 08:58:16	2025-04-24 08:58:16	\N
1404	5	1	Land Rover Discovery	Land Rover Discovery	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1405	5	1	Dacia Duster	Dacia Duster	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1406	5	1	Mercedes-Benz E 55 AMG	Mercedes-Benz E 55 AMG	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1407	5	1	Geely Emgrand 7	Geely Emgrand 7	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1408	5	1	Cadillac Fleetwood	Cadillac Fleetwood	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1409	5	1	Seat FR Series	Seat FR Series	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1410	5	1	Fiat Freemont	Fiat Freemont	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1411	5	1	Alfa Romeo Giulietta	Alfa Romeo Giulietta	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1412	5	1	Maserati Gransport Spyder	Maserati Gransport Spyder	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1413	5	1	Ford GT	Ford GT	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1414	5	1	Hyundai H1	Hyundai H1	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1415	5	1	Toyota Highlander	Toyota Highlander	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1416	5	1	Infiniti G	Infiniti G	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1417	5	1	Jeep Liberty	Jeep Liberty	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1418	5	1	MG MG ZT	MG MG ZT	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1419	5	1	Mitsubishi Montero	Mitsubishi Montero	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1420	5	1	Ford Mustang Shelby GT500	Ford Mustang Shelby GT500	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1421	5	1	Chrysler New Yorker	Chrysler New Yorker	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1422	5	1	Dodge Nitro	Dodge Nitro	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1423	5	1	Honda Odyssey J	Honda Odyssey J	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1424	5	1	Subaru Outback	Subaru Outback	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1425	5	1	Mazda Persona	Mazda Persona	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1426	5	1	Morgan Roadster	Morgan Roadster	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1427	5	1	Volvo S 60 Cross Country	Volvo S 60 Cross Country	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1428	5	1	Proton Saga	Proton Saga	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1429	5	1	Kia Sedona	Kia Sedona	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1430	5	1	Rolls Royce Seraph	Rolls Royce Seraph	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1431	5	1	Mercedes-Benz SL 63 AMG	Mercedes-Benz SL 63 AMG	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1432	5	1	Cadillac SRX	Cadillac SRX	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1433	5	1	Suzuki Swift Dzire	Suzuki Swift Dzire	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1434	5	1	Chevrolet Trail Blazer	Chevrolet Trail Blazer	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1435	5	1	Fiat Ulysse	Fiat Ulysse	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1436	5	1	Aston Martin Vanquish My 2014	Aston Martin Vanquish My 2014	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1437	5	1	Renault Vel Satis	Renault Vel Satis	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1438	5	1	Great Wall Wingle 3	Great Wall Wingle 3	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1439	5	1	Jaguar XJS	Jaguar XJS	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1440	5	1	Lancia Ypsilon	Lancia Ypsilon	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1441	5	1	Opel Zafira Tourer	Opel Zafira Tourer	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
1442	5	1	Tesla Model S	Tesla Model S	1	2025-04-07 15:01:45	2025-04-07 15:01:45	\N
14	14	8	Residential	Residential	1	2025-03-20 10:42:01	2025-04-10 06:55:03	\N
1443	14	14	Agency	Agency	1	2025-04-10 07:26:29	2025-04-10 07:26:29	\N
1444	14	14	Landlord	Landlord	1	2025-04-10 07:29:56	2025-04-10 07:29:56	\N
1445	14	14	Developer	Developer	1	2025-04-10 07:30:24	2025-04-10 07:30:24	\N
1446	14	15	Yearly	Yearly	1	2025-04-10 07:30:48	2025-04-10 07:30:48	\N
1447	14	15	Bi-Yearly	Bi-Yearly	1	2025-04-10 07:31:15	2025-04-10 07:31:15	\N
1448	14	15	Quarterly	Quarterly	1	2025-04-10 07:31:39	2025-04-10 07:31:39	\N
1449	14	15	Monthly	Monthly	1	2025-04-10 07:32:07	2025-04-10 07:32:07	\N
1450	5	7	White	أبيض	1	2025-04-17 06:25:58	2025-04-17 06:25:58	\N
1451	5	7	Black	أسود	1	2025-04-17 06:26:25	2025-04-17 06:26:25	\N
1452	5	16	Beige	بيج	1	2025-04-17 06:27:39	2025-04-17 06:27:39	\N
1453	5	16	Red	أحمر	1	2025-04-17 06:28:28	2025-04-17 06:28:28	\N
1454	5	17	Yes	نعم	1	2025-04-17 06:28:54	2025-04-17 06:28:54	\N
1455	5	17	No	لا	1	2025-04-17 06:29:24	2025-04-17 06:29:24	\N
1456	5	18	Good	جيد	1	2025-04-17 06:29:51	2025-04-17 06:29:51	\N
1457	5	18	Bad	سيئ	1	2025-04-17 06:30:19	2025-04-17 06:30:19	\N
1458	5	19	Working	العامل	1	2025-04-17 06:30:58	2025-04-17 06:30:58	\N
1459	5	19	Not working	لا يعمل	1	2025-04-17 06:31:31	2025-04-17 06:31:31	\N
1460	10	20	Yes	han	1	2025-04-18 21:35:49	2025-04-18 21:35:49	\N
1461	10	20	No	no	1	2025-04-18 21:36:12	2025-04-18 21:36:12	\N
1462	15	21	Apartment	شقة	1	2025-04-19 17:29:43	2025-04-19 17:29:43	\N
1464	15	25	Flat	وطيء	1	2025-04-19 18:45:32	2025-04-19 18:45:32	\N
1465	15	26	Commercial	تجاري	1	2025-04-19 18:47:04	2025-04-19 18:47:04	\N
1466	15	21	Flat	وطيء	1	2025-04-21 09:22:36	2025-04-21 09:22:36	\N
1467	15	26	Residential	سكني	1	2025-04-21 09:25:57	2025-04-21 09:25:57	\N
1468	15	25	Apartment	شقة	1	2025-04-21 09:37:55	2025-04-21 09:37:55	\N
1470	14	27	Apartment	Apartment	1	2025-04-22 10:04:17	2025-04-22 10:04:17	\N
1471	14	27	Townhouses	تاون هاوس	1	2025-04-22 10:11:08	2025-04-22 10:11:08	\N
1472	14	28	Office	مكتب	1	2025-04-22 10:43:11	2025-04-22 11:13:46	\N
1473	14	28	Shop	محل	1	2025-04-22 10:44:04	2025-04-22 11:14:09	\N
1474	14	37	Fixed	ثابت	1	2025-04-24 08:39:28	2025-04-24 08:39:28	\N
1475	14	37	Negotiable	قابل للتفاوض	1	2025-04-24 08:40:14	2025-04-24 08:40:14	\N
1476	14	36	Dollar $	دولار $	1	2025-04-24 08:41:00	2025-04-24 08:41:00	\N
1477	14	36	AED	درهم إماراتي	1	2025-04-24 08:41:38	2025-04-24 08:41:38	\N
1478	14	36	SYP	الليرة السورية	1	2025-04-24 08:42:18	2025-04-24 08:42:18	\N
1479	14	35	Mosque	مسجد	1	2025-04-24 08:43:29	2025-04-24 08:43:29	\N
1480	14	35	Parks	منتزه	1	2025-04-24 08:43:58	2025-04-24 08:43:58	\N
1481	14	35	School	مدرسة	1	2025-04-24 08:45:12	2025-04-24 08:45:12	\N
1482	14	35	Medical Clinic	عيادة طبية	1	2025-04-24 08:46:00	2025-04-24 08:46:20	\N
1483	14	29	Cladded	مُكسى	1	2025-04-24 08:47:58	2025-04-24 08:47:58	\N
1484	14	29	Not Cladded	غير مُكسى	1	2025-04-24 08:48:43	2025-04-24 08:48:43	\N
1486	14	31	Northern	شمالي	1	2025-04-24 08:58:47	2025-04-24 08:58:47	\N
1487	14	31	Eastern	شرقي	1	2025-04-24 08:59:16	2025-04-24 08:59:16	\N
1488	14	31	Western	غربي	1	2025-04-24 08:59:49	2025-04-24 08:59:49	\N
\.


--
-- Data for Name: category_fields; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.category_fields (id, category_id, type, label, name, label_ar, name_ar, options, attribute_id, file_types, created_at, updated_at, "order", field_id, required, deleted_at, section) FROM stdin;
64	5	select	Year	Year	سنة	سنة	\N	3	\N	2025-03-19 14:57:57	2025-04-23 09:04:10	3	3	1	\N	basic
39	14	text	Location	Location	Location	Location	\N	\N	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	4	0	\N	\N	basic
41	14	select	Housing Category	Housing Category	Housing Category	Housing Category	\N	9	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	5	2	\N	\N	basic
42	14	select	Is it furnished?	Is it furnished?	?Is it furnished	?Is it furnished	\N	10	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	6	3	\N	\N	basic
70	5	files	images	images	الصور	الصور	\N	\N	jpg,png	2025-03-19 14:57:57	2025-04-23 09:04:10	0	9	1	\N	advance
65	5	numeric	Kilometers	Kilometers	كيلومترات	كيلومترات	\N	\N	\N	2025-03-19 14:57:57	2025-04-23 09:04:10	4	4	1	\N	basic
8	2	text	Title	Title	Title	Title	\N	\N	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	\N	0	0	\N	basic
9	2	select	Property Type	Property Type	Property Type	Property Type	\N	8	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	1	7	0	\N	basic
10	2	select	Housing Category	Housing Category	Housing Category	Housing Category	\N	9	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	2	8	0	\N	basic
11	2	select	Is it furnished?	Is it furnished?	Is it furnished?	Is it furnished?	\N	10	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	3	9	0	\N	basic
12	2	text	Phone number	Phone number	Phone number	Phone number	\N	\N	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	\N	1	0	\N	basic
13	2	text	Price	Price	Price	Price	\N	\N	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	\N	2	0	\N	basic
14	2	text	Describe your property	Describe your property	Describe your property	Describe your property	\N	\N	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	\N	3	0	\N	basic
15	2	text	Size	Size	Size	Size	\N	\N	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	\N	4	0	\N	basic
16	2	text	Developer	Developer	Developer	Developer	\N	\N	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	\N	5	0	\N	basic
17	2	text	Annual Community Field	Annual Community Field	Annual Community Field	Annual Community Field	\N	\N	\N	2025-03-20 11:16:04	2025-03-20 11:16:04	\N	6	0	\N	basic
78	15	checkbox	Multi option field	Multi option field	حقل متعدد الخيارات	حقل متعدد الخيارات	option1,option2,option3	\N	\N	2025-04-21 09:49:30	2025-04-21 09:50:06	5	7	\N	\N	basic
66	5	select	Body Type	Body Type	نوع الجسم	نوع الجسم	\N	4	\N	2025-03-19 14:57:57	2025-04-23 09:04:10	5	5	1	\N	basic
67	5	select	Is your car insured in Syria	Is your car insured in Syria	هل سيارتك مؤمنة في سوريا؟	هل سيارتك مؤمنة في سوريا؟	\N	5	\N	2025-03-19 14:57:57	2025-04-23 09:04:10	6	6	1	\N	basic
71	15	checkbox	Amenities	Amenities	وسائل الراحه	وسائل الراحه	Maids Room,Study,Central A/C & Heating,Concierge Service,Balcony,Private Garden,Private Pool, Private Gym,Private Jacuzzi,Shared Pool,Shared Spa,Shared Gym,Security,Maid Service,Covered Parking	\N	\N	2025-04-21 05:44:57	2025-04-21 09:08:27	3	3	\N	2025-04-21 09:08:27	basic
58	15	text	Ad Title	Ad Title	عنوان الإعلان	عنوان الإعلان	\N	\N	\N	2025-04-19 17:17:51	2025-04-21 09:31:37	0	0	1	2025-04-21 09:31:37	basic
68	5	numeric	Price	Price	سعر	سعر	\N	\N	\N	2025-03-19 14:57:57	2025-04-23 09:04:10	7	7	1	\N	basic
73	15	text	Text Field	Text Field	قيمة النص	قيمة النص	\N	\N	\N	2025-04-21 09:49:30	2025-04-21 09:50:06	0	2	1	\N	basic
74	15	textarea	Text Area Field	Text Area Field	حقل منطقة النص	حقل منطقة النص	\N	\N	\N	2025-04-21 09:49:30	2025-04-21 09:50:06	1	3	\N	\N	basic
75	15	numeric	Price	Price	ثمن	ثمن	\N	\N	\N	2025-04-21 09:49:30	2025-04-21 09:50:06	2	4	\N	\N	basic
76	15	radio	Gender	Gender	جنس	جنس	Male,Female	\N	\N	2025-04-21 09:49:30	2025-04-21 09:50:06	3	5	\N	\N	basic
77	15	mobile	Mobile	Mobile	جوال	جوال	\N	\N	\N	2025-04-21 09:49:30	2025-04-21 09:50:06	4	6	\N	\N	basic
69	5	mobile	Phone Number	Phone Number	رقم التليفون	رقم التليفون	\N	\N	\N	2025-03-19 14:57:57	2025-04-23 09:04:10	8	8	1	\N	basic
62	5	make	Make	Moke	الوضع والنموذج	الوضع والنموذج	\N	1	\N	2025-03-19 14:57:57	2025-04-23 09:04:10	1	1	1	\N	basic
80	14	select	Property Residential type	Property Residential type	Property Residential type	Property Residential type	\N	27	\N	2025-04-22 10:07:26	2025-04-22 10:19:56	11	11	\N	2025-04-22 10:19:56	basic
61	5	text	Ads Title	Ads Title	عنوان الإعلانات	عنوان الإعلانات	\N	\N	\N	2025-03-19 14:57:57	2025-04-17 06:32:29	0	0	0	2025-04-17 06:32:29	basic
63	5	select	Regional Specs	Regional Specs	المواصفات الإقليمية	المواصفات الإقليمية	\N	2	\N	2025-03-19 14:57:57	2025-04-23 09:04:10	2	2	1	\N	basic
43	14	select	Facilities	Facilities	Facilities	Facilities	\N	11	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	0	4	\N	\N	basic
40	14	select	Property Type	Property Type	Property Type	Property Type	\N	8	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	1	1	\N	\N	basic
82	14	select	Commercial Types	Commercial Types	Commercial Types	Commercial Types	\N	28	\N	2025-04-22 11:15:44	2025-04-22 12:08:47	2	12	1	\N	basic
44	14	text	Area/Size in sqft	Area/Size in sqft	Area/Size in sqft	Area/Size in sqft	\N	\N	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	3	6	\N	\N	basic
45	14	select	Listed By	Listed By	Listed By	Listed By	\N	14	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	7	7	\N	\N	basic
46	14	select	Rent is Paid	Rent is Paid	Rent is Paid	Rent is Paid	\N	15	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	8	8	\N	\N	basic
47	14	text	Price	Price	Price	Price	\N	\N	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	9	5	\N	\N	basic
81	14	select	Residential Categories	Residential Categories	الفئات السكنية	الفئات السكنية	\N	27	\N	2025-04-22 10:24:33	2025-04-22 12:08:47	10	11	1	\N	basic
72	15	amenities	Amenities	Amenities	وسائل الراحة	وسائل الراحة	\N	\N	\N	2025-04-21 09:08:27	2025-04-21 09:40:12	3	4	1	2025-04-21 09:40:12	basic
48	14	text	Phone Number	Phone Number	Phone Number	Phone Number	\N	\N	\N	2025-04-10 07:38:30	2025-04-22 12:08:47	11	9	\N	\N	basic
49	14	file	Images	Images	Images	Images	\N	\N	pdf,jpeg,jpg,png	2025-04-10 07:38:30	2025-04-22 12:08:47	12	10	\N	\N	basic
59	15	select	Select Category	Select Category	حدد الفئة	حدد الفئة	\N	26	\N	2025-04-19 17:59:18	2025-04-21 09:50:06	6	1	1	\N	basic
57	5	model	Model	Model	Model	Model	\N	\N	\N	2025-04-18 05:32:20	2025-04-23 09:04:10	9	16	1	\N	basic
56	5	textarea	Description	Description	وصف	وصف	\N	\N	\N	2025-04-17 06:42:43	2025-04-23 09:04:10	10	15	1	\N	advance
50	5	select	Fuel Type	Fuel Type	نوع الوقود	نوع الوقود	\N	6	\N	2025-04-17 06:32:29	2025-04-23 09:04:10	11	10	\N	\N	advance
51	5	text	Exterior Color	Exterior Color	اللون الخارجي	اللون الخارجي	\N	\N	\N	2025-04-17 06:32:29	2025-04-23 09:04:10	12	11	1	\N	advance
60	15	select	Select Property Type	Select Property Type	اختر نوع العقار	اختر نوع العقار	\N	25	\N	2025-04-19 17:59:18	2025-04-21 09:50:06	7	2	1	\N	basic
79	15	amenities	Amenities	Amenities	وسائل الراحه	وسائل الراحه	\N	\N	\N	2025-04-21 09:50:06	2025-04-21 09:50:06	8	8	\N	\N	basic
52	5	select	Interior Color	Interior Color	اللون الداخلي	اللون الداخلي	\N	16	\N	2025-04-17 06:35:21	2025-04-23 09:04:10	13	11	1	\N	advance
53	5	select	Warranty	Warranty	الضمان	الضمان	\N	17	\N	2025-04-17 06:35:21	2025-04-23 09:04:10	14	12	1	\N	advance
54	5	select	Body Condition	Body Condition	حالة الجسم	حالة الجسم	\N	18	\N	2025-04-17 06:35:21	2025-04-23 09:04:10	15	13	1	\N	advance
55	5	select	Mechanical Condition	Mechanical Condition	الحالة الميكانيكية	الحالة الميكانيكية	\N	19	\N	2025-04-17 06:35:21	2025-04-23 09:04:10	16	14	1	\N	advance
\.


--
-- Data for Name: challenges; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.challenges (id, user_id, name, challenge_type, target_type, target_value, start_date, end_date, status, created_at, updated_at, deleted_at) FROM stdin;
13	1	Melyssa Cooke	1	2	34	2024-12-20	2024-12-26	1	2024-12-05 21:32:47	2024-12-16 15:53:25	2024-12-16 15:53:25
14	1	Noah Wise111	2	4	45	2024-12-26	2024-12-27	1	2024-12-05 21:33:05	2024-12-18 08:04:47	\N
15	1	Testing	2	1	12	2024-12-17	2025-02-01	1	2024-12-05 21:43:13	2024-12-15 22:48:49	\N
17	1	Macon Bradford	2	3	2342	2024-12-16	2024-12-24	1	2024-12-16 00:15:33	2024-12-16 15:47:51	2024-12-16 15:47:51
18	1	Abigail Snider	2	3	56	2024-12-20	2024-12-21	1	2024-12-16 15:53:48	2024-12-16 15:54:26	2024-12-16 15:54:26
19	1	Test	2	4	12	2024-12-27	2024-12-31	1	2024-12-16 15:56:52	2024-12-16 15:57:31	2024-12-16 15:57:31
20	1	Test12	2	4	1	2024-12-21	2024-12-26	0	2024-12-18 08:05:16	2024-12-19 21:49:14	\N
\.


--
-- Data for Name: challenges_companies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.challenges_companies (id, challenge_id, company_id, created_at, updated_at, deleted_at) FROM stdin;
16	15	23	2024-12-15 22:48:49	2024-12-15 22:48:49	\N
17	17	10	2024-12-16 00:15:33	2024-12-16 14:22:13	2024-12-16 14:22:13
18	17	23	2024-12-16 14:22:13	2024-12-16 15:47:51	2024-12-16 15:47:51
19	14	23	2024-12-16 14:22:54	2024-12-16 14:22:54	\N
20	18	23	2024-12-16 15:54:05	2024-12-16 15:54:26	2024-12-16 15:54:26
21	19	23	2024-12-16 15:56:52	2024-12-16 15:57:31	2024-12-16 15:57:31
22	20	23	2024-12-18 08:05:16	2024-12-18 08:05:16	\N
23	20	32	2024-12-19 18:03:51	2024-12-19 18:03:51	\N
\.


--
-- Data for Name: chat_categories; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.chat_categories (id, name, name_ar, status, deleted_at, created_at, updated_at) FROM stdin;
8	🌍 Future and Goals	🌍 المستقبل والأهداف	1	\N	2025-11-15 10:02:05	2025-11-15 10:02:26
7	👫 Marital Relationship	👫 العلاقة الزوجية	1	\N	2025-11-15 10:01:52	2025-11-15 10:03:04
6	👶 Marriage and Children	👶 الزواج والأبناء	1	\N	2025-11-15 10:01:39	2025-11-15 10:03:27
5	🕌 Religion and Values	🕌 الدين والقيم	1	\N	2025-11-15 10:01:23	2025-11-15 10:03:45
3	💰 Financial Matters	💰 الأمور المالية	1	\N	2025-11-14 06:24:33	2025-11-15 10:04:13
4	💡 Interests and Hobbies	💡 الاهتمامات والهوايات	1	\N	2025-11-15 09:53:45	2025-11-15 10:04:44
2	💼 Education and Career	💼 الدراسة والعمل	1	\N	2025-11-11 09:45:27	2025-11-15 10:30:12
1	🏠 Personal and Family Life	🏠 الحياة الشخصية والعائلية	1	\N	2025-11-11 09:45:05	2025-11-15 10:30:22
\.


--
-- Data for Name: chat_messages; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.chat_messages (id, chat_id, sender_id, receiver_id, question_id, answer_id, message_type, is_read, read_at, created_at, updated_at, deleted_at) FROM stdin;
59	7	304	267	11	\N	question	t	2025-11-17 05:49:55	2025-11-17 05:49:44	2025-11-17 05:49:55	\N
60	7	267	304	11	29	answer	t	2025-11-17 05:49:58	2025-11-17 05:49:56	2025-11-17 05:49:58	\N
61	7	304	267	12	\N	question	t	2025-11-17 05:50:05	2025-11-17 05:50:03	2025-11-17 05:50:05	\N
62	7	267	304	12	32	answer	t	2025-11-17 05:50:08	2025-11-17 05:50:07	2025-11-17 05:50:08	\N
11	3	277	274	4	\N	question	t	2025-11-14 10:07:59	2025-11-14 10:06:28	2025-11-14 10:07:59	\N
12	3	274	277	4	10	answer	t	2025-11-14 10:08:09	2025-11-14 10:07:41	2025-11-14 10:08:09	\N
13	4	210	232	1	\N	question	f	\N	2025-11-14 17:22:10	2025-11-14 17:22:10	\N
14	5	192	210	4	\N	question	t	2025-11-14 18:38:04	2025-11-14 18:30:20	2025-11-14 18:38:04	\N
63	7	304	267	6	\N	question	t	2025-11-17 05:50:14	2025-11-17 05:50:13	2025-11-17 05:50:14	\N
15	5	210	192	4	10	answer	t	2025-11-14 18:41:20	2025-11-14 18:38:08	2025-11-14 18:41:20	\N
16	5	210	192	1	\N	question	t	2025-11-14 18:41:20	2025-11-14 18:40:30	2025-11-14 18:41:20	\N
64	7	267	304	6	16	answer	t	2025-11-17 05:50:20	2025-11-17 05:50:19	2025-11-17 05:50:20	\N
17	5	192	210	1	2	answer	t	2025-11-15 09:27:09	2025-11-14 18:42:10	2025-11-15 09:27:09	\N
18	5	210	192	5	\N	question	t	2025-11-15 09:27:33	2025-11-15 09:27:23	2025-11-15 09:27:33	\N
65	7	304	267	9	\N	question	t	2025-11-17 05:50:25	2025-11-17 05:50:24	2025-11-17 05:50:25	\N
19	5	192	210	5	13	answer	t	2025-11-15 09:29:11	2025-11-15 09:29:06	2025-11-15 09:29:11	\N
20	5	210	192	2	\N	question	t	2025-11-15 09:30:02	2025-11-15 09:29:59	2025-11-15 09:30:02	\N
66	7	267	304	9	26	answer	t	2025-11-17 05:50:29	2025-11-17 05:50:27	2025-11-17 05:50:29	\N
21	5	192	210	2	5	answer	t	2025-11-15 09:30:09	2025-11-15 09:30:04	2025-11-15 09:30:09	\N
22	5	210	192	3	\N	question	t	2025-11-15 09:30:18	2025-11-15 09:30:14	2025-11-15 09:30:18	\N
67	7	304	267	10	\N	question	t	2025-11-17 05:50:35	2025-11-17 05:50:33	2025-11-17 05:50:35	\N
23	5	192	210	3	8	answer	t	2025-11-15 09:30:24	2025-11-15 09:30:20	2025-11-15 09:30:24	\N
24	5	210	192	6	\N	question	t	2025-11-15 09:34:00	2025-11-15 09:33:16	2025-11-15 09:34:00	\N
68	7	267	304	10	23	answer	t	2025-11-17 05:50:40	2025-11-17 05:50:39	2025-11-17 05:50:40	\N
25	5	192	210	6	16	answer	t	2025-11-15 09:34:10	2025-11-15 09:34:04	2025-11-15 09:34:10	\N
69	8	267	304	11	\N	question	f	\N	2025-11-17 06:57:40	2025-11-17 06:57:40	\N
26	5	210	192	7	\N	question	t	2025-11-15 10:07:28	2025-11-15 10:07:17	2025-11-15 10:07:28	\N
27	5	192	210	7	17	answer	t	2025-11-15 10:10:00	2025-11-15 10:09:38	2025-11-15 10:10:00	\N
70	10	303	272	1	\N	question	t	2025-11-17 14:57:18	2025-11-17 14:57:10	2025-11-17 14:57:18	\N
28	5	192	210	8	\N	question	t	2025-11-15 10:11:47	2025-11-15 10:11:25	2025-11-15 10:11:47	\N
71	10	272	303	1	2	answer	t	2025-11-17 15:02:32	2025-11-17 15:02:03	2025-11-17 15:02:32	\N
29	5	210	192	8	20	answer	t	2025-11-15 10:14:01	2025-11-15 10:11:49	2025-11-15 10:14:01	\N
30	5	210	192	10	\N	question	t	2025-11-15 10:14:01	2025-11-15 10:13:54	2025-11-15 10:14:01	\N
31	5	192	210	10	24	answer	t	2025-11-15 10:15:52	2025-11-15 10:14:05	2025-11-15 10:15:52	\N
72	10	272	303	3	\N	question	t	2025-11-17 15:02:46	2025-11-17 15:02:44	2025-11-17 15:02:46	\N
32	5	210	192	9	\N	question	t	2025-11-15 10:16:07	2025-11-15 10:15:58	2025-11-15 10:16:07	\N
33	5	192	210	9	27	answer	t	2025-11-15 10:16:20	2025-11-15 10:16:13	2025-11-15 10:16:20	\N
73	10	303	272	3	7	answer	t	2025-11-17 15:03:53	2025-11-17 15:03:52	2025-11-17 15:03:53	\N
34	5	210	192	11	\N	question	t	2025-11-15 10:32:47	2025-11-15 10:32:38	2025-11-15 10:32:47	\N
35	5	192	210	11	29	answer	t	2025-11-15 10:32:56	2025-11-15 10:32:52	2025-11-15 10:32:56	\N
74	10	272	303	7	\N	question	t	2025-11-17 15:04:04	2025-11-17 15:04:02	2025-11-17 15:04:04	\N
36	5	192	210	12	\N	question	t	2025-11-15 10:33:12	2025-11-15 10:33:03	2025-11-15 10:33:12	\N
37	5	210	192	12	32	answer	t	2025-11-15 10:35:37	2025-11-15 10:33:21	2025-11-15 10:35:37	\N
38	3	277	274	6	\N	question	f	\N	2025-11-17 05:20:54	2025-11-17 05:20:54	\N
75	10	303	272	7	17	answer	t	2025-11-17 15:04:16	2025-11-17 15:04:14	2025-11-17 15:04:16	\N
76	10	272	303	4	\N	question	t	2025-11-17 15:04:25	2025-11-17 15:04:23	2025-11-17 15:04:25	\N
77	10	303	272	4	10	answer	t	2025-11-17 15:04:28	2025-11-17 15:04:27	2025-11-17 15:04:28	\N
78	10	303	272	2	\N	question	t	2025-11-17 15:04:51	2025-11-17 15:04:49	2025-11-17 15:04:51	\N
79	10	272	303	2	5	answer	t	2025-11-17 15:04:54	2025-11-17 15:04:53	2025-11-17 15:04:54	\N
80	11	303	264	11	\N	question	t	2025-11-17 15:08:37	2025-11-17 15:08:30	2025-11-17 15:08:37	\N
81	11	264	303	11	29	answer	t	2025-11-17 15:08:41	2025-11-17 15:08:39	2025-11-17 15:08:41	\N
82	11	303	264	10	\N	question	t	2025-11-17 15:08:51	2025-11-17 15:08:49	2025-11-17 15:08:51	\N
83	11	264	303	10	23	answer	t	2025-11-17 15:08:55	2025-11-17 15:08:54	2025-11-17 15:08:55	\N
84	11	303	264	8	\N	question	t	2025-11-17 15:09:09	2025-11-17 15:09:07	2025-11-17 15:09:09	\N
85	11	264	303	8	20	answer	t	2025-11-17 15:09:15	2025-11-17 15:09:13	2025-11-17 15:09:15	\N
86	11	264	303	4	\N	question	t	2025-11-17 15:09:43	2025-11-17 15:09:41	2025-11-17 15:09:43	\N
87	11	303	264	4	11	answer	t	2025-11-17 15:09:46	2025-11-17 15:09:45	2025-11-17 15:09:46	\N
88	11	264	303	2	\N	question	t	2025-11-17 15:09:55	2025-11-17 15:09:54	2025-11-17 15:09:55	\N
89	11	303	264	2	6	answer	t	2025-11-17 15:10:37	2025-11-17 15:10:36	2025-11-17 15:10:37	\N
1	2	276	273	1	\N	question	t	2025-11-14 06:25:39	2025-11-14 06:12:10	2025-12-31 12:54:09	2025-12-31 12:54:09
3	2	276	273	3	\N	question	t	2025-11-14 06:30:01	2025-11-14 06:29:52	2025-12-31 12:54:09	2025-12-31 12:54:09
5	2	276	273	2	\N	question	t	2025-11-14 06:39:43	2025-11-14 06:39:09	2025-12-31 12:54:09	2025-12-31 12:54:09
7	2	276	273	4	\N	question	t	2025-11-14 06:46:00	2025-11-14 06:40:31	2025-12-31 12:54:09	2025-12-31 12:54:09
90	12	305	192	11	\N	question	t	2025-11-17 15:34:48	2025-11-17 15:34:47	2025-11-17 15:34:48	\N
129	16	321	320	7	19	answer	t	2025-12-15 18:02:49	2025-12-15 18:02:47	2025-12-15 18:02:49	\N
91	12	192	305	11	29	answer	t	2025-11-17 15:35:18	2025-11-17 15:35:16	2025-11-17 15:35:18	\N
130	17	194	192	11	\N	question	t	2025-12-29 10:37:48	2025-12-29 10:37:41	2025-12-29 10:37:48	\N
92	12	305	192	12	\N	question	t	2025-11-17 15:35:25	2025-11-17 15:35:23	2025-11-17 15:35:25	\N
131	17	192	194	11	30	answer	t	2025-12-29 10:37:53	2025-12-29 10:37:51	2025-12-29 10:37:53	\N
93	12	192	305	12	32	answer	t	2025-11-17 15:38:56	2025-11-17 15:38:42	2025-11-17 15:38:56	\N
132	17	192	194	11	\N	question	t	2025-12-29 10:38:00	2025-12-29 10:37:58	2025-12-29 10:38:00	\N
94	12	305	192	6	\N	question	t	2025-11-17 15:39:09	2025-11-17 15:39:05	2025-11-17 15:39:09	\N
133	17	194	192	11	30	answer	t	2025-12-29 10:38:05	2025-12-29 10:38:03	2025-12-29 10:38:05	\N
95	12	192	305	6	16	answer	t	2025-11-17 15:39:15	2025-11-17 15:39:14	2025-11-17 15:39:15	\N
134	18	332	264	1	\N	question	t	2025-12-29 17:06:22	2025-12-29 17:06:16	2025-12-29 17:06:22	\N
96	12	305	192	10	\N	question	t	2025-11-17 15:39:31	2025-11-17 15:39:29	2025-11-17 15:39:31	\N
135	19	332	333	1	\N	question	t	2025-12-30 07:42:50	2025-12-30 07:42:43	2025-12-30 07:42:50	\N
97	12	192	305	10	23	answer	t	2025-11-17 15:39:40	2025-11-17 15:39:35	2025-11-17 15:39:40	\N
136	19	333	332	1	1	answer	t	2025-12-30 07:42:56	2025-12-30 07:42:55	2025-12-30 07:42:56	\N
98	12	305	192	4	\N	question	t	2025-11-17 15:39:47	2025-11-17 15:39:46	2025-11-17 15:39:47	\N
137	19	333	332	1	\N	question	t	2025-12-30 07:43:05	2025-12-30 07:43:04	2025-12-30 07:43:05	\N
99	12	192	305	4	10	answer	t	2025-11-17 15:39:54	2025-11-17 15:39:52	2025-11-17 15:39:54	\N
138	19	332	333	1	2	answer	t	2025-12-30 07:43:12	2025-12-30 07:43:10	2025-12-30 07:43:12	\N
100	13	311	310	11	\N	question	t	2025-11-18 09:39:05	2025-11-18 09:38:58	2025-11-18 09:39:05	\N
139	19	332	333	2	\N	question	t	2025-12-30 07:43:35	2025-12-30 07:43:34	2025-12-30 07:43:35	\N
101	13	310	311	11	29	answer	t	2025-11-18 09:39:08	2025-11-18 09:39:06	2025-11-18 09:39:08	\N
140	19	333	332	2	4	answer	t	2025-12-30 07:43:39	2025-12-30 07:43:38	2025-12-30 07:43:39	\N
102	13	310	311	2	\N	question	t	2025-11-18 09:39:45	2025-11-18 09:39:44	2025-11-18 09:39:45	\N
141	19	333	332	4	\N	question	t	2025-12-30 07:43:46	2025-12-30 07:43:44	2025-12-30 07:43:46	\N
103	13	311	310	2	4	answer	t	2025-11-18 09:39:52	2025-11-18 09:39:50	2025-11-18 09:39:52	\N
142	19	332	333	4	10	answer	t	2025-12-30 07:43:49	2025-12-30 07:43:48	2025-12-30 07:43:49	\N
104	13	311	310	6	\N	question	t	2025-11-18 09:40:26	2025-11-18 09:40:24	2025-11-18 09:40:26	\N
143	19	332	333	6	\N	question	t	2025-12-30 07:43:56	2025-12-30 07:43:54	2025-12-30 07:43:56	\N
105	13	310	311	6	16	answer	t	2025-11-18 09:40:33	2025-11-18 09:40:32	2025-11-18 09:40:33	\N
144	19	333	332	6	16	answer	t	2025-12-30 07:44:00	2025-12-30 07:43:58	2025-12-30 07:44:00	\N
106	13	311	310	8	\N	question	t	2025-11-18 09:42:31	2025-11-18 09:42:29	2025-11-18 09:42:31	\N
107	13	310	311	8	21	answer	t	2025-11-18 09:42:34	2025-11-18 09:42:33	2025-11-18 09:42:34	\N
108	13	311	310	7	\N	question	t	2025-11-18 09:42:44	2025-11-18 09:42:43	2025-11-18 09:42:44	\N
109	13	310	311	7	17	answer	t	2025-11-18 09:42:48	2025-11-18 09:42:46	2025-11-18 09:42:48	\N
110	14	294	310	12	\N	question	t	2025-11-18 10:53:36	2025-11-18 10:53:32	2025-11-18 10:53:36	\N
111	14	310	294	12	32	answer	t	2025-11-18 10:53:39	2025-11-18 10:53:38	2025-11-18 10:53:39	\N
112	14	310	294	5	\N	question	t	2025-11-18 10:53:45	2025-11-18 10:53:43	2025-11-18 10:53:45	\N
113	14	294	310	5	13	answer	t	2025-11-18 10:53:47	2025-11-18 10:53:46	2025-11-18 10:53:47	\N
114	14	294	310	4	\N	question	t	2025-11-18 10:53:53	2025-11-18 10:53:52	2025-11-18 10:53:53	\N
153	22	333	336	11	\N	question	t	2025-12-31 08:30:11	2025-12-31 08:28:01	2025-12-31 08:30:11	\N
115	14	310	294	4	11	answer	t	2025-11-18 10:53:56	2025-11-18 10:53:54	2025-11-18 10:53:56	\N
154	22	336	333	11	29	answer	t	2025-12-31 08:30:16	2025-12-31 08:30:15	2025-12-31 08:30:16	\N
116	14	294	310	3	\N	question	t	2025-11-18 10:54:02	2025-11-18 10:54:01	2025-11-18 10:54:02	\N
155	23	336	330	11	\N	question	t	2025-12-31 08:37:22	2025-12-31 08:37:21	2025-12-31 08:37:22	\N
117	14	310	294	3	8	answer	t	2025-11-18 10:54:05	2025-11-18 10:54:03	2025-11-18 10:54:05	\N
156	23	330	336	11	29	answer	t	2025-12-31 08:37:25	2025-12-31 08:37:24	2025-12-31 08:37:25	\N
118	14	294	310	1	\N	question	t	2025-11-18 10:54:14	2025-11-18 10:54:13	2025-11-18 10:54:14	\N
119	14	310	294	1	2	answer	t	2025-11-18 10:54:16	2025-11-18 10:54:15	2025-11-18 10:54:16	\N
157	24	336	272	11	\N	question	t	2025-12-31 08:44:14	2025-12-31 08:43:49	2025-12-31 08:51:13	2025-12-31 08:51:13
120	16	320	321	5	\N	question	t	2025-12-15 17:58:38	2025-12-15 17:58:37	2025-12-15 17:58:38	\N
121	16	321	320	5	13	answer	t	2025-12-15 17:59:14	2025-12-15 17:59:12	2025-12-15 17:59:14	\N
122	16	320	321	11	\N	question	t	2025-12-15 17:59:22	2025-12-15 17:59:21	2025-12-15 17:59:22	\N
123	16	321	320	11	29	answer	t	2025-12-15 18:00:12	2025-12-15 18:00:10	2025-12-15 18:00:12	\N
9	2	276	273	5	\N	question	t	2025-11-14 06:46:00	2025-11-14 06:41:21	2025-12-31 12:54:09	2025-12-31 12:54:09
124	16	320	321	6	\N	question	t	2025-12-15 18:00:48	2025-12-15 18:00:46	2025-12-15 18:00:48	\N
2	2	273	276	1	2	answer	t	2025-12-31 12:54:05	2025-11-14 06:27:10	2025-12-31 12:54:09	2025-12-31 12:54:09
125	16	321	320	6	16	answer	t	2025-12-15 18:01:16	2025-12-15 18:01:15	2025-12-15 18:01:16	\N
4	2	273	276	3	8	answer	t	2025-12-31 12:54:05	2025-11-14 06:35:16	2025-12-31 12:54:09	2025-12-31 12:54:09
126	16	321	320	4	\N	question	t	2025-12-15 18:01:32	2025-12-15 18:01:31	2025-12-15 18:01:32	\N
8	2	273	276	4	12	answer	t	2025-12-31 12:54:05	2025-11-14 06:40:52	2025-12-31 12:54:09	2025-12-31 12:54:09
127	16	320	321	4	12	answer	t	2025-12-15 18:01:37	2025-12-15 18:01:36	2025-12-15 18:01:37	\N
10	2	273	276	5	14	answer	t	2025-12-31 12:54:05	2025-11-14 06:41:41	2025-12-31 12:54:09	2025-12-31 12:54:09
128	16	320	321	7	\N	question	t	2025-12-15 18:02:09	2025-12-15 18:02:07	2025-12-15 18:02:09	\N
158	25	276	336	3	\N	question	t	2025-12-31 12:55:33	2025-12-31 12:55:32	2025-12-31 12:55:33	\N
159	25	336	276	3	7	answer	t	2025-12-31 12:55:36	2025-12-31 12:55:34	2025-12-31 12:55:36	\N
160	25	336	276	1	\N	question	t	2025-12-31 12:55:46	2025-12-31 12:55:45	2025-12-31 12:55:46	\N
161	25	276	336	1	1	answer	t	2025-12-31 12:55:49	2025-12-31 12:55:48	2025-12-31 12:55:49	\N
\.


--
-- Data for Name: chats; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.chats (id, user_id_1, user_id_2, connection_request_id, questions_exchanged, status, decision_deadline, user_1_decision, user_2_decision, last_reminder_sent_at, created_at, updated_at, deleted_at) FROM stdin;
8	267	304	211	0	active	\N	\N	\N	\N	2025-11-17 06:57:27	2025-11-17 06:57:27	\N
16	320	321	233	5	completed	\N	yes	yes	\N	2025-12-15 17:58:07	2025-12-15 18:03:33	\N
10	303	272	219	5	completed	\N	yes	yes	\N	2025-11-17 14:56:57	2025-11-17 15:05:15	\N
17	194	192	235	2	disconnected	\N	yes	no	\N	2025-12-29 10:37:33	2025-12-29 13:36:32	\N
5	192	210	209	12	active	\N	no	\N	\N	2025-11-14 18:30:15	2025-12-29 13:42:49	\N
18	332	264	237	0	active	\N	\N	\N	\N	2025-12-29 17:06:00	2025-12-29 17:06:00	\N
3	274	277	202	1	active	\N	\N	\N	\N	2025-11-14 10:04:51	2025-11-14 10:07:41	\N
4	210	232	63	0	active	\N	\N	\N	\N	2025-11-14 15:38:57	2025-11-14 15:38:57	\N
11	303	264	223	5	disconnected	\N	no	no	\N	2025-11-17 15:08:24	2025-11-17 15:11:11	\N
22	333	336	245	1	disconnected	\N	yes	no	\N	2025-12-31 08:27:54	2025-12-31 08:34:54	\N
23	336	330	247	1	completed	\N	yes	yes	\N	2025-12-31 08:37:14	2025-12-31 08:37:37	\N
12	305	192	225	5	completed	\N	yes	yes	\N	2025-11-17 15:34:22	2025-11-17 15:40:44	\N
24	336	272	249	0	active	\N	yes	\N	\N	2025-12-31 08:43:44	2025-12-31 08:51:13	2025-12-31 08:51:13
9	272	268	189	0	active	\N	\N	\N	\N	2025-11-17 14:53:48	2025-12-31 08:51:26	2025-12-31 08:51:26
20	310	336	241	0	active	\N	\N	\N	\N	2025-12-31 07:02:32	2025-12-31 08:55:01	2025-12-31 08:55:01
2	276	273	207	5	disconnected	2025-11-21 09:56:43	need_more_time	yes	2025-11-21 00:05:04	2025-11-14 05:58:59	2025-12-31 12:54:09	2025-12-31 12:54:09
13	311	310	227	5	disconnected	\N	no	no	\N	2025-11-18 09:38:48	2025-11-18 09:44:03	\N
19	332	333	239	5	disconnected	\N	no	need_more_time	\N	2025-12-30 07:42:34	2025-12-31 07:09:58	\N
25	276	336	251	2	disconnected	\N	no	yes	\N	2025-12-31 12:54:55	2025-12-31 12:56:24	\N
7	304	267	211	5	completed	\N	yes	yes	\N	2025-11-17 05:49:24	2025-11-17 06:53:33	\N
14	294	310	229	5	disconnected	\N	no	no	\N	2025-11-18 10:53:27	2025-11-18 10:54:42	\N
15	316	320	231	0	active	\N	\N	\N	\N	2025-12-15 17:53:15	2025-12-15 17:53:15	\N
\.


--
-- Data for Name: chronic_disease_variants; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.chronic_disease_variants (id, name, name_ar, chronic_disease_id, created_at, updated_at, deleted_at) FROM stdin;
2	Low	low	1	2025-12-26 10:56:03	2025-12-26 10:56:03	\N
1	High	high	1	2025-12-26 10:56:03	2025-12-30 07:35:47	\N
3	Pre-Diabetic	Pre-Diabetic	1	2025-12-30 07:35:47	2025-12-30 07:35:47	\N
4	Genetic Stress	Genetic Stress	3	2025-12-30 07:37:22	2025-12-30 07:37:22	\N
5	Chronic Stress	Chronic Stress	3	2025-12-30 07:37:22	2025-12-30 07:37:22	\N
\.


--
-- Data for Name: chronic_diseases; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.chronic_diseases (id, name, name_ar, status, created_at, updated_at, deleted_at) FROM stdin;
1	Diabetic	Diabetic ar	1	2025-12-26 10:56:03	2025-12-26 10:56:03	\N
2	Blood pressure	Blood pressure AR	1	2025-12-30 07:36:21	2025-12-30 07:36:21	\N
3	Stress	Stress AR	1	2025-12-30 07:37:22	2025-12-30 07:37:22	\N
\.


--
-- Data for Name: cities; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.cities (id, name, name_ar, status, created_at, updated_at, deleted_at, country_id) FROM stdin;
3	Dubaii	دبي	1	2025-03-24 11:53:17	2025-03-24 11:53:17	\N	1
4	Damascus	دمشق	1	2025-04-11 02:52:50	2025-04-11 02:52:50	\N	2
5	Damascus Town	ريف دمشق	1	2025-04-11 02:53:51	2025-04-18 18:07:35	\N	2
6	Aleppo	حلب	1	2025-04-18 18:08:20	2025-04-18 18:08:20	\N	2
7	Homs	حمص	1	2025-04-18 18:09:28	2025-04-18 18:09:28	\N	2
8	Hama	حماة	1	2025-04-18 18:10:17	2025-04-18 18:10:17	\N	2
9	Daraa	درعا	1	2025-04-18 18:11:03	2025-04-18 18:11:03	\N	2
10	As-suwayda	السويداء	1	2025-04-18 18:11:55	2025-04-18 18:11:55	\N	2
11	Quneitra	القنيطيره	1	2025-04-18 18:12:44	2025-04-18 18:12:44	\N	2
12	Tartus	طرطوس	1	2025-04-18 18:13:25	2025-04-18 18:13:25	\N	2
13	Latakia	اللاذقية	1	2025-04-18 18:14:02	2025-04-18 18:14:02	\N	2
14	Idlib	إدلب	1	2025-04-18 18:15:16	2025-04-18 18:15:16	\N	2
15	Al-Raqqah	الرقة	1	2025-04-18 18:15:58	2025-04-18 18:15:58	\N	2
16	Deir ez-zor	دير الزور	1	2025-04-18 18:16:37	2025-04-18 18:16:37	\N	2
17	Al-Hasakah	الحسكة	1	2025-04-18 18:17:11	2025-04-18 18:17:11	\N	2
1	Abu Dubai	ابو ظبي	1	2025-03-19 11:01:35	2025-04-18 18:17:55	\N	1
\.


--
-- Data for Name: cms_pages; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.cms_pages (id, title, content, created_at, updated_at, content_ar, status, title_ar) FROM stdin;
4	Video guide	<p>xdfasdfas</p>	2025-03-28 17:11:41	2025-03-28 17:12:07	<p>asdfasdfasd</p>	1	\N
7	Show and hide guidance	<p>Show and hide guidance</p>	2025-03-11 17:18:40	2025-07-14 05:18:36	<p>إظهار وإخفاء التوجيه</p>	1	Show and hide guidance
6	Blur guidance	<p>In this comprehensive <strong>guide</strong>, we will learn this skill, from understanding its significance to learning the step-by-step process, optimizing professiona</p>	2025-03-11 17:18:40	2025-07-14 05:30:08	<p>في هذا الدليل الشامل، سنتعلم هذه المهارة، بدءًا من فهم أهميتها وحتى تعلم العملية خطوة بخطوة، وتحسين الأداء المهني.</p>	1	صورة طمس
5	Photo guide	<p>During the Proposal:</p><p><strong>Candid Shots:</strong></p><p>Prioritize capturing the couple's natural expressions and reactions, rather than forcing posed shots.&nbsp;</p><p>&nbsp;</p><p><strong>Focus:</strong></p><p>Ensure the camera focuses on the couple's faces to capture their emotion.&nbsp;</p><p>&nbsp;</p><p><strong>Aperture:</strong></p><p>Use a wide aperture to create a shallow depth of field, which will help make the couple the focal point…</p>	2025-05-27 14:30:17	2025-07-16 08:50:02	<p>أثناء عرض الزواج:</p><p><strong>اللقطات العفوية:</strong></p><p>أعطِ الأولوية لالتقاط تعابير وردود فعل الزوجين الطبيعية، بدلًا من إجبارهما على التقاط صور مُصطنعة.</p><p><strong>التركيز:</strong></p><p>تأكد من تركيز الكاميرا على وجهي الزوجين لالتقاط مشاعرهما.</p><p><strong>فتحة العدسة:</strong></p><p>استخدم فتحة عدسة واسعة لإنشاء عمق مجال ضحل، مما يُساعد في جعل الزوجين محور التركيز.</p>	1	دليل الصور
2	Terms and conditions	<h3>📝 <strong>Terms &amp; Conditions / الشروط والأحكام</strong></h3><p><br>By using the Luqia app, you agree to comply with all terms outlined herein. You must be 18 years or older to use this service. Any misuse, false information, or inappropriate behavior may result in account suspension.</p>	2024-12-10 18:43:49	2025-07-16 10:09:28	<p>باستخدامك لتطبيق لقيا، فإنك توافق على الالتزام بجميع الشروط المذكورة هنا. يجب أن يكون عمرك 18 عامًا أو أكثر لاستخدام هذه الخدمة. أي إساءة استخدام أو تقديم معلومات خاطئة أو سلوك غير لائق قد يؤدي إلى تعليق الحساب.</p>	1	الشروط والأحكام
3	Privacy policy	<h3>🔒 <strong>Privacy Policy / سياسة الخصوصية</strong></h3><p><br>We value your privacy. Your personal information is securely stored and never shared without your consent. You have full control over your data and can delete your account at any time.</p>	2024-12-10 18:43:54	2025-07-16 10:10:08	<p>نحن نحترم خصوصيتك. يتم تخزين معلوماتك الشخصية بأمان ولا يتم مشاركتها دون موافقتك. لديك السيطرة الكاملة على بياناتك ويمكنك حذف حسابك في أي وقت.</p>	1	سياسة الخصوصية
1	About us	<h3>🕌 <strong>About Luqia – Matrimonial App</strong></h3><p><strong>Luqia</strong> is a trusted and modern matrimonial app designed to help individuals find meaningful and long-lasting relationships rooted in respect, compatibility, and shared values. Whether you're searching for a life partner locally or globally, Luqia connects like-minded individuals through a secure and culturally mindful platform.</p><h3>🔑 <strong>Key Features:</strong></h3><p>Verified user profiles for safe connections</p><p>In-app chat, call, and video introduction options</p><p>Profile filters based on religion, profession, location, and more</p><p>Privacy-first approach with full user control</p><p>Suitable for serious matrimonial intentions — not casual dating</p><p>Luqia is more than just a match — it’s your companion in the journey toward marriage.</p>	2024-12-10 18:35:10	2025-07-16 13:16:46	<h3>🕌 <strong>عن تطبيق لقيا – للتعارف والزواج</strong></h3><p><strong>لقيا</strong> هو تطبيق زواج عصري وموثوق، صُمم لمساعدة الأفراد في العثور على شريك حياة مناسب يقوم على الاحترام، والتوافق، والقيم المشتركة. سواء كنت تبحث عن شريك محليًا أو عالميًا، فإن لقيا يربط بين الأشخاص المتشابهين في الفكر من خلال منصة آمنة ومراعية للثقافة.</p><h3>🔑 <strong>الميزات الرئيسية:</strong></h3><p>ملفات شخصية موثقة لضمان التواصل الآمن</p><p>خيارات للدردشة والمكالمات والفيديو داخل التطبيق</p><p>فلاتر بحث حسب الدين، والمهنة، والموقع، والمزيد</p><p>نهج يحترم الخصوصية ويوفر تحكمًا كاملاً للمستخدم</p><p>مخصص للعلاقات الجادة والنية الصادقة للزواج، وليس للتعارف العابر</p><p>لقيا ليس مجرد تطابق... بل هو رفيقك في طريق الزواج.</p><p>&nbsp;</p><p>&nbsp;</p><p>.</p>	1	عن تطبيق لقيا
\.


--
-- Data for Name: companies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.companies (id, name, name_ar, brand_logo, description, description_ar, address, trade_license, trade_license_expiry, user_id, created_at, updated_at, deleted_at) FROM stdin;
13	Morton Ratliff LLC	Mcguire and Sandoval Associates	1734645382676496867ec33.png	Quas odit proident	Similique illum qui	Qui pariatur Qui na	1734645383676496873534e.pdf	2024-12-26	35	2024-12-19 21:56:23	2024-12-19 21:56:23	\N
\.


--
-- Data for Name: contact_us; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.contact_us (id, name, email, subject, message, created_at, updated_at) FROM stdin;
1	Alexandra Baker	mativyli@mailinator.com	Sit do in sint ratio	Magni doloribus non	2024-12-28 15:03:43	2024-12-28 15:03:43
\.


--
-- Data for Name: countries; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.countries (id, name, created_at, updated_at, status, dial_code, name_ar, flag_icon) FROM stdin;
1	United Arab Emirates	2025-03-22 06:00:51	2025-03-24 11:52:09	1	+971	الإمارات العربية المتحدة	\N
\.


--
-- Data for Name: delivery_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.delivery_types (id, translation_type_id, name, description, price_type, price, status, created_at, updated_at) FROM stdin;
1	9	Standard	Standard	free	0.00	1	2024-12-30 15:01:54	2024-12-30 15:08:33
2	8	DIGITAL DELIVERY	Arrives to your email immediately when completed.	free	0.00	1	2024-12-31 09:44:51	2024-12-31 14:48:17
3	7	Ciara Hull	Iure ipsam minima qu	free	0.00	1	2024-12-31 09:45:06	2024-12-31 09:45:26
4	7	Karly Pennington	Minus quis sunt dol	fixed	0.00	1	2024-12-31 09:45:15	2024-12-31 09:45:21
5	8	DIGITAL & PHYSICAL COPY	2-day express shipping via USPS. This price is for domestic shipping only, international shipping may incur a small fee.	fixed	12.00	1	2024-12-31 14:48:53	2024-12-31 14:48:53
6	11	DIGITAL DELIVERY	Arrives to your email immediately when completed.	free	0.00	1	2024-12-31 14:50:28	2024-12-31 14:50:28
7	11	DIGITAL & PHYSICAL COPY	2-day express shipping via USPS. This price is for domestic shipping only, international shipping may incur a small fee.	fixed	12.00	1	2024-12-31 14:50:54	2024-12-31 14:50:54
8	5	DIGITAL DELIVERY	Arrives to your email immediately when completed.	free	0.00	1	2024-12-31 14:51:37	2024-12-31 14:51:37
9	5	DIGITAL & PHYSICAL COPY	2-day express shipping via USPS. This price is for domestic shipping only, international shipping may incur a small fee.	fixed	12.00	1	2024-12-31 14:52:01	2024-12-31 14:52:01
10	4	DIGITAL DELIVERY	Arrives to your email immediately when completed.	free	0.00	1	2024-12-31 14:56:19	2024-12-31 14:56:19
11	3	DIGITAL DELIVERY	Arrives to your email immediately when completed.	free	0.00	1	2024-12-31 14:56:47	2024-12-31 14:56:47
\.


--
-- Data for Name: dress_codes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.dress_codes (id, name, name_ar, gender, image, status, deleted_at, created_at, updated_at) FROM stdin;
1	Hijabi	محجبة	Female	6815f4e7b9764_1746269415.png	1	\N	2025-05-03 10:48:15	2025-05-03 10:50:48
3	Burqa wearer	مرتدية البرقع	Female	6815f52f36877_1746269487.png	1	\N	2025-05-03 10:51:27	2025-05-03 10:51:27
4	Modern Wearer	مرتدية اللباس الغربي	Female	6815f58b0c1ac_1746269579.png	1	\N	2025-05-03 10:52:59	2025-05-03 10:52:59
2	Non-Hijabii	غير محجبة	Female	6815f4fe3adc7_1746269438.png	1	\N	2025-05-03 10:48:57	2025-05-29 08:19:33
5	Modern Wear	اللباس العصري	Male	68381886a7343_1748506758.png	0	\N	2025-05-29 08:19:18	2025-07-11 12:50:24
6	Religious wear	اللباس الديني	Male	683818f732b00_1748506871.png	0	\N	2025-05-29 08:21:11	2025-07-11 12:50:30
8	Emirati	إماراتي	Male	6838198df2fdf_1748507021.png	0	\N	2025-05-29 08:23:41	2025-07-11 12:50:35
7	Cultural Wear	الزي الثقافي	Male	68442bf592b2a_1749298165.jpg	0	\N	2025-05-29 08:23:02	2025-07-11 12:50:40
\.


--
-- Data for Name: educations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.educations (id, name, name_ar, status, deleted_at, created_at, updated_at) FROM stdin;
5	Lawyer	محامٍ	1	2025-05-05 06:19:02	2025-05-03 10:21:45	2025-05-05 06:19:02
4	Associate Degree	درجة الزمالة	1	2025-08-18 11:25:11	2025-05-03 10:21:23	2025-08-18 11:25:11
8	Primary	اعدادي	1	\N	2025-08-18 11:30:41	2025-08-18 11:30:41
6	High School / Secondary	ثانوي	1	\N	2025-05-05 06:16:41	2025-08-18 11:33:29
1	Bachelor's Degree	جامعي	1	\N	2025-05-03 10:20:00	2025-08-18 11:36:08
3	Postgraduate Diploma	دبلوم	1	\N	2025-05-03 10:20:52	2025-08-18 11:36:54
2	Master Degree	ماجستير	1	\N	2025-05-03 10:20:34	2025-08-18 11:38:05
7	Doctorate/PhD	دكتوراه	1	\N	2025-05-05 06:19:19	2025-08-18 11:38:26
9	Others	غير محدد	1	\N	2025-08-18 11:38:59	2026-01-08 06:30:49
\.


--
-- Data for Name: emirates; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.emirates (id, country_id, name, name_ar, status, created_at, updated_at, deleted_at) FROM stdin;
1	1	Dubai	دبي	1	2025-05-01 05:13:38	2025-05-01 05:13:38	\N
2	1	Abu Dhabi	أبو ظبي	1	2025-05-01 05:14:32	2025-05-01 05:14:32	\N
3	1	Sharjah	الشارقة	1	2025-05-01 05:14:57	2025-05-01 05:14:57	\N
4	1	Ajman	عجمان	1	2025-05-01 05:15:23	2025-05-01 05:15:23	\N
5	1	Fujairah	الفجيرة	1	2025-05-01 05:15:43	2025-05-01 05:15:43	\N
6	1	Umm Al Quwain	أم القيوين	1	2025-05-01 05:16:13	2025-05-01 05:16:13	\N
7	1	Ras Al Khaimah	رأس الخيمة	1	2025-05-01 05:16:37	2025-05-01 05:16:37	\N
\.


--
-- Data for Name: employments; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.employments (id, name, name_ar, status, deleted_at, created_at, updated_at) FROM stdin;
2	Private	Private	1	\N	2025-09-24 08:07:23	2025-09-24 08:07:23
1	Semi Government	hakomati	1	\N	2025-09-19 09:59:30	2025-09-24 08:07:40
\.


--
-- Data for Name: event_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.event_types (id, name, status, created_at, updated_at) FROM stdin;
2	Sports	1	2024-12-10 17:55:00	2024-12-10 17:55:00
3	Music	1	2024-12-17 19:03:21	2024-12-17 19:03:21
\.


--
-- Data for Name: events; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.events (id, name, event_type_id, start_date, end_date, status, description, images, created_at, updated_at) FROM stdin;
2	testq	2	2024-04-20	2024-12-27	1	<p>asdd</p>	"[\\"1734335755675fdd0b842a5.jpg\\",\\"1734335763675fdd13d0457.jpg\\",\\"1734335769675fdd19d037d.png\\"]"	2024-12-11 20:51:39	2024-12-19 21:24:45
5	test123	2	2024-12-18	2024-12-20	1	<p>zxcssf</p>	"[\\"\\"]"	2024-12-17 20:43:55	2024-12-17 20:43:55
\.


--
-- Data for Name: failed_jobs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.failed_jobs (id, uuid, connection, queue, payload, exception, failed_at) FROM stdin;
\.


--
-- Data for Name: faqs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.faqs (id, question, answer, status, created_at, updated_at) FROM stdin;
2	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
3	Test	<h2>Where does it come from?</h2><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p><p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.Where does it come from?</p><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p><p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.Where does it come from?</p><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p><p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.Where does it come from?</p><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p><p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.Where does it come from?</p><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p><p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.Where does it come from?</p><p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p><p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.adas</p>	1	2024-12-17 19:09:41	2024-12-17 19:25:53
4	asdasdas	<p>asdada</p>	1	2024-12-17 19:37:42	2024-12-17 19:37:42
5	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
6	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
7	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
8	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
9	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
10	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
11	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
12	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
13	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
14	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
15	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
16	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
17	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
18	Question 1, Lorem Ipsum is simply dummy text of the printing and typesetting industry ?	<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>	1	2024-12-11 10:52:14	2024-12-11 10:52:14
\.


--
-- Data for Name: field_conditions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.field_conditions (id, category_id, attribute_id, operator, value, field_id, created_at, updated_at, target_field_id, source_field_id) FROM stdin;
16	14	8	equals	14	11	2025-04-22 12:08:47	2025-04-22 12:08:47	81	40
17	14	8	equals	15	12	2025-04-22 12:08:47	2025-04-22 12:08:47	82	40
\.


--
-- Data for Name: genetic_disease_variants; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.genetic_disease_variants (id, genetic_disease_id, name, name_ar, created_at, updated_at, deleted_at) FROM stdin;
1	1	Alpha Thalassemia	الثلاسيميا الألفا	2025-05-29 11:55:58	2025-05-29 11:55:58	\N
2	1	Beta Thalassemia	الثلاسيميا البيتا	2025-05-29 11:55:58	2025-05-29 11:55:58	\N
3	1	Hemoglobin	أشكال الهيموغلوبين المرتبطة بالثلاسيميا	2025-05-29 11:55:58	2025-05-29 11:55:58	\N
4	2	Class I	الطفرات من الفئة الأولى	2025-05-29 11:57:40	2025-05-29 11:57:40	\N
5	2	Class II	الطفرات من الفئة الثانية	2025-05-29 11:57:40	2025-05-29 11:57:40	\N
6	4	NF1 (Type 1)	الورم الليفي العصبي من النوع الأول	2025-05-29 11:59:14	2025-05-29 11:59:14	\N
7	4	NF2 (Type 2)	الورم الليفي العصبي من النوع الثاني	2025-05-29 11:59:14	2025-05-29 11:59:14	\N
8	4	Schwannomatosis (SWN)	شفانوماتوزيس	2025-05-29 11:59:14	2025-05-29 11:59:14	\N
9	6	Autosomal Dominant PKD (ADPKD)	مرض الكلى المتعدد الكيسات السائد وراثيًا	2025-05-29 12:00:28	2025-05-29 12:00:28	\N
10	6	Autosomal Recessive PKD (ARPKD)	مرض الكلى المتعدد الكيسات المتنحي وراثيًا	2025-05-29 12:00:28	2025-05-29 12:00:28	\N
11	1	Sickle Cell Trait	حالة الخلية المنجلية	2025-07-17 06:37:02	2025-07-17 06:37:02	\N
\.


--
-- Data for Name: genetic_diseases; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.genetic_diseases (id, name, name_ar, status, deleted_at, created_at, updated_at) FROM stdin;
1	Thalassemia	الثلاسيميا	1	\N	2025-05-03 09:54:53	2025-05-03 09:54:53
2	Cystic Fibrosis	التليف الكيسي	1	\N	2025-05-03 09:55:19	2025-05-03 09:55:19
3	Down Syndrome	متلازمة داون	1	\N	2025-05-03 09:55:45	2025-05-03 09:55:45
4	Neurofibromatosis	الورم الليفي العصبي	1	\N	2025-05-03 09:56:14	2025-05-03 09:56:14
5	Spinal Muscular Atrophy (SMA)	ضمور العضلات الشوكي	1	\N	2025-05-03 09:57:16	2025-05-03 09:57:16
6	Polycystic Kidney Disease (PKD)	مرض الكلى المتعددة الكيسات	1	\N	2025-05-03 09:59:13	2025-05-03 09:59:13
\.


--
-- Data for Name: home_element_ads; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.home_element_ads (id, ad_id, element_id, created_at, updated_at) FROM stdin;
1	4	3	\N	\N
2	4	4	\N	\N
3	4	10	\N	\N
4	1	14	\N	\N
5	187	15	\N	\N
6	186	16	\N	\N
7	185	17	\N	\N
8	184	17	\N	\N
9	8	5	\N	\N
10	54	5	\N	\N
11	10	5	\N	\N
\.


--
-- Data for Name: home_elements; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.home_elements (id, name, name_ar, type, item_id, sort_order, created_at, updated_at) FROM stdin;
1	Badge For Verification	شارة للتحقق	badge	1	0	2025-03-26 19:16:15	2025-04-24 12:50:29
8	Top Banner	Top Banner	banner	2	2	2025-04-08 06:35:56	2025-04-24 12:50:29
15	Top Featured Ad	إعلان مميز في الأعلى	section	1	3	2025-04-24 12:47:20	2025-04-24 12:50:29
16	Popular Cars	السيارات الشائعة	section	1	4	2025-04-24 12:48:12	2025-04-24 12:50:29
17	Top Ads	أهم الإعلانات	category	5	5	2025-04-24 12:50:08	2025-04-24 12:50:29
9	Bottom Banner	Bottom Banner	banner	1	6	2025-04-08 06:42:07	2025-04-24 12:50:29
5	Keep Looking For	Keep Looking For	category	10	1	2025-04-08 06:20:13	2025-04-24 12:51:09
\.


--
-- Data for Name: home_logos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.home_logos (id, name, status, image, created_at, updated_at, slug, name_ar) FROM stdin;
9	Weight	t	6842cd7ee39e3_1749208446.png	2025-03-11 17:18:40	2025-06-06 11:14:07	weight_count	وزن
8	Marital Status	t	6842cd456afa4_1749208389.png	2025-03-11 17:18:40	2025-06-06 11:13:09	marital_status_count	الحالة الاجتماعية
7	Smoke	t	68442ea5a8d4c_1749298853.jpg	2025-06-03 13:06:53	2025-06-07 12:20:53	smoke_count	تدخين
6	Dress Code	t	6844309046d24_1749299344.jpg	2025-06-03 13:06:27	2025-06-07 12:29:04	dress_code_count	قواعد اللباس
5	Sect	t	683efcc4c47ef_1748958404.png	2025-06-03 13:06:04	2025-06-03 14:00:52	sect_count	طائفة
4	Height	t	683efcd269e61_1748958418.png	2025-06-03 13:05:45	2025-06-03 14:01:05	height_count	ارتفاع
3	Profession	t	683efd0d93bca_1748958477.png	2025-06-03 13:05:22	2025-06-03 14:01:20	profession_count	مهنة
2	Religion	t	683efcfd4b3a0_1748958461.png	2025-06-03 13:04:58	2025-06-03 14:01:37	religion_count	دِين
1	Educations	t	683efd2427ab6_1748958500.png	2025-06-03 13:04:29	2025-07-13 15:06:22	education_count	تعليم
\.


--
-- Data for Name: home_page_settings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.home_page_settings (id, key, value, created_at, updated_at) FROM stdin;
1	why_choose_us_title	Effective Solutions for Your Document Needs	2025-01-01 00:05:20	2025-01-01 00:05:20
2	why_choose_us_content	At Tasheel, we provide tailored solutions for all your legal translation and documentation needs.Our team of experts ensures accuracy and compliance, guiding you through the complexities of legal processes. We prioritize efficiency and customer satisfaction, making the handling of your documents seamless and stress-free.	2025-01-01 00:05:20	2025-01-01 00:06:04
3	work_process_title	How it Work	2025-01-01 00:05:20	2025-01-01 00:08:46
4	work_process_content	Work Process	2025-01-01 00:05:20	2025-01-01 00:08:46
5	customer_experience_title	Customers Experience	2025-01-01 00:05:20	2025-01-01 00:08:46
6	insights_title	Find Out Our	2025-01-01 00:05:20	2025-01-01 00:08:46
7	insights_content	Insights & Intelligence	2025-01-01 00:05:20	2025-01-01 00:08:46
8	youtube_video_1	https://www.youtube.com/embed/-VK0axfge4A	2025-01-01 00:05:20	2025-01-01 00:31:06
9	youtube_video_2	https://www.youtube.com/embed/-VK0axfge4A	2025-01-01 00:05:20	2025-01-01 00:31:06
10	about_us_title	Your Tasks, Our Care	2025-01-01 01:11:28	2025-01-01 01:11:28
11	about_us_description	Tasheel is a leading provider of expert documentation and attestation services, specializing in legal attestation, translation, document processing assistance, and more. With years of experience and a commitment to accuracy and reliability, we ensure that your documents are authenticated and accepted worldwide. Our team of experts works diligently to provide efficient and hassle-free services, meeting your deadlines and exceeding your expectations. We specialize in bridging the gap between individuals, businesses, and governmental entities, providing expert legal translation, certified and notarized services, and support for embassy, consulate, municipality, and ministry processes. At Tasheel, we empower you to confidently and easily navigate legal and administrative challenges.	2025-01-01 01:11:28	2025-01-01 01:11:28
\.


--
-- Data for Name: insights; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.insights (id, name, title, content, image, status, created_at, updated_at) FROM stdin;
1	Evan Thomas	Workplace problems in your business?	Banter! Could “workplace banter” cause problems in your business? The short answer? Yes	1735688410677480dace1da.jpg	t	2024-12-31 23:40:10	2024-12-31 23:40:23
\.


--
-- Data for Name: job_batches; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.job_batches (id, name, total_jobs, pending_jobs, failed_jobs, failed_job_ids, options, cancelled_at, created_at, finished_at) FROM stdin;
\.


--
-- Data for Name: jobs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.jobs (id, queue, payload, attempts, reserved_at, available_at, created_at) FROM stdin;
\.


--
-- Data for Name: known_languages; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.known_languages (id, user_id, language_id, created_at, updated_at) FROM stdin;
2	50	4	\N	\N
4	157	2	\N	\N
7	171	2	\N	\N
8	173	2	\N	\N
9	173	5	\N	\N
10	173	4	\N	\N
11	174	2	\N	\N
12	174	4	\N	\N
14	174	5	\N	\N
15	176	2	\N	\N
16	177	2	\N	\N
17	177	4	\N	\N
18	177	6	\N	\N
19	179	3	\N	\N
20	179	5	\N	\N
21	176	3	\N	\N
22	176	4	\N	\N
23	176	5	\N	\N
24	176	6	\N	\N
25	176	7	\N	\N
26	176	8	\N	\N
27	181	2	\N	\N
28	181	3	\N	\N
29	181	4	\N	\N
30	181	5	\N	\N
31	50	2	\N	\N
32	50	3	\N	\N
33	179	2	\N	\N
34	179	4	\N	\N
35	179	6	\N	\N
36	189	2	\N	\N
37	189	3	\N	\N
38	189	4	\N	\N
39	189	6	\N	\N
40	189	5	\N	\N
41	193	2	\N	\N
42	193	3	\N	\N
43	194	4	\N	\N
44	194	3	\N	\N
45	194	5	\N	\N
46	195	2	\N	\N
47	195	3	\N	\N
48	195	5	\N	\N
49	196	2	\N	\N
50	196	3	\N	\N
51	197	2	\N	\N
52	197	3	\N	\N
53	197	4	\N	\N
54	197	5	\N	\N
55	200	2	\N	\N
56	200	3	\N	\N
57	202	2	\N	\N
58	202	3	\N	\N
59	204	2	\N	\N
60	204	3	\N	\N
61	204	4	\N	\N
62	204	5	\N	\N
63	204	6	\N	\N
64	204	8	\N	\N
65	204	7	\N	\N
66	209	2	\N	\N
67	210	2	\N	\N
68	210	3	\N	\N
69	210	4	\N	\N
70	210	5	\N	\N
71	211	2	\N	\N
72	211	3	\N	\N
74	211	5	\N	\N
78	212	3	\N	\N
79	212	2	\N	\N
80	215	3	\N	\N
81	216	3	\N	\N
82	216	2	\N	\N
83	53	1	\N	\N
84	53	4	\N	\N
85	53	7	\N	\N
86	211	4	\N	\N
87	211	6	\N	\N
88	211	7	\N	\N
89	216	4	\N	\N
90	216	5	\N	\N
91	216	6	\N	\N
92	216	7	\N	\N
93	214	2	\N	\N
94	214	3	\N	\N
95	214	4	\N	\N
96	219	2	\N	\N
97	219	3	\N	\N
98	219	4	\N	\N
99	223	3	\N	\N
100	223	8	\N	\N
101	224	2	\N	\N
102	224	3	\N	\N
103	224	4	\N	\N
104	224	5	\N	\N
105	224	6	\N	\N
106	224	7	\N	\N
108	215	5	\N	\N
109	222	2	\N	\N
110	222	3	\N	\N
111	222	4	\N	\N
112	222	8	\N	\N
113	222	7	\N	\N
114	222	5	\N	\N
115	222	6	\N	\N
116	215	6	\N	\N
117	226	2	\N	\N
118	226	3	\N	\N
119	229	2	\N	\N
120	229	3	\N	\N
121	230	2	\N	\N
122	230	3	\N	\N
123	230	4	\N	\N
124	230	5	\N	\N
125	231	3	\N	\N
126	231	2	\N	\N
127	231	4	\N	\N
128	232	2	\N	\N
129	233	2	\N	\N
130	233	3	\N	\N
131	233	4	\N	\N
132	234	5	\N	\N
133	234	2	\N	\N
134	234	3	\N	\N
135	237	3	\N	\N
136	237	2	\N	\N
137	237	4	\N	\N
138	237	5	\N	\N
139	237	8	\N	\N
140	238	2	\N	\N
141	238	3	\N	\N
142	238	6	\N	\N
143	238	4	\N	\N
144	238	5	\N	\N
145	239	2	\N	\N
146	239	3	\N	\N
147	239	4	\N	\N
149	192	4	\N	\N
151	240	2	\N	\N
152	240	3	\N	\N
153	240	4	\N	\N
154	241	2	\N	\N
155	241	3	\N	\N
156	241	4	\N	\N
157	242	2	\N	\N
158	242	3	\N	\N
159	243	3	\N	\N
160	243	2	\N	\N
161	243	6	\N	\N
162	244	3	\N	\N
163	246	2	\N	\N
164	246	3	\N	\N
165	245	3	\N	\N
166	245	2	\N	\N
167	247	3	\N	\N
168	247	2	\N	\N
169	247	8	\N	\N
170	248	8	\N	\N
171	248	3	\N	\N
172	249	2	\N	\N
173	249	3	\N	\N
174	249	5	\N	\N
175	249	6	\N	\N
176	249	4	\N	\N
177	250	2	\N	\N
178	252	2	\N	\N
179	253	2	\N	\N
180	253	3	\N	\N
181	253	4	\N	\N
182	254	2	\N	\N
183	254	3	\N	\N
184	254	4	\N	\N
185	262	2	\N	\N
186	262	3	\N	\N
187	262	4	\N	\N
188	263	2	\N	\N
189	263	3	\N	\N
190	264	4	\N	\N
191	264	3	\N	\N
192	264	2	\N	\N
193	267	2	\N	\N
194	267	3	\N	\N
195	268	2	\N	\N
196	268	3	\N	\N
197	270	2	\N	\N
198	270	3	\N	\N
199	272	2	\N	\N
200	272	3	\N	\N
201	273	3	\N	\N
202	273	8	\N	\N
203	274	3	\N	\N
204	274	8	\N	\N
205	276	2	\N	\N
206	276	3	\N	\N
207	277	2	\N	\N
208	280	3	\N	\N
209	280	2	\N	\N
213	283	3	\N	\N
214	286	2	\N	\N
215	288	3	\N	\N
216	279	3	\N	\N
217	284	2	\N	\N
218	284	3	\N	\N
219	290	2	\N	\N
220	291	2	\N	\N
221	294	3	\N	\N
222	299	2	\N	\N
223	299	3	\N	\N
224	310	2	\N	\N
225	310	3	\N	\N
226	311	2	\N	\N
227	311	3	\N	\N
228	312	2	\N	\N
229	313	2	\N	\N
230	313	3	\N	\N
231	315	2	\N	\N
232	315	3	\N	\N
233	316	2	\N	\N
234	316	3	\N	\N
235	316	9	\N	\N
236	317	2	\N	\N
237	320	2	\N	\N
238	320	3	\N	\N
239	321	2	\N	\N
240	318	2	\N	\N
242	323	2	\N	\N
243	325	3	\N	\N
247	326	2	\N	\N
248	303	3	\N	\N
249	326	3	\N	\N
250	330	2	\N	\N
254	331	3	\N	\N
255	332	2	\N	\N
256	332	3	\N	\N
257	333	3	\N	\N
258	333	4	\N	\N
259	334	2	\N	\N
260	334	3	\N	\N
261	336	2	\N	\N
262	336	4	\N	\N
263	337	3	\N	\N
264	339	2	\N	\N
265	339	3	\N	\N
266	341	2	\N	\N
267	341	3	\N	\N
268	343	2	\N	\N
269	343	3	\N	\N
270	340	2	\N	\N
271	344	3	\N	\N
272	344	2	\N	\N
\.


--
-- Data for Name: languages; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.languages (id, name, name_ar, code, status, created_at, updated_at, deleted_at) FROM stdin;
1	Malachi Faulkner	Alisa Lun	rn	1	2025-05-03 05:54:18	2025-05-03 05:54:51	2025-05-03 05:54:51
2	Arabic	العربية	ar	1	2025-05-05 06:21:05	2025-05-05 06:21:05	\N
3	English	الإنجليزية	en	1	2025-05-05 06:21:31	2025-05-05 06:21:31	\N
4	French	الفرنسية	fr	1	2025-05-05 06:21:53	2025-05-05 06:21:53	\N
5	Spanish	الإسبانية	es	1	2025-05-05 06:22:24	2025-08-17 13:37:32	2025-08-17 13:37:32
9	Others	أخرى	other	1	2025-08-17 13:40:28	2025-08-17 13:40:28	\N
6	German	الألمانية	de	1	2025-05-05 06:22:44	2025-08-18 11:19:46	2025-08-18 11:19:46
7	Chinese	الصينية	zh	1	2025-05-05 06:23:12	2025-08-18 11:19:53	2025-08-18 11:19:53
8	Urdu	الأردية	ur	1	2025-05-05 06:23:39	2025-08-18 11:20:00	2025-08-18 11:20:00
\.


--
-- Data for Name: looking_ads; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.looking_ads (id, ad_id, category_id, created_at, updated_at) FROM stdin;
1	4	5	2025-03-27 04:31:48	2025-03-27 04:31:48
\.


--
-- Data for Name: main_notifications; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.main_notifications (id, title, content, generated_by, image, created_at, updated_at, title_ar, content_ar) FROM stdin;
1	This is Test	Not every thing free	1	6846e683190ca_1749476995.png	2025-06-09 13:49:55	2025-06-09 13:49:55	\N	\N
2	test	test	1	6846ebacc9a87_1749478316.png	2025-06-09 14:11:57	2025-06-09 14:11:57	\N	\N
3	Hi	Hi	1	684943ba4aaf7_1749631930.jpg	2025-06-11 08:52:10	2025-06-11 08:52:10	\N	\N
4	Hi	Hi	1	6849441b0d2f7_1749632027.jpg	2025-06-11 08:53:47	2025-06-11 08:53:47	\N	\N
5	Buy 1 get 1 Free	Buy 1 get 1 Free	1	68494493e50cd_1749632147.png	2025-06-11 08:55:48	2025-06-11 08:55:48	\N	\N
6	teste	teste	1	6849458ecfef4_1749632398.png	2025-06-11 08:59:59	2025-06-11 08:59:59	\N	\N
7	welcome to luquia	Our app is not intended for users under the age of 18. We do not knowingly collect data from children.	1	6871f7c17af24_1752299457.png	2025-07-12 05:50:57	2025-07-12 05:50:57	\N	\N
8	Membership 50off	Membership 50off on premium users resubscription	1	68723d8594f3d_1752317317.png	2025-07-12 10:48:37	2025-07-12 10:48:37	\N	\N
9	free Standard membership	free Standard membership today only. Join us and search your matches	1	687242313773b_1752318513.jpg	2025-07-12 11:08:33	2025-07-12 11:08:33	\N	\N
10	50off on subscription	50off on subscription. beome a premium member	1	6873702ac9f74_1752395818.png	2025-07-13 08:36:58	2025-07-13 08:36:58	\N	\N
11	50 off on premium subscription	50 off on premium subscription. become a member today	1	6873708d5003a_1752395917.png	2025-07-13 08:38:37	2025-07-13 08:38:37	\N	\N
12	first user 40off	first user 40off	1	687370ce5cb3b_1752395982.jpg	2025-07-13 08:39:42	2025-07-13 08:39:42	\N	\N
13	new test	new test	1	68738b6b751e1_1752402795.png	2025-07-13 10:33:15	2025-07-13 10:33:15	\N	\N
14	hi	hi	1	68738be23f36a_1752402914.png	2025-07-13 10:35:14	2025-07-13 10:35:14	\N	\N
15	Hamid	asfadsfd	1	6873addb38a33_1752411611.png	2025-07-13 13:00:11	2025-07-13 13:00:11	\N	\N
16	dsfsdf	dsfsd	1	6873ae1b6397a_1752411675.png	2025-07-13 13:01:15	2025-07-13 13:01:15	\N	\N
17	jjdsfsd	dsfksdk	1	6873ae4641794_1752411718.png	2025-07-13 13:01:58	2025-07-13 13:01:58	\N	\N
18	hhhhhhhh	jkkkk	1	6873b29e882a4_1752412830.png	2025-07-13 13:20:30	2025-07-13 13:20:30	\N	\N
19	hhhhhhjj	jjjjjj	1	6873b5e728860_1752413671.png	2025-07-13 13:34:31	2025-07-13 13:34:31	\N	\N
20	50off on premium subscription	50off on premium subscription	1	687894012e655_1752732673.png	2025-07-17 06:11:13	2025-07-17 06:11:13	\N	\N
21	dsadsa	sddsa	1	689dee0e89143_1755180558.jpeg	2025-08-14 14:09:18	2025-08-14 14:09:18	\N	\N
22	hi	hi	1	689dee5adf7c9_1755180634.png	2025-08-14 14:10:35	2025-08-14 14:10:35	\N	\N
23	test notifications	إشعارات الاختبار	1	695fa7ebc947a_1767876587.png	2026-01-08 12:49:47	2026-01-08 12:49:47	إشعارات الاختبار	test notifications
\.


--
-- Data for Name: marital_statuses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.marital_statuses (id, name, name_ar, status, deleted_at, created_at, updated_at, show_wife_children_option, gender) FROM stdin;
5	Engaged	مخطوب / مخطوبة	1	2025-05-29 07:32:13	2025-05-03 10:17:17	2025-05-29 07:32:13	f	\N
7	In a Relationship	في علاقة	0	2025-08-18 11:42:24	2025-05-03 10:17:53	2025-08-18 11:42:24	f	\N
6	Separated	منفصل / منفصلة	1	2025-08-18 11:45:23	2025-05-03 10:17:33	2025-08-18 11:45:23	f	Male
8	Single	أعزب	1	\N	2025-06-04 07:45:12	2025-08-18 11:46:04	f	Male
2	Single	عزباء	1	\N	2025-05-03 10:16:16	2025-08-18 11:46:20	f	Female
4	Widowed	أرملة	1	\N	2025-05-03 10:17:01	2025-08-18 11:48:15	t	Female
3	Divorced	مطلق	1	\N	2025-05-03 10:16:45	2025-08-18 11:49:04	t	Male
9	Divorced	مطلقة	1	\N	2025-08-18 11:50:22	2025-08-18 11:50:22	t	Female
10	Widowed	أرمل	1	\N	2025-08-18 11:51:18	2025-08-18 11:51:38	t	Male
1	Married	متزوج	1	2026-01-08 06:21:04	2025-05-03 09:47:14	2026-01-08 06:21:04	t	Male
\.


--
-- Data for Name: migrations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.migrations (id, migration, batch) FROM stdin;
1	0001_01_01_000000_create_users_table	1
2	0001_01_01_000001_create_cache_table	1
3	0001_01_01_000002_create_jobs_table	1
4	2024_12_04_121725_create_companies_table	1
5	2024_12_04_174007_create_permission_tables	1
11	2024_12_05_164934_create_packages_table	2
12	2024_12_05_164957_create_packages_addons_table	2
19	2024_12_05_231725_create_challenges_table	3
20	2024_12_05_232702_create_challenges_companies_table	3
21	2024_12_05_191748_add_fields_to_users_table	4
22	2024_12_10_063233_remove_columns_from_companies_table	5
25	2024_12_10_155646_add_country_id_and_status_to_cities_table	8
26	2024_12_10_165027_create_target_types_table	9
27	2024_12_10_173815_create_event_types_table	10
28	2024_12_10_182826_create_pages_table	11
29	2024_12_10_094132_add_soft_deletes_to_users_table	12
30	2024_12_10_131649_add_soft_deletes_to_challenges_table	12
31	2024_12_11_102429_create_faqs_table	13
32	2024_12_11_104518_create_faqs_table	14
33	2024_12_11_190634_create_events_table	15
34	2024_12_12_171650_add_role_id_to_users_table	16
35	2024_12_16_031035_create_target_types_company_table	17
38	2024_12_22_025151_create_site_settings_table	20
39	2024_12_22_202921_create_sliders_table	21
40	2024_12_22_202959_create_slider_buttons_table	22
41	2024_12_22_204258_create_sliders_table	23
42	2024_12_22_204302_create_slider_buttons_table	23
43	2024_12_24_110324_create_services_table	24
44	2024_12_24_110552_create_service_details_table	25
45	2024_12_24_110641_create_service_faqs_table	26
46	2024_12_25_144910_add_images_and_prices_to_services_table	27
47	2024_12_25_175336_create_quotes_table	28
48	2024_12_25_194520_add_translation_price_to_languages_table	29
49	2024_12_25_203316_create_services_types_table	30
50	2024_12_25_204612_create_services_types_table	31
51	2024_12_26_100307_recreate_services_types_table	32
52	2024_12_26_142627_create_service_pricing_table	33
53	2024_12_26_144059_create_service_pricing_table	34
54	2024_12_26_151334_create_service_pricing_table	35
55	2024_12_26_154043_recreate_services_types_table	36
56	2024_12_26_164628_create_translation_types_table	37
57	2024_12_27_213922_create_bookings_table	38
58	2024_12_28_091000_add_delivery_type_and_status_to_bookings_table	39
59	2024_12_28_145944_create_contact_us_table	40
60	2024_12_30_093601_create_translation_types_categories_table	41
61	2024_12_30_142149_create_delivery_types_table	42
62	2024_12_30_145032_create_delivery_types_table	43
63	2024_12_30_145523_create_delivery_types_table	44
64	2024_12_30_145932_create_delivery_types_table	45
65	2024_12_31_103127_add_columns_to_translation_types_categories_table	46
66	2024_12_31_173752_add_fields_to_bookings_table	47
67	2024_12_31_201549_create_why_choose_us_table	48
68	2024_12_31_204641_create_work_process_table	49
69	2024_12_31_224105_create_home_logos_table	50
70	2024_12_31_225708_create_reviews_table	51
71	2024_12_31_232951_create_insights_table	52
72	2024_12_31_235754_create_home_page_settings_table	53
73	2025_01_01_104657_alter_add_fileds_to_cms_pages	54
74	2025_01_01_115229_alter_add_fileds_to_cms_pages	54
76	2025_01_01_203806_add_delivery_method_price_and_vat_columns_to_bookings_table	55
77	2025_01_29_095444_create_service_atributes_table	56
78	2025_01_29_101737_create_service_atributes_table	57
79	2025_01_31_013415_create_service_atributes_value_table	58
84	2025_02_01_083459_add_bigint_field_id_to_service_booking_fields	63
85	2025_02_03_080934_add_target_field_id_to_field_conditions_table	64
86	2025_02_04_091806_create_services_bookings_table	65
88	2025_02_05_161345_modify_value_nullable_in_services_booking_fields	66
89	2025_02_05_162722_add_field_label_to_services_booking_fields	67
90	2025_02_05_163749_add_booking_id_to_services_bookings	68
91	2025_02_08_110950_add_billing_details_to_services_bookings	69
92	2025_02_08_145535_add_total_to_services_bookings_table	70
93	2025_02_11_144933_add_price_to_service_atributes_values	71
94	2025_02_11_153928_add_status_to_services_booking_table	72
98	2025_03_17_104054_create_categories_table	76
99	2025_01_29_101737_create_category_atributes_table	77
100	2025_01_31_013415_create_category_atributes_value_table	78
101	2025_01_31_031313_create_category_fields_table	79
102	2025_01_31_172442_create_field_conditions_table	80
105	2024_12_05_130018_create_cities_table	81
106	2025_03_19_110943_create_ads_table	82
107	2025_02_04_091921_create_ad_fields_table	83
110	2025_03_19_161754_create_ad_plans_table	86
111	2025_03_20_105759_create_promo_codes_table	87
112	2025_03_19_161432_create_pricing_plans_table	88
113	2025_03_19_161456_create_plan_durations_table	89
114	2024_12_05_125935_create_countries_table	90
115	2024_12_10_113225_add_status_to_countries_table	91
116	2024_12_16_143622_add_dial_code_to_countries_table	92
117	2025_03_22_123445_add_fields_in_users_table	93
118	2025_03_24_054249_create_nationalities_table	94
119	2025_03_24_074100_add_icon_field_in_parent_categories_table	95
120	2025_03_24_083100_alter_field_in_pages_table	96
121	2025_03_24_104842_add_field_in_cities_table	97
122	2025_03_24_105241_add_field_in_countries_table	98
123	2025_03_24_130954_add_field_in_parent_categories_table	99
125	2025_03_25_090550_create_popular_ads_tables	101
132	2025_03_25_090629_create_banners_table	102
133	2025_03_25_142837_create_sliders_table	103
134	2025_03_25_144456_create_slider_items_table	104
135	2025_03_26_121739_create_looking_ads_table	105
136	2025_03_26_183358_create_home_elements_table	106
137	2025_03_27_150718_add_field_in_banners_table	107
138	2025_03_27_161216_create_home_element_ads_table	108
139	2025_03_28_153919_create_verification_requests_table	109
140	2025_03_28_154516_add_field_in_users_table	110
141	2025_04_08_164528_add_fields_in_ads_table	111
142	2025_04_09_170822_drop_column_from_banners_table	112
143	2025_04_09_171259_drop_column_from_sliders_table	113
144	2025_04_10_083428_add_fields_in_category_fields_table	114
146	2025_04_03_115644_add_fields_in_users_table	116
147	2025_03_29_102925_create_personal_access_tokens_table	117
148	2025_04_10_101059_add_fields_in_categories_table	118
149	2025_04_11_073400_add_fields_in_category_fields_table	119
150	2025_04_11_100851_add_field_in_ad_fields_table	120
151	2025_04_11_122326_add_field_in_category_fields_table	121
152	2025_04_12_042242_add_field_in_ads_table	122
153	2025_04_12_065352_create_ad_images_table	123
154	2025_04_14_135759_alter_fields_in_ads_table	124
155	2025_04_16_062850_create_payment_reports_table	125
156	2025_04_16_064647_add_fields_in_categories_table	126
157	2025_04_16_080645_create_motor_makes_table	127
158	2025_04_16_080708_create_motor_models_table	128
161	2025_04_18_175643_add_fields_in_ad_plans_table	131
162	2025_04_18_180259_add_fields_in_ads_table	132
163	2025_04_07_132259_add_field_in_promo_codes_table	133
164	2025_04_21_050509_add_field_in_pages_table	134
165	2025_04_21_065453_create_property_amenities_table	135
166	2025_04_22_120430_add_field_in_field_conditions_table	136
167	2025_04_22_200519_create_support_tickets_table	137
168	2025_04_22_210622_create_ad_requests_table	138
170	2025_04_23_173947_create_ad_reports_table	140
171	2024_12_05_125953_create_emirates_table	141
172	2024_12_21_090718_create_languages_table	142
173	2025_05_02_155946_create_sects_table	143
174	2025_05_02_160003_create_educations_table	144
175	2025_05_02_160018_create_professions_table	145
176	2025_05_02_160043_create_marital_statuses_table	146
178	2025_05_02_160115_create_genetic_diseases_table	148
179	2025_05_02_160138_create_activities_table	149
180	2025_05_02_160147_create_sports_table	150
181	2025_05_02_160056_create_dress_codes_table	151
182	2025_05_03_095556_update_users_table	152
183	2025_05_03_130445_create_user_details_table	153
184	2025_05_03_131539_create_known_languages_table	154
185	2025_05_03_131559_create_user_children_table	155
186	2025_05_03_131608_create_user_activites_table	156
187	2025_05_03_131628_create_user_sports_table	157
188	2025_05_03_132300_create_user_prefrences_table	158
189	2025_05_03_145345_create_user_plans_table	159
190	2025_05_03_172034_add_field_in_sports_table	160
191	2025_05_03_172115_add_field_in_activities_table	161
192	2025_05_12_094852_create_user_requests_table	162
193	2025_05_14_111123_add_field_in_user_plans_table	163
194	2025_05_14_115002_create_user_matches_table	164
195	2025_05_15_142001_create_user_images_table	165
196	2025_04_22_053954_create_notifications_table	166
197	2025_04_18_172441_add_fields_in_payment_reports_table	167
198	2025_03_29_162634_create_temp_users_table	168
199	2025_05_20_192726_add_field_in_users_table	169
200	2025_05_21_083546_add_field_in_user_plans_table	170
201	2025_04_18_134113_create_temp_orders_table	171
202	2025_05_21_072633_create_user_notification_settin_table	172
203	2025_05_21_094140_add_multiple_column_to_users_table	173
204	2025_05_21_110412_add_fields_in_user_preferences_table	174
205	2025_05_21_142704_add_multiple_columns_to_user_preferences_table	175
206	2025_05_22_090533_add_show_wife_child_option_to_marital_status_table	176
207	2025_05_22_124226_create_user_connection_table	177
208	2025_05_23_141025_add_field_in_nationalities_table	178
209	2025_05_24_055343_add_field_in_pricing_plans_table	179
210	2025_05_24_060638_add_field_in_user_plans_table	180
211	2025_03_25_090533_create_badges_tables	181
212	2025_05_26_150630_add_field_in_users_table	182
213	2025_05_27_073319_create_user_diseases_table	183
214	2025_05_27_082106_create_parent_approval_table	184
215	2025_05_27_095931_add_fields_in_temp_users_table	185
216	2025_05_27_154857_create_user_dress_codes_table	186
217	2025_05_27_155118_create_user_marital_statuses_table	187
218	2025_05_28_064117_add_field_in_users_table	188
219	2025_05_28_064126_add_field_in_user_preferences_table	189
220	2025_05_28_073152_alter_fields_in_parent_approvals_table	190
221	2025_05_28_074831_add_fields_in_users_table	191
222	2025_05_28_100826_add_field_in_users_table	192
223	2025_05_16_022948_create_user_connections_table	193
225	2025_05_26_151814_create_user_blocks_table	195
226	2025_05_26_151851_create_user_reports_table	196
227	2025_05_29_072530_create_genetic_disease_variants_table	197
228	2025_05_29_103626_add_field_in_user_diseases_table	198
229	2025_05_27_105607_add_hide_image_to_request_list	199
230	2025_04_23_172549_create_ad_report_types_table	200
231	2025_05_30_140702_add_gender_field_in_marital_statuses_table	201
232	2025_05_30_101244_add_reason_id_coulmn_to_user_reports_table	202
233	2025_06_03_140943_add_field_in_home_logos_table	203
234	2025_06_04_082101_create_user_disease_variants_table	204
235	2025_06_04_145946_create_user_sects_table	205
236	2025_06_04_145954_create_user_educations_table	206
237	2025_06_04_150007_create_user_professions_table	207
238	2025_06_06_074918_add_make_colum_integer	208
239	2025_06_09_133126_add_field_in_notifications_table	209
240	2025_06_09_133253_create_main_notifications_table	210
241	2024_12_10_144153_add_status_to_emirates_table	211
242	2025_07_13_170152_alter_add_name_ar_to_home_logos	212
243	2025_03_20_090616_create_parent_categories_table	213
244	2025_04_22_051521_add_field_in_users_table	213
245	2025_07_17_180457_add_external_customer_id_to_users_table	214
246	2025_07_17_180558_add_external_customer_id_to_temp_users_table	215
247	2025_09_19_160147_create_employments_table	216
248	2025_09_17_180558_add_extra_columns_to_users_table	217
249	2025_09_17_180558_add_extra_columns_to_temp_users_table	218
250	2025_05_26_135312_add_is_reported_column_to_user_connections_table	219
251	2025_11_11_034731_alter_add_gardien_fileds_to_temp_users_and_users	219
252	2025_11_11_045925_alter_add_is_first_push_sent_to_users	219
253	2025_11_11_061619_alter_add_fields_to_parent_approvals	220
254	2025_11_11_000000_create_chat_categories_table	221
255	2025_11_11_000001_create_questions_table	221
256	2025_11_11_000002_create_answers_table	221
257	2025_11_11_072116_alter_add_max_request_count_to_pricing_plans	221
258	2025_11_11_113442_alter_add_active_request_count_to_users	222
259	2025_11_11_114531_alter_add_request_count_to_user_plans	222
262	2024_11_14_000001_create_chats_table	223
263	2024_11_14_000002_create_chat_messages_table	223
264	2025_11_14_075537_alter_change_fileds_to_chats	224
265	2025_11_17_061446_alter_add_skin_color_to_users	225
266	2025_12_26_091136_create_chronic_diseases_table	226
267	2025_12_26_095130_create_chronic_disease_variants_table	226
268	2025_12_26_101032_create_user_chronic_diseases_table	226
269	2025_12_26_101113_create_user_chronic_disease_variants_table	226
270	2025_12_26_120410_alter_add_city_emirate_id_to_user_preferences	227
271	2025_12_29_093842_alter_add_chronic_disease_to_user_details	228
272	2026_01_08_101809_add_arabic_fields_to_notifications_tables	229
\.


--
-- Data for Name: model_has_permissions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.model_has_permissions (permission_id, model_type, model_id) FROM stdin;
\.


--
-- Data for Name: model_has_roles; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.model_has_roles (role_id, model_type, model_id) FROM stdin;
1	App\\Models\\User	1
2	App\\Models\\User	2
2	App\\Models\\User	3
2	App\\Models\\User	4
2	App\\Models\\User	5
2	App\\Models\\User	6
2	App\\Models\\User	13
2	App\\Models\\User	16
2	App\\Models\\User	23
2	App\\Models\\User	32
2	App\\Models\\User	34
2	App\\Models\\User	35
2	App\\Models\\User	36
2	App\\Models\\User	44
2	App\\Models\\User	47
2	App\\Models\\User	48
2	App\\Models\\User	91
2	App\\Models\\User	218
2	App\\Models\\User	49
\.


--
-- Data for Name: motor_makes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.motor_makes (id, name, icon, created_at, updated_at) FROM stdin;
1	Aston Martin	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
2	Audi	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
3	Bentley	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
4	BMW	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
5	Alfa Romeo	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
6	Baic	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
7	Alpina	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
8	Ashok	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
9	Artega	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
10	Cadillac	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
11	Chevrolet	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
12	Chery	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
13	Brilliance	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
14	Buick	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
15	Caterham	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
16	Changan	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
17	BYD	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
18	Bugatti	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
19	Chrysler	\N	2025-04-16 13:35:53	2025-04-16 13:35:53
20	Citroen	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
21	China Automobile	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
22	Dacia	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
23	CMC	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
24	Daihatsu	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
25	Dodge	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
26	Ferrari	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
27	Fiat	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
28	Daewoo	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
29	Eicher	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
30	Dongfeng	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
31	Ford	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
32	GMC	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
33	Geely	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
34	Great Wall	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
35	GAC	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
36	Fisker	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
37	Foton	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
38	Honda	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
39	Hyundai	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
40	Infiniti	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
41	Hummer	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
42	Jaguar	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
43	Jeep	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
44	Kia	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
45	Lada	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
46	Lamborghini	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
47	Koenigsegg	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
48	Isuzu	\N	2025-04-16 13:35:54	2025-04-16 13:35:54
49	Iveco	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
50	Jinbei	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
51	JAC	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
52	King Long	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
53	International 	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
54	KTM	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
55	Land Rover	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
56	Lexus	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
57	Lincoln	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
58	Maserati	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
59	Mazda	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
60	Maybach	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
61	Luxgen	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
62	Mahindra	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
63	Landwind	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
64	Lancia	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
65	Lotus	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
66	Mercedes-Benz	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
67	Mini	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
68	MG	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
69	Mclaren	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
70	Mercury	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
71	Mitsubishi	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
72	Nissan	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
73	Morgan	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
74	Mini (BMW)	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
75	Oldsmobile	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
76	Noble	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
77	Peugeot	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
78	Porsche	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
79	RAM	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
80	Opel	\N	2025-04-16 13:35:55	2025-04-16 13:35:55
81	Proton	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
82	Pontiac	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
83	Pagani	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
84	PGO	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
85	Oullim	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
86	Renault	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
87	Rolls Royce	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
88	SAAB	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
89	Ssangyong	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
90	Seat	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
91	Subaru	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
92	Spyker	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
93	Skoda	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
94	Smart	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
95	Rover	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
96	Suzuki	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
97	Toyota	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
98	Volkswagen	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
99	TATA	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
100	UAZ	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
101	Volvo	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
102	Wiesmann	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
103	Tesla	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
104	ZNA	\N	2025-04-16 13:35:56	2025-04-16 13:35:56
\.


--
-- Data for Name: motor_models; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.motor_models (id, make_id, name, created_at, updated_at) FROM stdin;
1	1	DB9	2025-04-16 13:35:53	2025-04-16 13:35:53
2	1	Vantage	2025-04-16 13:35:53	2025-04-16 13:35:53
3	2	A1	2025-04-16 13:35:53	2025-04-16 13:35:53
4	2	A3	2025-04-16 13:35:53	2025-04-16 13:35:53
5	2	A5	2025-04-16 13:35:53	2025-04-16 13:35:53
6	2	A6	2025-04-16 13:35:53	2025-04-16 13:35:53
7	2	A7	2025-04-16 13:35:53	2025-04-16 13:35:53
8	2	A8	2025-04-16 13:35:53	2025-04-16 13:35:53
9	2	Audi TT	2025-04-16 13:35:53	2025-04-16 13:35:53
10	2	Q3	2025-04-16 13:35:53	2025-04-16 13:35:53
11	2	Q5	2025-04-16 13:35:53	2025-04-16 13:35:53
12	2	Q7	2025-04-16 13:35:53	2025-04-16 13:35:53
13	2	R8	2025-04-16 13:35:53	2025-04-16 13:35:53
14	2	RS4	2025-04-16 13:35:53	2025-04-16 13:35:53
15	2	RS5	2025-04-16 13:35:53	2025-04-16 13:35:53
16	2	RS6	2025-04-16 13:35:53	2025-04-16 13:35:53
17	2	RS7	2025-04-16 13:35:53	2025-04-16 13:35:53
18	2	S3	2025-04-16 13:35:53	2025-04-16 13:35:53
19	2	S5	2025-04-16 13:35:53	2025-04-16 13:35:53
20	2	S6	2025-04-16 13:35:53	2025-04-16 13:35:53
21	2	S7	2025-04-16 13:35:53	2025-04-16 13:35:53
22	2	S8	2025-04-16 13:35:53	2025-04-16 13:35:53
23	3	Arnage	2025-04-16 13:35:53	2025-04-16 13:35:53
24	3	Continental	2025-04-16 13:35:53	2025-04-16 13:35:53
25	3	Continental GT	2025-04-16 13:35:53	2025-04-16 13:35:53
26	3	Continental GTC	2025-04-16 13:35:53	2025-04-16 13:35:53
27	3	Flying Spur	2025-04-16 13:35:53	2025-04-16 13:35:53
28	3	Mulsanne	2025-04-16 13:35:53	2025-04-16 13:35:53
29	4	1-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
30	4	2-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
31	5	146	2025-04-16 13:35:53	2025-04-16 13:35:53
32	5	147	2025-04-16 13:35:53	2025-04-16 13:35:53
33	5	156	2025-04-16 13:35:53	2025-04-16 13:35:53
34	5	166	2025-04-16 13:35:53	2025-04-16 13:35:53
35	5	33	2025-04-16 13:35:53	2025-04-16 13:35:53
36	5	4C	2025-04-16 13:35:53	2025-04-16 13:35:53
37	5	8C Competizione	2025-04-16 13:35:53	2025-04-16 13:35:53
38	5	8C Competizione Coupe	2025-04-16 13:35:53	2025-04-16 13:35:53
39	5	8C Spider	2025-04-16 13:35:53	2025-04-16 13:35:53
40	5	90	2025-04-16 13:35:53	2025-04-16 13:35:53
41	6	A1	2025-04-16 13:35:53	2025-04-16 13:35:53
42	2	A2	2025-04-16 13:35:53	2025-04-16 13:35:53
43	2	A3 E-Tron	2025-04-16 13:35:53	2025-04-16 13:35:53
44	2	A4 All Road Quattro	2025-04-16 13:35:53	2025-04-16 13:35:53
45	2	A4 All Road Quattro	2025-04-16 13:35:53	2025-04-16 13:35:53
46	6	A5	2025-04-16 13:35:53	2025-04-16 13:35:53
47	2	A6 All Road Quattro	2025-04-16 13:35:53	2025-04-16 13:35:53
48	3	Azure	2025-04-16 13:35:53	2025-04-16 13:35:53
49	7	B10	2025-04-16 13:35:53	2025-04-16 13:35:53
50	7	B3	2025-04-16 13:35:53	2025-04-16 13:35:53
51	7	B3 (2007)	2025-04-16 13:35:53	2025-04-16 13:35:53
52	7	B3 (2013)	2025-04-16 13:35:53	2025-04-16 13:35:53
53	7	B4	2025-04-16 13:35:53	2025-04-16 13:35:53
54	7	B5	2025-04-16 13:35:53	2025-04-16 13:35:53
55	7	B5 (2010)	2025-04-16 13:35:53	2025-04-16 13:35:53
56	7	B6	2025-04-16 13:35:53	2025-04-16 13:35:53
57	7	B6 (2012)	2025-04-16 13:35:53	2025-04-16 13:35:53
58	7	B7	2025-04-16 13:35:53	2025-04-16 13:35:53
59	7	B7 (2009)	2025-04-16 13:35:53	2025-04-16 13:35:53
60	5	Brera	2025-04-16 13:35:53	2025-04-16 13:35:53
61	3	Brooklands	2025-04-16 13:35:53	2025-04-16 13:35:53
62	3	Continental Flying Spur	2025-04-16 13:35:53	2025-04-16 13:35:53
63	3	Continental Super Sports	2025-04-16 13:35:53	2025-04-16 13:35:53
64	7	D10	2025-04-16 13:35:53	2025-04-16 13:35:53
65	1	Cygnet	2025-04-16 13:35:53	2025-04-16 13:35:53
66	7	D3	2025-04-16 13:35:53	2025-04-16 13:35:53
67	7	D3 (2013)	2025-04-16 13:35:53	2025-04-16 13:35:53
68	7	D4	2025-04-16 13:35:53	2025-04-16 13:35:53
69	7	D5	2025-04-16 13:35:53	2025-04-16 13:35:53
70	1	DB7	2025-04-16 13:35:53	2025-04-16 13:35:53
71	1	DBS	2025-04-16 13:35:53	2025-04-16 13:35:53
72	8	Falcon	2025-04-16 13:35:53	2025-04-16 13:35:53
73	9	GT	2025-04-16 13:35:53	2025-04-16 13:35:53
74	5	GT	2025-04-16 13:35:53	2025-04-16 13:35:53
75	5	GTV	2025-04-16 13:35:53	2025-04-16 13:35:53
76	8	Leyland	2025-04-16 13:35:53	2025-04-16 13:35:53
77	5	Mito	2025-04-16 13:35:53	2025-04-16 13:35:53
78	3	New Continental GT	2025-04-16 13:35:53	2025-04-16 13:35:53
79	3	New Continental GTC	2025-04-16 13:35:53	2025-04-16 13:35:53
80	1	ONE-77	2025-04-16 13:35:53	2025-04-16 13:35:53
81	7	Roadster	2025-04-16 13:35:53	2025-04-16 13:35:53
82	7	Roadster S	2025-04-16 13:35:53	2025-04-16 13:35:53
83	2	RS3	2025-04-16 13:35:53	2025-04-16 13:35:53
84	2	RS8	2025-04-16 13:35:53	2025-04-16 13:35:53
85	2	S4	2025-04-16 13:35:53	2025-04-16 13:35:53
86	5	Spider	2025-04-16 13:35:53	2025-04-16 13:35:53
87	2	TT	2025-04-16 13:35:53	2025-04-16 13:35:53
88	2	TTS	2025-04-16 13:35:53	2025-04-16 13:35:53
89	3	Turbo	2025-04-16 13:35:53	2025-04-16 13:35:53
90	1	V12 Vantage	2025-04-16 13:35:53	2025-04-16 13:35:53
91	1	V8 Vantage	2025-04-16 13:35:53	2025-04-16 13:35:53
92	1	Virage	2025-04-16 13:35:53	2025-04-16 13:35:53
93	7	XD3	2025-04-16 13:35:53	2025-04-16 13:35:53
94	1	Zagato	2025-04-16 13:35:53	2025-04-16 13:35:53
95	1	Rapide	2025-04-16 13:35:53	2025-04-16 13:35:53
96	1	Vanquish	2025-04-16 13:35:53	2025-04-16 13:35:53
97	4	3-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
98	4	4-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
99	4	5-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
100	4	6-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
101	4	7-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
102	4	M2	2025-04-16 13:35:53	2025-04-16 13:35:53
103	4	M3	2025-04-16 13:35:53	2025-04-16 13:35:53
104	4	M4	2025-04-16 13:35:53	2025-04-16 13:35:53
105	4	M5	2025-04-16 13:35:53	2025-04-16 13:35:53
106	4	M6	2025-04-16 13:35:53	2025-04-16 13:35:53
107	4	X 4	2025-04-16 13:35:53	2025-04-16 13:35:53
108	4	X1	2025-04-16 13:35:53	2025-04-16 13:35:53
109	4	X3	2025-04-16 13:35:53	2025-04-16 13:35:53
110	4	X4	2025-04-16 13:35:53	2025-04-16 13:35:53
111	4	X5	2025-04-16 13:35:53	2025-04-16 13:35:53
112	4	X5 M	2025-04-16 13:35:53	2025-04-16 13:35:53
113	4	X6	2025-04-16 13:35:53	2025-04-16 13:35:53
114	4	X6 M	2025-04-16 13:35:53	2025-04-16 13:35:53
115	10	ATS	2025-04-16 13:35:53	2025-04-16 13:35:53
116	10	ATS-V	2025-04-16 13:35:53	2025-04-16 13:35:53
117	10	CTS	2025-04-16 13:35:53	2025-04-16 13:35:53
118	10	CTS-V	2025-04-16 13:35:53	2025-04-16 13:35:53
119	10	Escalade	2025-04-16 13:35:53	2025-04-16 13:35:53
120	10	XTS	2025-04-16 13:35:53	2025-04-16 13:35:53
121	11	Camaro	2025-04-16 13:35:53	2025-04-16 13:35:53
122	11	Caprice	2025-04-16 13:35:53	2025-04-16 13:35:53
123	11	Captiva	2025-04-16 13:35:53	2025-04-16 13:35:53
124	4	2er Gran Tourer	2025-04-16 13:35:53	2025-04-16 13:35:53
125	4	3er GT	2025-04-16 13:35:53	2025-04-16 13:35:53
126	4	5er GT	2025-04-16 13:35:53	2025-04-16 13:35:53
127	10	62	2025-04-16 13:35:53	2025-04-16 13:35:53
128	4	8-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
129	12	A11 WindCloud	2025-04-16 13:35:53	2025-04-16 13:35:53
130	12	Arrizo 7	2025-04-16 13:35:53	2025-04-16 13:35:53
131	11	Astro	2025-04-16 13:35:53	2025-04-16 13:35:53
132	11	Avalanche	2025-04-16 13:35:53	2025-04-16 13:35:53
133	11	Aveo	2025-04-16 13:35:53	2025-04-16 13:35:53
134	11	Aveo5	2025-04-16 13:35:53	2025-04-16 13:35:53
135	11	Barina	2025-04-16 13:35:53	2025-04-16 13:35:53
136	11	Blazer	2025-04-16 13:35:53	2025-04-16 13:35:53
137	10	BLS	2025-04-16 13:35:53	2025-04-16 13:35:53
138	13	BS4	2025-04-16 13:35:53	2025-04-16 13:35:53
139	13	BS6	2025-04-16 13:35:53	2025-04-16 13:35:53
140	11	Caravan	2025-04-16 13:35:53	2025-04-16 13:35:53
141	10	Catera	2025-04-16 13:35:53	2025-04-16 13:35:53
142	11	Cavalier	2025-04-16 13:35:53	2025-04-16 13:35:53
143	14	Century	2025-04-16 13:35:53	2025-04-16 13:35:53
144	15	Classic 7	2025-04-16 13:35:53	2025-04-16 13:35:53
145	16	CS35	2025-04-16 13:35:53	2025-04-16 13:35:53
146	16	CS75	2025-04-16 13:35:53	2025-04-16 13:35:53
147	10	Deville	2025-04-16 13:35:53	2025-04-16 13:35:53
148	10	DTS	2025-04-16 13:35:53	2025-04-16 13:35:53
149	12	E5	2025-04-16 13:35:53	2025-04-16 13:35:53
150	12	E8	2025-04-16 13:35:53	2025-04-16 13:35:53
151	16	EADO	2025-04-16 13:35:53	2025-04-16 13:35:53
152	10	Eldorado	2025-04-16 13:35:53	2025-04-16 13:35:53
153	14	Enclave	2025-04-16 13:35:53	2025-04-16 13:35:53
154	10	ESV	2025-04-16 13:35:53	2025-04-16 13:35:53
155	17	F3	2025-04-16 13:35:53	2025-04-16 13:35:53
156	17	F3-AT	2025-04-16 13:35:53	2025-04-16 13:35:53
157	17	F3R	2025-04-16 13:35:53	2025-04-16 13:35:53
158	17	F6	2025-04-16 13:35:53	2025-04-16 13:35:53
159	13	FSV	2025-04-16 13:35:53	2025-04-16 13:35:53
160	13	FRV Cross	2025-04-16 13:35:53	2025-04-16 13:35:53
161	13	FRV	2025-04-16 13:35:53	2025-04-16 13:35:53
162	18	Grand Sport	2025-04-16 13:35:53	2025-04-16 13:35:53
163	13	H530	2025-04-16 13:35:53	2025-04-16 13:35:53
164	4	I3	2025-04-16 13:35:53	2025-04-16 13:35:53
165	4	I8	2025-04-16 13:35:53	2025-04-16 13:35:53
166	13	Jinbei Hammer Head	2025-04-16 13:35:53	2025-04-16 13:35:53
167	14	Lacrosse	2025-04-16 13:35:53	2025-04-16 13:35:53
168	14	Lesabre	2025-04-16 13:35:53	2025-04-16 13:35:53
169	14	Park Avenue	2025-04-16 13:35:53	2025-04-16 13:35:53
170	14	Rainier	2025-04-16 13:35:53	2025-04-16 13:35:53
171	14	Regal	2025-04-16 13:35:53	2025-04-16 13:35:53
172	12	S11 QQ	2025-04-16 13:35:53	2025-04-16 13:35:53
173	17	S6	2025-04-16 13:35:53	2025-04-16 13:35:53
174	15	Seven	2025-04-16 13:35:53	2025-04-16 13:35:53
175	10	Seville	2025-04-16 13:35:53	2025-04-16 13:35:53
176	10	SLS	2025-04-16 13:35:53	2025-04-16 13:35:53
177	15	Super 7	2025-04-16 13:35:53	2025-04-16 13:35:53
178	10	STS	2025-04-16 13:35:53	2025-04-16 13:35:53
179	10	STS-V	2025-04-16 13:35:53	2025-04-16 13:35:53
180	14	Super-Series	2025-04-16 13:35:53	2025-04-16 13:35:53
181	18	Super Sport	2025-04-16 13:35:53	2025-04-16 13:35:53
182	12	T11 Tiggo	2025-04-16 13:35:53	2025-04-16 13:35:53
183	12	Tiggo 5	2025-04-16 13:35:53	2025-04-16 13:35:53
184	12	Tiggo	2025-04-16 13:35:53	2025-04-16 13:35:53
185	13	V5	2025-04-16 13:35:53	2025-04-16 13:35:53
186	12	V5 Crossover	2025-04-16 13:35:53	2025-04-16 13:35:53
187	18	Veyron	2025-04-16 13:35:53	2025-04-16 13:35:53
188	18	Vitesse	2025-04-16 13:35:53	2025-04-16 13:35:53
189	10	XLR	2025-04-16 13:35:53	2025-04-16 13:35:53
190	10	XLR-V	2025-04-16 13:35:53	2025-04-16 13:35:53
191	4	Z3	2025-04-16 13:35:53	2025-04-16 13:35:53
192	4	Z4	2025-04-16 13:35:53	2025-04-16 13:35:53
193	4	Z8	2025-04-16 13:35:53	2025-04-16 13:35:53
194	11	Corvette	2025-04-16 13:35:53	2025-04-16 13:35:53
195	11	Cruze	2025-04-16 13:35:53	2025-04-16 13:35:53
196	11	Impala	2025-04-16 13:35:53	2025-04-16 13:35:53
197	11	Malibu	2025-04-16 13:35:53	2025-04-16 13:35:53
198	11	Silverado	2025-04-16 13:35:53	2025-04-16 13:35:53
199	11	Sonic	2025-04-16 13:35:53	2025-04-16 13:35:53
200	11	Spark	2025-04-16 13:35:53	2025-04-16 13:35:53
201	11	Suburban	2025-04-16 13:35:53	2025-04-16 13:35:53
202	11	Tahoe	2025-04-16 13:35:53	2025-04-16 13:35:53
203	11	Traverse	2025-04-16 13:35:53	2025-04-16 13:35:53
204	11	Trax	2025-04-16 13:35:53	2025-04-16 13:35:53
205	19	200	2025-04-16 13:35:53	2025-04-16 13:35:53
206	19	200C	2025-04-16 13:35:54	2025-04-16 13:35:54
207	19	300C	2025-04-16 13:35:54	2025-04-16 13:35:54
208	19	300M	2025-04-16 13:35:54	2025-04-16 13:35:54
209	19	300 M	2025-04-16 13:35:54	2025-04-16 13:35:54
210	19	Aspen	2025-04-16 13:35:54	2025-04-16 13:35:54
211	19	Avenger	2025-04-16 13:35:54	2025-04-16 13:35:54
212	20	AX	2025-04-16 13:35:54	2025-04-16 13:35:54
213	20	Axel	2025-04-16 13:35:54	2025-04-16 13:35:54
214	20	Berlingo PKW	2025-04-16 13:35:54	2025-04-16 13:35:54
215	20	Berlingo	2025-04-16 13:35:54	2025-04-16 13:35:54
216	20	C1	2025-04-16 13:35:54	2025-04-16 13:35:54
217	20	C2	2025-04-16 13:35:54	2025-04-16 13:35:54
218	20	C3	2025-04-16 13:35:54	2025-04-16 13:35:54
219	20	C3 Picasso	2025-04-16 13:35:54	2025-04-16 13:35:54
220	20	C4	2025-04-16 13:35:54	2025-04-16 13:35:54
221	20	C4 AirCross	2025-04-16 13:35:54	2025-04-16 13:35:54
222	20	C4 Cactus	2025-04-16 13:35:54	2025-04-16 13:35:54
223	20	C4 Picasso	2025-04-16 13:35:54	2025-04-16 13:35:54
224	20	C5	2025-04-16 13:35:54	2025-04-16 13:35:54
225	20	C6	2025-04-16 13:35:54	2025-04-16 13:35:54
226	20	C-Crosser	2025-04-16 13:35:54	2025-04-16 13:35:54
227	21	CEO	2025-04-16 13:35:54	2025-04-16 13:35:54
228	20	C-Elysee	2025-04-16 13:35:54	2025-04-16 13:35:54
229	19	Centura	2025-04-16 13:35:54	2025-04-16 13:35:54
230	19	Charger	2025-04-16 13:35:54	2025-04-16 13:35:54
231	11	Chevy	2025-04-16 13:35:54	2025-04-16 13:35:54
232	11	Cobalt	2025-04-16 13:35:54	2025-04-16 13:35:54
233	11	Colorado	2025-04-16 13:35:54	2025-04-16 13:35:54
234	19	Concorde	2025-04-16 13:35:54	2025-04-16 13:35:54
235	19	Cordoba	2025-04-16 13:35:54	2025-04-16 13:35:54
236	19	Crossfire	2025-04-16 13:35:54	2025-04-16 13:35:54
237	11	CSV	2025-04-16 13:35:54	2025-04-16 13:35:54
238	20	C-Zero	2025-04-16 13:35:54	2025-04-16 13:35:54
239	22	Dokker	2025-04-16 13:35:54	2025-04-16 13:35:54
240	20	DS3	2025-04-16 13:35:54	2025-04-16 13:35:54
241	20	DS4	2025-04-16 13:35:54	2025-04-16 13:35:54
242	20	DS5	2025-04-16 13:35:54	2025-04-16 13:35:54
243	11	Elcamino	2025-04-16 13:35:54	2025-04-16 13:35:54
244	11	Epica	2025-04-16 13:35:54	2025-04-16 13:35:54
245	11	Equinox	2025-04-16 13:35:54	2025-04-16 13:35:54
246	11	Evanda	2025-04-16 13:35:54	2025-04-16 13:35:54
247	11	Explorer	2025-04-16 13:35:54	2025-04-16 13:35:54
248	11	Express	2025-04-16 13:35:54	2025-04-16 13:35:54
249	19	Grand Voyager	2025-04-16 13:35:54	2025-04-16 13:35:54
250	11	HHR	2025-04-16 13:35:54	2025-04-16 13:35:54
251	19	Intrepid	2025-04-16 13:35:54	2025-04-16 13:35:54
252	11	Kalos	2025-04-16 13:35:54	2025-04-16 13:35:54
253	11	Lacetti	2025-04-16 13:35:54	2025-04-16 13:35:54
254	19	Lebaron	2025-04-16 13:35:54	2025-04-16 13:35:54
255	19	LHS	2025-04-16 13:35:54	2025-04-16 13:35:54
256	22	Lodgy	2025-04-16 13:35:54	2025-04-16 13:35:54
257	11	Lumina	2025-04-16 13:35:54	2025-04-16 13:35:54
258	11	Matiz	2025-04-16 13:35:54	2025-04-16 13:35:54
259	20	Nemo PKW	2025-04-16 13:35:54	2025-04-16 13:35:54
260	19	Neon	2025-04-16 13:35:54	2025-04-16 13:35:54
261	19	Newport	2025-04-16 13:35:54	2025-04-16 13:35:54
262	11	Nubira	2025-04-16 13:35:54	2025-04-16 13:35:54
263	11	Optra	2025-04-16 13:35:54	2025-04-16 13:35:54
264	11	Orlando	2025-04-16 13:35:54	2025-04-16 13:35:54
265	19	Pacifica	2025-04-16 13:35:54	2025-04-16 13:35:54
266	20	Picasso	2025-04-16 13:35:54	2025-04-16 13:35:54
267	19	Pick Up	2025-04-16 13:35:54	2025-04-16 13:35:54
268	11	Pick Up	2025-04-16 13:35:54	2025-04-16 13:35:54
269	20	Pluriel	2025-04-16 13:35:54	2025-04-16 13:35:54
270	19	Prowler	2025-04-16 13:35:54	2025-04-16 13:35:54
271	19	PT Cruiser	2025-04-16 13:35:54	2025-04-16 13:35:54
272	11	Rezzo	2025-04-16 13:35:54	2025-04-16 13:35:54
273	20	Saxo	2025-04-16 13:35:54	2025-04-16 13:35:54
274	19	Sebring	2025-04-16 13:35:54	2025-04-16 13:35:54
275	11	SSR	2025-04-16 13:35:54	2025-04-16 13:35:54
276	19	Stratus	2025-04-16 13:35:54	2025-04-16 13:35:54
277	11	Terrain	2025-04-16 13:35:54	2025-04-16 13:35:54
278	19	Town	2025-04-16 13:35:54	2025-04-16 13:35:54
279	11	Tracker	2025-04-16 13:35:54	2025-04-16 13:35:54
280	11	Trans Sport	2025-04-16 13:35:54	2025-04-16 13:35:54
281	11	T-Series	2025-04-16 13:35:54	2025-04-16 13:35:54
282	21	UFO	2025-04-16 13:35:54	2025-04-16 13:35:54
283	11	Uplander	2025-04-16 13:35:54	2025-04-16 13:35:54
284	11	Venture	2025-04-16 13:35:54	2025-04-16 13:35:54
285	23	Veryca	2025-04-16 13:35:54	2025-04-16 13:35:54
286	11	Volt	2025-04-16 13:35:54	2025-04-16 13:35:54
287	19	Voyager	2025-04-16 13:35:54	2025-04-16 13:35:54
288	20	Xsara	2025-04-16 13:35:54	2025-04-16 13:35:54
289	20	Xsara Picasso	2025-04-16 13:35:54	2025-04-16 13:35:54
290	23	Z7	2025-04-16 13:35:54	2025-04-16 13:35:54
291	24	Materia	2025-04-16 13:35:54	2025-04-16 13:35:54
292	24	Sirion	2025-04-16 13:35:54	2025-04-16 13:35:54
293	24	Terios	2025-04-16 13:35:54	2025-04-16 13:35:54
294	25	Challenger	2025-04-16 13:35:54	2025-04-16 13:35:54
295	25	Charger	2025-04-16 13:35:54	2025-04-16 13:35:54
296	25	Durango	2025-04-16 13:35:54	2025-04-16 13:35:54
297	26	488	2025-04-16 13:35:54	2025-04-16 13:35:54
298	27	500	2025-04-16 13:35:54	2025-04-16 13:35:54
299	26	126	2025-04-16 13:35:54	2025-04-16 13:35:54
300	27	127	2025-04-16 13:35:54	2025-04-16 13:35:54
301	27	131	2025-04-16 13:35:54	2025-04-16 13:35:54
302	27	132	2025-04-16 13:35:54	2025-04-16 13:35:54
303	27	133	2025-04-16 13:35:54	2025-04-16 13:35:54
304	27	1400	2025-04-16 13:35:54	2025-04-16 13:35:54
305	26	206	2025-04-16 13:35:54	2025-04-16 13:35:54
306	26	306	2025-04-16 13:35:54	2025-04-16 13:35:54
307	26	308	2025-04-16 13:35:54	2025-04-16 13:35:54
308	26	355	2025-04-16 13:35:54	2025-04-16 13:35:54
309	26	360	2025-04-16 13:35:54	2025-04-16 13:35:54
310	26	360 Modena F1	2025-04-16 13:35:54	2025-04-16 13:35:54
311	26	430	2025-04-16 13:35:54	2025-04-16 13:35:54
312	26	456	2025-04-16 13:35:54	2025-04-16 13:35:54
313	26	458	2025-04-16 13:35:54	2025-04-16 13:35:54
314	27	500L	2025-04-16 13:35:54	2025-04-16 13:35:54
315	26	512	2025-04-16 13:35:54	2025-04-16 13:35:54
316	26	550 Barchetta	2025-04-16 13:35:54	2025-04-16 13:35:54
317	26	550 Maranello	2025-04-16 13:35:54	2025-04-16 13:35:54
318	26	575	2025-04-16 13:35:54	2025-04-16 13:35:54
319	26	575M	2025-04-16 13:35:54	2025-04-16 13:35:54
320	26	599	2025-04-16 13:35:54	2025-04-16 13:35:54
321	26	599 GTB	2025-04-16 13:35:54	2025-04-16 13:35:54
322	26	612	2025-04-16 13:35:54	2025-04-16 13:35:54
323	27	Abarth	2025-04-16 13:35:54	2025-04-16 13:35:54
324	24	Applause	2025-04-16 13:35:54	2025-04-16 13:35:54
325	25	Avenger	2025-04-16 13:35:54	2025-04-16 13:35:54
326	27	Barchrtta	2025-04-16 13:35:54	2025-04-16 13:35:54
327	27	Brava	2025-04-16 13:35:54	2025-04-16 13:35:54
328	27	Bravo	2025-04-16 13:35:54	2025-04-16 13:35:54
329	25	Caliber	2025-04-16 13:35:54	2025-04-16 13:35:54
330	26	California	2025-04-16 13:35:54	2025-04-16 13:35:54
331	26	California T	2025-04-16 13:35:54	2025-04-16 13:35:54
332	25	Caravan	2025-04-16 13:35:54	2025-04-16 13:35:54
333	24	Charade	2025-04-16 13:35:54	2025-04-16 13:35:54
334	28	Cielo	2025-04-16 13:35:54	2025-04-16 13:35:54
335	24	Copen	2025-04-16 13:35:54	2025-04-16 13:35:54
336	27	Croma	2025-04-16 13:35:54	2025-04-16 13:35:54
337	29	Cruiser	2025-04-16 13:35:54	2025-04-16 13:35:54
338	24	Cuore	2025-04-16 13:35:54	2025-04-16 13:35:54
339	25	Dakota	2025-04-16 13:35:54	2025-04-16 13:35:54
340	25	Dart	2025-04-16 13:35:54	2025-04-16 13:35:54
341	24	Deluxe	2025-04-16 13:35:54	2025-04-16 13:35:54
342	27	Doblo	2025-04-16 13:35:54	2025-04-16 13:35:54
343	27	Doblo Neu	2025-04-16 13:35:54	2025-04-16 13:35:54
344	27	Ducato	2025-04-16 13:35:54	2025-04-16 13:35:54
345	27	Duna	2025-04-16 13:35:54	2025-04-16 13:35:54
346	26	Enzo	2025-04-16 13:35:54	2025-04-16 13:35:54
347	28	Espero	2025-04-16 13:35:54	2025-04-16 13:35:54
348	28	Evanda	2025-04-16 13:35:54	2025-04-16 13:35:54
349	26	F12	2025-04-16 13:35:54	2025-04-16 13:35:54
350	26	F40	2025-04-16 13:35:54	2025-04-16 13:35:54
351	26	F430	2025-04-16 13:35:54	2025-04-16 13:35:54
352	26	F50	2025-04-16 13:35:54	2025-04-16 13:35:54
353	26	F575M F1	2025-04-16 13:35:54	2025-04-16 13:35:54
354	26	F575 SuperAmerica	2025-04-16 13:35:54	2025-04-16 13:35:54
355	26	FF	2025-04-16 13:35:54	2025-04-16 13:35:54
356	27	Fiorino	2025-04-16 13:35:54	2025-04-16 13:35:54
357	27	Grande Punto	2025-04-16 13:35:54	2025-04-16 13:35:54
358	24	Gran Max	2025-04-16 13:35:54	2025-04-16 13:35:54
359	26	GTO	2025-04-16 13:35:54	2025-04-16 13:35:54
360	30	H30 Cross	2025-04-16 13:35:54	2025-04-16 13:35:54
361	25	Journey	2025-04-16 13:35:54	2025-04-16 13:35:54
362	28	Kalos	2025-04-16 13:35:54	2025-04-16 13:35:54
363	26	LA	2025-04-16 13:35:54	2025-04-16 13:35:54
364	28	Lacetti	2025-04-16 13:35:54	2025-04-16 13:35:54
365	28	Lanos	2025-04-16 13:35:54	2025-04-16 13:35:54
366	25	Laramie	2025-04-16 13:35:54	2025-04-16 13:35:54
367	28	Leganza	2025-04-16 13:35:54	2025-04-16 13:35:54
368	22	Logan	2025-04-16 13:35:54	2025-04-16 13:35:54
369	22	Logan MCV	2025-04-16 13:35:54	2025-04-16 13:35:54
370	25	Magnum	2025-04-16 13:35:54	2025-04-16 13:35:54
371	28	Matiz	2025-04-16 13:35:54	2025-04-16 13:35:54
372	24	Mira	2025-04-16 13:35:54	2025-04-16 13:35:54
373	28	Musso	2025-04-16 13:35:54	2025-04-16 13:35:54
374	25	Neon	2025-04-16 13:35:54	2025-04-16 13:35:54
375	28	Nova	2025-04-16 13:35:54	2025-04-16 13:35:54
376	28	Nubira	2025-04-16 13:35:54	2025-04-16 13:35:54
377	28	Racer	2025-04-16 13:35:54	2025-04-16 13:35:54
378	25	Ram	2025-04-16 13:35:54	2025-04-16 13:35:54
379	28	Rexton	2025-04-16 13:35:54	2025-04-16 13:35:54
380	28	Rezzo	2025-04-16 13:35:54	2025-04-16 13:35:54
381	24	Rocky	2025-04-16 13:35:54	2025-04-16 13:35:54
382	30	S30	2025-04-16 13:35:54	2025-04-16 13:35:54
383	22	Sandero	2025-04-16 13:35:54	2025-04-16 13:35:54
384	26	SuperAmerica	2025-04-16 13:35:54	2025-04-16 13:35:54
385	28	Tacuma	2025-04-16 13:35:54	2025-04-16 13:35:54
386	24	Trevis	2025-04-16 13:35:54	2025-04-16 13:35:54
387	25	Viper	2025-04-16 13:35:54	2025-04-16 13:35:54
388	24	YRV	2025-04-16 13:35:54	2025-04-16 13:35:54
389	27	LINEA	2025-04-16 13:35:54	2025-04-16 13:35:54
390	31	Eco Sport	2025-04-16 13:35:54	2025-04-16 13:35:54
391	31	Edge	2025-04-16 13:35:54	2025-04-16 13:35:54
392	31	Escape	2025-04-16 13:35:54	2025-04-16 13:35:54
393	31	Expedition	2025-04-16 13:35:54	2025-04-16 13:35:54
394	31	Explorer	2025-04-16 13:35:54	2025-04-16 13:35:54
395	31	F150	2025-04-16 13:35:54	2025-04-16 13:35:54
396	31	Fiesta	2025-04-16 13:35:54	2025-04-16 13:35:54
397	31	Figo	2025-04-16 13:35:54	2025-04-16 13:35:54
398	31	Flex	2025-04-16 13:35:54	2025-04-16 13:35:54
399	31	Focus	2025-04-16 13:35:54	2025-04-16 13:35:54
400	31	Fusion	2025-04-16 13:35:54	2025-04-16 13:35:54
401	31	Mustang	2025-04-16 13:35:54	2025-04-16 13:35:54
402	31	Ranger	2025-04-16 13:35:54	2025-04-16 13:35:54
403	31	Taurus	2025-04-16 13:35:54	2025-04-16 13:35:54
404	32	Acadia	2025-04-16 13:35:54	2025-04-16 13:35:54
405	32	Sierra 1500	2025-04-16 13:35:54	2025-04-16 13:35:54
406	32	Yukon	2025-04-16 13:35:54	2025-04-16 13:35:54
407	31	B-Max	2025-04-16 13:35:54	2025-04-16 13:35:54
408	31	Bronco	2025-04-16 13:35:54	2025-04-16 13:35:54
409	32	Canyon	2025-04-16 13:35:54	2025-04-16 13:35:54
410	33	CK	2025-04-16 13:35:54	2025-04-16 13:35:54
411	31	C-Max	2025-04-16 13:35:54	2025-04-16 13:35:54
412	31	Contour	2025-04-16 13:35:54	2025-04-16 13:35:54
413	31	Crown Victoria	2025-04-16 13:35:54	2025-04-16 13:35:54
414	34	Deer	2025-04-16 13:35:54	2025-04-16 13:35:54
415	32	Denali	2025-04-16 13:35:54	2025-04-16 13:35:54
416	33	Emgrand 8	2025-04-16 13:35:54	2025-04-16 13:35:54
417	33	Emgrand X7	2025-04-16 13:35:54	2025-04-16 13:35:54
418	32	Envoy	2025-04-16 13:35:54	2025-04-16 13:35:54
419	31	Escort	2025-04-16 13:35:54	2025-04-16 13:35:54
420	31	Everest	2025-04-16 13:35:54	2025-04-16 13:35:54
421	31	Excursion	2025-04-16 13:35:54	2025-04-16 13:35:54
422	31	Expedition EL	2025-04-16 13:35:54	2025-04-16 13:35:54
423	31	Fairlane	2025-04-16 13:35:54	2025-04-16 13:35:54
424	31	Five Hundred	2025-04-16 13:35:54	2025-04-16 13:35:54
425	31	Focus C-Max	2025-04-16 13:35:54	2025-04-16 13:35:54
426	31	Focus Electric	2025-04-16 13:35:54	2025-04-16 13:35:54
427	31	Freestar	2025-04-16 13:35:54	2025-04-16 13:35:54
428	31	F-Series	2025-04-16 13:35:54	2025-04-16 13:35:54
429	35	GA3	2025-04-16 13:35:54	2025-04-16 13:35:54
430	35	GA5	2025-04-16 13:35:54	2025-04-16 13:35:54
431	31	Galaxy	2025-04-16 13:35:54	2025-04-16 13:35:54
432	33	GC2	2025-04-16 13:35:54	2025-04-16 13:35:54
433	33	GC6	2025-04-16 13:35:54	2025-04-16 13:35:54
434	33	GC7	2025-04-16 13:35:54	2025-04-16 13:35:54
435	31	Granada	2025-04-16 13:35:54	2025-04-16 13:35:54
436	35	GS5	2025-04-16 13:35:54	2025-04-16 13:35:54
437	33	GX2	2025-04-16 13:35:54	2025-04-16 13:35:54
438	27	IDEA	2025-04-16 13:35:54	2025-04-16 13:35:54
439	32	Jimmy	2025-04-16 13:35:54	2025-04-16 13:35:54
440	31	KA	2025-04-16 13:35:54	2025-04-16 13:35:54
441	36	Karma	2025-04-16 13:35:54	2025-04-16 13:35:54
442	31	Kuga	2025-04-16 13:35:54	2025-04-16 13:35:54
443	27	Marea	2025-04-16 13:35:54	2025-04-16 13:35:54
444	31	Maverick	2025-04-16 13:35:54	2025-04-16 13:35:54
445	31	Megastar	2025-04-16 13:35:54	2025-04-16 13:35:54
446	31	Monarch	2025-04-16 13:35:54	2025-04-16 13:35:54
447	31	Mondeo	2025-04-16 13:35:54	2025-04-16 13:35:54
448	27	Multipla	2025-04-16 13:35:54	2025-04-16 13:35:54
449	31	Mustang GT	2025-04-16 13:35:54	2025-04-16 13:35:54
450	31	Orion	2025-04-16 13:35:54	2025-04-16 13:35:54
451	27	Other	2025-04-16 13:35:54	2025-04-16 13:35:54
452	27	Palio	2025-04-16 13:35:54	2025-04-16 13:35:54
453	27	Panda	2025-04-16 13:35:54	2025-04-16 13:35:54
454	31	PickUp	2025-04-16 13:35:54	2025-04-16 13:35:54
455	31	Probe	2025-04-16 13:35:54	2025-04-16 13:35:54
456	27	Punto	2025-04-16 13:35:54	2025-04-16 13:35:54
457	27	Punto Evo	2025-04-16 13:35:54	2025-04-16 13:35:54
458	27	Qubo	2025-04-16 13:35:54	2025-04-16 13:35:54
459	27	Regata	2025-04-16 13:35:54	2025-04-16 13:35:54
460	27	Ritmo	2025-04-16 13:35:54	2025-04-16 13:35:54
461	32	Safari	2025-04-16 13:35:54	2025-04-16 13:35:54
462	32	Savana	2025-04-16 13:35:54	2025-04-16 13:35:54
463	27	Sedici	2025-04-16 13:35:54	2025-04-16 13:35:54
464	27	Seicento	2025-04-16 13:35:54	2025-04-16 13:35:54
465	27	Siena	2025-04-16 13:35:54	2025-04-16 13:35:54
466	32	Sierra	2025-04-16 13:35:54	2025-04-16 13:35:54
467	31	Sierra	2025-04-16 13:35:54	2025-04-16 13:35:54
468	31	S-Max	2025-04-16 13:35:54	2025-04-16 13:35:54
469	27	Stilo	2025-04-16 13:35:54	2025-04-16 13:35:54
470	31	Sport Trac	2025-04-16 13:35:54	2025-04-16 13:35:54
471	31	Streetka	2025-04-16 13:35:54	2025-04-16 13:35:54
472	37	SUP	2025-04-16 13:35:54	2025-04-16 13:35:54
473	32	Suburban	2025-04-16 13:35:54	2025-04-16 13:35:54
474	31	Tempo	2025-04-16 13:35:54	2025-04-16 13:35:54
475	27	Tempra	2025-04-16 13:35:54	2025-04-16 13:35:54
476	31	Thunderbird	2025-04-16 13:35:54	2025-04-16 13:35:54
477	31	Tourneo Connect	2025-04-16 13:35:54	2025-04-16 13:35:54
478	31	Tourneo Courier	2025-04-16 13:35:54	2025-04-16 13:35:54
479	31	Transit	2025-04-16 13:35:54	2025-04-16 13:35:54
480	37	Tunland	2025-04-16 13:35:54	2025-04-16 13:35:54
481	27	UNO	2025-04-16 13:35:54	2025-04-16 13:35:54
482	37	View C1 Minibus	2025-04-16 13:35:54	2025-04-16 13:35:54
483	31	Windstar	2025-04-16 13:35:54	2025-04-16 13:35:54
484	32	Yukon Xl	2025-04-16 13:35:54	2025-04-16 13:35:54
485	32	Terrain	2025-04-16 13:35:54	2025-04-16 13:35:54
486	38	Accord	2025-04-16 13:35:54	2025-04-16 13:35:54
487	38	CR-V	2025-04-16 13:35:54	2025-04-16 13:35:54
488	38	Jazz	2025-04-16 13:35:54	2025-04-16 13:35:54
489	38	Pilot	2025-04-16 13:35:54	2025-04-16 13:35:54
490	39	Accent	2025-04-16 13:35:54	2025-04-16 13:35:54
491	39	Azera	2025-04-16 13:35:54	2025-04-16 13:35:54
492	39	Centennial	2025-04-16 13:35:54	2025-04-16 13:35:54
493	39	Elantra	2025-04-16 13:35:54	2025-04-16 13:35:54
494	39	Genesis	2025-04-16 13:35:54	2025-04-16 13:35:54
495	39	Grand i10	2025-04-16 13:35:54	2025-04-16 13:35:54
496	39	Grand Santa Fe	2025-04-16 13:35:54	2025-04-16 13:35:54
497	39	i10	2025-04-16 13:35:54	2025-04-16 13:35:54
498	39	i30	2025-04-16 13:35:54	2025-04-16 13:35:54
499	39	i40	2025-04-16 13:35:54	2025-04-16 13:35:54
500	39	Santa Fe	2025-04-16 13:35:54	2025-04-16 13:35:54
501	39	Sonata	2025-04-16 13:35:54	2025-04-16 13:35:54
502	39	Tucson	2025-04-16 13:35:54	2025-04-16 13:35:54
503	40	FX35	2025-04-16 13:35:54	2025-04-16 13:35:54
504	40	FX37	2025-04-16 13:35:54	2025-04-16 13:35:54
505	40	FX50	2025-04-16 13:35:54	2025-04-16 13:35:54
506	40	G	2025-04-16 13:35:54	2025-04-16 13:35:54
507	40	Q30	2025-04-16 13:35:54	2025-04-16 13:35:54
508	40	Q50	2025-04-16 13:35:54	2025-04-16 13:35:54
509	40	Q60	2025-04-16 13:35:54	2025-04-16 13:35:54
510	40	Q70	2025-04-16 13:35:54	2025-04-16 13:35:54
511	40	QX50	2025-04-16 13:35:54	2025-04-16 13:35:54
512	40	QX56	2025-04-16 13:35:54	2025-04-16 13:35:54
513	40	QX60	2025-04-16 13:35:54	2025-04-16 13:35:54
514	40	QX70	2025-04-16 13:35:54	2025-04-16 13:35:54
515	40	QX80	2025-04-16 13:35:54	2025-04-16 13:35:54
516	39	Atos Prime	2025-04-16 13:35:54	2025-04-16 13:35:54
517	38	City	2025-04-16 13:35:54	2025-04-16 13:35:54
518	38	Civic Hybrid	2025-04-16 13:35:54	2025-04-16 13:35:54
519	38	Civic IMA	2025-04-16 13:35:54	2025-04-16 13:35:54
520	39	County	2025-04-16 13:35:54	2025-04-16 13:35:54
521	39	Coupe	2025-04-16 13:35:54	2025-04-16 13:35:54
522	38	CR-X	2025-04-16 13:35:54	2025-04-16 13:35:54
523	39	Crete	2025-04-16 13:35:54	2025-04-16 13:35:54
524	38	CR-Z	2025-04-16 13:35:54	2025-04-16 13:35:54
525	38	Crosstour	2025-04-16 13:35:54	2025-04-16 13:35:54
526	38	Element	2025-04-16 13:35:54	2025-04-16 13:35:54
527	40	EX	2025-04-16 13:35:54	2025-04-16 13:35:54
528	40	EX35	2025-04-16 13:35:54	2025-04-16 13:35:54
529	39	Excel	2025-04-16 13:35:54	2025-04-16 13:35:54
530	34	Florid	2025-04-16 13:35:54	2025-04-16 13:35:54
531	38	FR-V	2025-04-16 13:35:54	2025-04-16 13:35:54
532	40	FX	2025-04-16 13:35:54	2025-04-16 13:35:54
533	40	FX45	2025-04-16 13:35:54	2025-04-16 13:35:54
534	40	G35	2025-04-16 13:35:54	2025-04-16 13:35:54
535	40	G37	2025-04-16 13:35:54	2025-04-16 13:35:54
536	39	Galloper	2025-04-16 13:35:54	2025-04-16 13:35:54
537	39	Getz	2025-04-16 13:35:54	2025-04-16 13:35:54
538	39	Grandeur	2025-04-16 13:35:54	2025-04-16 13:35:54
539	40	G-Series	2025-04-16 13:35:54	2025-04-16 13:35:54
540	41	H1	2025-04-16 13:35:54	2025-04-16 13:35:54
541	41	H2	2025-04-16 13:35:54	2025-04-16 13:35:54
542	41	H3	2025-04-16 13:35:54	2025-04-16 13:35:54
543	41	H3T	2025-04-16 13:35:54	2025-04-16 13:35:54
544	41	HX	2025-04-16 13:35:54	2025-04-16 13:35:54
545	38	HRV	2025-04-16 13:35:54	2025-04-16 13:35:54
546	39	i20	2025-04-16 13:35:54	2025-04-16 13:35:54
547	40	i30	2025-04-16 13:35:54	2025-04-16 13:35:54
548	40	i35	2025-04-16 13:35:54	2025-04-16 13:35:54
549	38	Insight	2025-04-16 13:35:54	2025-04-16 13:35:54
550	39	iX20	2025-04-16 13:35:54	2025-04-16 13:35:54
551	39	iX35	2025-04-16 13:35:54	2025-04-16 13:35:54
552	39	iX55	2025-04-16 13:35:54	2025-04-16 13:35:54
553	40	J30	2025-04-16 13:35:54	2025-04-16 13:35:54
554	40	JX	2025-04-16 13:35:54	2025-04-16 13:35:54
555	38	Legend	2025-04-16 13:35:54	2025-04-16 13:35:54
556	40	M	2025-04-16 13:35:54	2025-04-16 13:35:54
557	39	Matrix	2025-04-16 13:35:54	2025-04-16 13:35:54
558	38	MR-V	2025-04-16 13:35:54	2025-04-16 13:35:54
559	38	NSX	2025-04-16 13:35:54	2025-04-16 13:35:54
560	38	Odyssey	2025-04-16 13:35:54	2025-04-16 13:35:54
561	38	Passport	2025-04-16 13:35:54	2025-04-16 13:35:54
562	39	Pony	2025-04-16 13:35:54	2025-04-16 13:35:54
563	38	Prelude	2025-04-16 13:35:54	2025-04-16 13:35:54
564	40	Q45	2025-04-16 13:35:54	2025-04-16 13:35:54
565	40	QX35	2025-04-16 13:35:54	2025-04-16 13:35:54
566	40	QX4	2025-04-16 13:35:54	2025-04-16 13:35:54
567	38	Ridgeline	2025-04-16 13:35:54	2025-04-16 13:35:54
568	38	S2000	2025-04-16 13:35:54	2025-04-16 13:35:54
569	38	Stream	2025-04-16 13:35:54	2025-04-16 13:35:54
570	38	S500	2025-04-16 13:35:54	2025-04-16 13:35:54
571	39	Terracan	2025-04-16 13:35:54	2025-04-16 13:35:54
572	39	Tiburon	2025-04-16 13:35:54	2025-04-16 13:35:54
573	39	Trajet	2025-04-16 13:35:54	2025-04-16 13:35:54
574	39	Veloster	2025-04-16 13:35:54	2025-04-16 13:35:54
575	39	Veracruz	2025-04-16 13:35:54	2025-04-16 13:35:54
576	39	Verna	2025-04-16 13:35:54	2025-04-16 13:35:54
577	38	Vezel	2025-04-16 13:35:54	2025-04-16 13:35:54
578	38	Vigor	2025-04-16 13:35:54	2025-04-16 13:35:54
579	34	Wingle	2025-04-16 13:35:54	2025-04-16 13:35:54
580	40	X35	2025-04-16 13:35:54	2025-04-16 13:35:54
581	39	XG 30	2025-04-16 13:35:54	2025-04-16 13:35:54
582	39	XG300	2025-04-16 13:35:54	2025-04-16 13:35:54
583	39	XG350	2025-04-16 13:35:54	2025-04-16 13:35:54
584	38	Z	2025-04-16 13:35:54	2025-04-16 13:35:54
585	42	F-Type	2025-04-16 13:35:54	2025-04-16 13:35:54
586	42	S-Type	2025-04-16 13:35:54	2025-04-16 13:35:54
587	42	XE	2025-04-16 13:35:54	2025-04-16 13:35:54
588	42	XF	2025-04-16 13:35:54	2025-04-16 13:35:54
589	42	XJ	2025-04-16 13:35:54	2025-04-16 13:35:54
590	43	Cherokee	2025-04-16 13:35:54	2025-04-16 13:35:54
591	43	Compass	2025-04-16 13:35:54	2025-04-16 13:35:54
592	43	Grand Cherokee	2025-04-16 13:35:54	2025-04-16 13:35:54
593	43	Renegade	2025-04-16 13:35:54	2025-04-16 13:35:54
594	43	Wrangler	2025-04-16 13:35:54	2025-04-16 13:35:54
595	44	Candenza	2025-04-16 13:35:54	2025-04-16 13:35:54
596	44	Carens	2025-04-16 13:35:54	2025-04-16 13:35:54
597	44	Carnival	2025-04-16 13:35:54	2025-04-16 13:35:54
598	44	Cerato	2025-04-16 13:35:54	2025-04-16 13:35:54
599	44	Clarus	2025-04-16 13:35:54	2025-04-16 13:35:54
600	44	Mohave	2025-04-16 13:35:54	2025-04-16 13:35:54
601	44	Optima	2025-04-16 13:35:54	2025-04-16 13:35:54
602	44	Picanto	2025-04-16 13:35:54	2025-04-16 13:35:54
603	44	Quoris	2025-04-16 13:35:54	2025-04-16 13:35:54
604	44	Rio	2025-04-16 13:35:54	2025-04-16 13:35:54
605	44	Sorento	2025-04-16 13:35:54	2025-04-16 13:35:54
606	44	Soul	2025-04-16 13:35:54	2025-04-16 13:35:54
607	45	111	2025-04-16 13:35:54	2025-04-16 13:35:54
608	45	1117	2025-04-16 13:35:54	2025-04-16 13:35:54
609	45	1118	2025-04-16 13:35:54	2025-04-16 13:35:54
610	45	1119	2025-04-16 13:35:54	2025-04-16 13:35:54
611	45	112	2025-04-16 13:35:54	2025-04-16 13:35:54
612	46	350	2025-04-16 13:35:54	2025-04-16 13:35:54
613	47	Agera	2025-04-16 13:35:54	2025-04-16 13:35:54
614	48	Amigo	2025-04-16 13:35:54	2025-04-16 13:35:54
615	48	Ascender	2025-04-16 13:35:54	2025-04-16 13:35:54
616	46	Aventador	2025-04-16 13:35:54	2025-04-16 13:35:54
617	48	Axiom	2025-04-16 13:35:54	2025-04-16 13:35:54
618	44	Borrego	2025-04-16 13:35:54	2025-04-16 13:35:54
619	44	Carnival II	2025-04-16 13:35:54	2025-04-16 13:35:54
620	47	CCX	2025-04-16 13:35:54	2025-04-16 13:35:54
621	44	Ceed	2025-04-16 13:35:55	2025-04-16 13:35:55
622	43	Commanche	2025-04-16 13:35:55	2025-04-16 13:35:55
623	43	Commander	2025-04-16 13:35:55	2025-04-16 13:35:55
624	46	Countach	2025-04-16 13:35:55	2025-04-16 13:35:55
625	49	Daily	2025-04-16 13:35:55	2025-04-16 13:35:55
626	48	D-Max	2025-04-16 13:35:55	2025-04-16 13:35:55
627	44	Forte	2025-04-16 13:35:55	2025-04-16 13:35:55
628	42	F-Pace	2025-04-16 13:35:55	2025-04-16 13:35:55
629	43	Grand Wagoneer	2025-04-16 13:35:55	2025-04-16 13:35:55
630	45	Granta	2025-04-16 13:35:55	2025-04-16 13:35:55
631	50	H2	2025-04-16 13:35:55	2025-04-16 13:35:55
632	48	i Mark	2025-04-16 13:35:55	2025-04-16 13:35:55
633	48	Impulse	2025-04-16 13:35:55	2025-04-16 13:35:55
634	51	J5	2025-04-16 13:35:55	2025-04-16 13:35:55
635	51	J4	2025-04-16 13:35:55	2025-04-16 13:35:55
636	51	J6	2025-04-16 13:35:55	2025-04-16 13:35:55
637	45	Kalina II	2025-04-16 13:35:55	2025-04-16 13:35:55
638	44	Koup	2025-04-16 13:35:55	2025-04-16 13:35:55
639	51	LCV	2025-04-16 13:35:55	2025-04-16 13:35:55
640	51	M1	2025-04-16 13:35:55	2025-04-16 13:35:55
641	51	M5	2025-04-16 13:35:55	2025-04-16 13:35:55
642	44	Magentis	2025-04-16 13:35:55	2025-04-16 13:35:55
643	49	Massif	2025-04-16 13:35:55	2025-04-16 13:35:55
644	52	Mini Van	2025-04-16 13:35:55	2025-04-16 13:35:55
645	53	MXT	2025-04-16 13:35:55	2025-04-16 13:35:55
646	45	Niva	2025-04-16 13:35:55	2025-04-16 13:35:55
647	48	NPR	2025-04-16 13:35:55	2025-04-16 13:35:55
648	48	Oasis	2025-04-16 13:35:55	2025-04-16 13:35:55
649	44	Opirus	2025-04-16 13:35:55	2025-04-16 13:35:55
650	43	Patriot	2025-04-16 13:35:55	2025-04-16 13:35:55
651	45	Priora	2025-04-16 13:35:55	2025-04-16 13:35:55
652	44	Pride	2025-04-16 13:35:55	2025-04-16 13:35:55
653	48	Reward-NP	2025-04-16 13:35:55	2025-04-16 13:35:55
654	48	Revert-NP	2025-04-16 13:35:55	2025-04-16 13:35:55
655	48	Rodeo	2025-04-16 13:35:55	2025-04-16 13:35:55
656	43	Rubicon	2025-04-16 13:35:55	2025-04-16 13:35:55
657	51	S3	2025-04-16 13:35:55	2025-04-16 13:35:55
658	44	Sephia	2025-04-16 13:35:55	2025-04-16 13:35:55
659	44	Shuma II	2025-04-16 13:35:55	2025-04-16 13:35:55
660	44	Soul EV	2025-04-16 13:35:55	2025-04-16 13:35:55
661	42	Sovereign	2025-04-16 13:35:55	2025-04-16 13:35:55
662	44	Spectra	2025-04-16 13:35:55	2025-04-16 13:35:55
663	48	Stylus	2025-04-16 13:35:55	2025-04-16 13:35:55
664	44	Sportage	2025-04-16 13:35:55	2025-04-16 13:35:55
665	50	SY6483	2025-04-16 13:35:55	2025-04-16 13:35:55
666	45	Taiga	2025-04-16 13:35:55	2025-04-16 13:35:55
667	48	Trooper	2025-04-16 13:35:55	2025-04-16 13:35:55
668	44	Venga	2025-04-16 13:35:55	2025-04-16 13:35:55
669	43	Wagoneer	2025-04-16 13:35:55	2025-04-16 13:35:55
670	43	Wrangler Unlimited	2025-04-16 13:35:55	2025-04-16 13:35:55
671	54	X-BOW	2025-04-16 13:35:55	2025-04-16 13:35:55
672	42	XFR	2025-04-16 13:35:55	2025-04-16 13:35:55
673	42	XFR-S	2025-04-16 13:35:55	2025-04-16 13:35:55
674	42	XF-Type	2025-04-16 13:35:55	2025-04-16 13:35:55
675	42	XJR	2025-04-16 13:35:55	2025-04-16 13:35:55
676	42	XJ-Type	2025-04-16 13:35:55	2025-04-16 13:35:55
677	42	XK	2025-04-16 13:35:55	2025-04-16 13:35:55
678	42	XKR	2025-04-16 13:35:55	2025-04-16 13:35:55
679	42	XKR-S	2025-04-16 13:35:55	2025-04-16 13:35:55
680	42	XK-Type	2025-04-16 13:35:55	2025-04-16 13:35:55
681	42	X - Type	2025-04-16 13:35:55	2025-04-16 13:35:55
682	42	X-Type	2025-04-16 13:35:55	2025-04-16 13:35:55
683	55	Range Rover	2025-04-16 13:35:55	2025-04-16 13:35:55
684	55	Range Rover Evoque	2025-04-16 13:35:55	2025-04-16 13:35:55
685	55	Range Rover Sport	2025-04-16 13:35:55	2025-04-16 13:35:55
686	56	ES	2025-04-16 13:35:55	2025-04-16 13:35:55
687	56	IS	2025-04-16 13:35:55	2025-04-16 13:35:55
688	56	LS	2025-04-16 13:35:55	2025-04-16 13:35:55
689	56	LX	2025-04-16 13:35:55	2025-04-16 13:35:55
690	56	RX	2025-04-16 13:35:55	2025-04-16 13:35:55
691	57	Continential	2025-04-16 13:35:55	2025-04-16 13:35:55
692	57	MKC	2025-04-16 13:35:55	2025-04-16 13:35:55
693	57	MKX	2025-04-16 13:35:55	2025-04-16 13:35:55
694	57	MKZ	2025-04-16 13:35:55	2025-04-16 13:35:55
695	57	Navigator	2025-04-16 13:35:55	2025-04-16 13:35:55
696	58	Granturismo	2025-04-16 13:35:55	2025-04-16 13:35:55
697	58	Quattroporte	2025-04-16 13:35:55	2025-04-16 13:35:55
698	59	2	2025-04-16 13:35:55	2025-04-16 13:35:55
699	59	3	2025-04-16 13:35:55	2025-04-16 13:35:55
700	59	6	2025-04-16 13:35:55	2025-04-16 13:35:55
701	59	CX-3	2025-04-16 13:35:55	2025-04-16 13:35:55
702	59	CX-5	2025-04-16 13:35:55	2025-04-16 13:35:55
703	59	CX-9	2025-04-16 13:35:55	2025-04-16 13:35:55
704	60	57	2025-04-16 13:35:55	2025-04-16 13:35:55
705	60	62	2025-04-16 13:35:55	2025-04-16 13:35:55
706	59	626	2025-04-16 13:35:55	2025-04-16 13:35:55
707	59	6 Ultra	2025-04-16 13:35:55	2025-04-16 13:35:55
708	61	7	2025-04-16 13:35:55	2025-04-16 13:35:55
709	59	929	2025-04-16 13:35:55	2025-04-16 13:35:55
710	62	Armada	2025-04-16 13:35:55	2025-04-16 13:35:55
711	57	Avaitor	2025-04-16 13:35:55	2025-04-16 13:35:55
712	59	B-Series	2025-04-16 13:35:55	2025-04-16 13:35:55
713	59	BT-50	2025-04-16 13:35:55	2025-04-16 13:35:55
714	58	Coupe	2025-04-16 13:35:55	2025-04-16 13:35:55
715	58	Coupe / Spyder	2025-04-16 13:35:55	2025-04-16 13:35:55
716	56	CT	2025-04-16 13:35:55	2025-04-16 13:35:55
717	56	CT 200H	2025-04-16 13:35:55	2025-04-16 13:35:55
718	63	CV-9	2025-04-16 13:35:55	2025-04-16 13:35:55
719	59	CX-7	2025-04-16 13:35:55	2025-04-16 13:35:55
720	55	Defender	2025-04-16 13:35:55	2025-04-16 13:35:55
721	64	Delta	2025-04-16 13:35:55	2025-04-16 13:35:55
722	59	Demio	2025-04-16 13:35:55	2025-04-16 13:35:55
723	46	Diablo	2025-04-16 13:35:55	2025-04-16 13:35:55
724	55	Discovery Sport	2025-04-16 13:35:55	2025-04-16 13:35:55
725	59	E2000	2025-04-16 13:35:55	2025-04-16 13:35:55
726	65	Elan	2025-04-16 13:35:55	2025-04-16 13:35:55
727	65	Elise	2025-04-16 13:35:55	2025-04-16 13:35:55
728	65	Esprit	2025-04-16 13:35:55	2025-04-16 13:35:55
729	65	Europa	2025-04-16 13:35:55	2025-04-16 13:35:55
730	65	Evora	2025-04-16 13:35:55	2025-04-16 13:35:55
731	65	Exige	2025-04-16 13:35:55	2025-04-16 13:35:55
732	64	Flavia	2025-04-16 13:35:55	2025-04-16 13:35:55
733	55	Freelander	2025-04-16 13:35:55	2025-04-16 13:35:55
734	55	Freelander V6	2025-04-16 13:35:55	2025-04-16 13:35:55
735	64	FX-Series	2025-04-16 13:35:55	2025-04-16 13:35:55
736	46	Gallardo	2025-04-16 13:35:55	2025-04-16 13:35:55
737	58	Grancabrio	2025-04-16 13:35:55	2025-04-16 13:35:55
738	58	Ghibli	2025-04-16 13:35:55	2025-04-16 13:35:55
739	58	Gransport	2025-04-16 13:35:55	2025-04-16 13:35:55
740	56	GS	2025-04-16 13:35:55	2025-04-16 13:35:55
741	46	Huracan	2025-04-16 13:35:55	2025-04-16 13:35:55
742	55	HSE V8	2025-04-16 13:35:55	2025-04-16 13:35:55
743	56	IS-C	2025-04-16 13:35:55	2025-04-16 13:35:55
744	56	IS-F	2025-04-16 13:35:55	2025-04-16 13:35:55
745	56	LFA	2025-04-16 13:35:55	2025-04-16 13:35:55
746	46	LM	2025-04-16 13:35:55	2025-04-16 13:35:55
747	55	LR2	2025-04-16 13:35:55	2025-04-16 13:35:55
748	55	LR3	2025-04-16 13:35:55	2025-04-16 13:35:55
749	55	LR4	2025-04-16 13:35:55	2025-04-16 13:35:55
750	64	Lybra	2025-04-16 13:35:55	2025-04-16 13:35:55
751	57	LS	2025-04-16 13:35:55	2025-04-16 13:35:55
752	58	MC12	2025-04-16 13:35:55	2025-04-16 13:35:55
753	59	Miata	2025-04-16 13:35:55	2025-04-16 13:35:55
754	46	Miura	2025-04-16 13:35:55	2025-04-16 13:35:55
755	57	MKS	2025-04-16 13:35:55	2025-04-16 13:35:55
756	57	MKT	2025-04-16 13:35:55	2025-04-16 13:35:55
757	57	MK-T	2025-04-16 13:35:55	2025-04-16 13:35:55
758	46	Murcielago	2025-04-16 13:35:55	2025-04-16 13:35:55
759	59	MPV	2025-04-16 13:35:55	2025-04-16 13:35:55
760	64	Musa	2025-04-16 13:35:55	2025-04-16 13:35:55
761	59	MX-3	2025-04-16 13:35:55	2025-04-16 13:35:55
762	59	MX-5	2025-04-16 13:35:55	2025-04-16 13:35:55
763	59	MX-6	2025-04-16 13:35:55	2025-04-16 13:35:55
764	59	Navajo	2025-04-16 13:35:55	2025-04-16 13:35:55
765	56	NX	2025-04-16 13:35:55	2025-04-16 13:35:55
766	64	Phedra	2025-04-16 13:35:55	2025-04-16 13:35:55
767	59	Premacy	2025-04-16 13:35:55	2025-04-16 13:35:55
768	56	RC	2025-04-16 13:35:55	2025-04-16 13:35:55
769	56	RC F	2025-04-16 13:35:55	2025-04-16 13:35:55
770	63	S	2025-04-16 13:35:55	2025-04-16 13:35:55
771	61	S5	2025-04-16 13:35:55	2025-04-16 13:35:55
772	56	SC	2025-04-16 13:35:55	2025-04-16 13:35:55
773	62	Scorpio	2025-04-16 13:35:55	2025-04-16 13:35:55
774	58	Spyder	2025-04-16 13:35:55	2025-04-16 13:35:55
775	64	Thema	2025-04-16 13:35:55	2025-04-16 13:35:55
776	64	Thesis	2025-04-16 13:35:55	2025-04-16 13:35:55
777	57	Town Car	2025-04-16 13:35:55	2025-04-16 13:35:55
778	61	U6	2025-04-16 13:35:55	2025-04-16 13:35:55
779	64	Voyager	2025-04-16 13:35:55	2025-04-16 13:35:55
780	64	Y	2025-04-16 13:35:55	2025-04-16 13:35:55
781	66	C 63 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
782	66	C-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
783	66	E 63 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
784	66	E-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
785	66	G-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
786	66	GL-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
787	66	ML 63 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
788	66	S 63 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
789	66	S-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
790	66	Sl-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
791	67	Cooper	2025-04-16 13:35:55	2025-04-16 13:35:55
792	67	Cooper Clubman	2025-04-16 13:35:55	2025-04-16 13:35:55
793	67	Cooper Countryman	2025-04-16 13:35:55	2025-04-16 13:35:55
794	66	190	2025-04-16 13:35:55	2025-04-16 13:35:55
795	66	240/260/280	2025-04-16 13:35:55	2025-04-16 13:35:55
796	68	3	2025-04-16 13:35:55	2025-04-16 13:35:55
797	66	300/350/380	2025-04-16 13:35:55	2025-04-16 13:35:55
798	68	350	2025-04-16 13:35:55	2025-04-16 13:35:55
799	66	400/420	2025-04-16 13:35:55	2025-04-16 13:35:55
800	68	5	2025-04-16 13:35:55	2025-04-16 13:35:55
801	66	500/560	2025-04-16 13:35:55	2025-04-16 13:35:55
802	69	540C	2025-04-16 13:35:55	2025-04-16 13:35:55
803	69	570S	2025-04-16 13:35:55	2025-04-16 13:35:55
804	69	650S	2025-04-16 13:35:55	2025-04-16 13:35:55
805	68	6	2025-04-16 13:35:55	2025-04-16 13:35:55
806	69	675LT	2025-04-16 13:35:55	2025-04-16 13:35:55
807	68	750	2025-04-16 13:35:55	2025-04-16 13:35:55
808	66	A 45 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
809	66	A-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
810	66	B-Klasse Electric Drive	2025-04-16 13:35:55	2025-04-16 13:35:55
811	66	CLA-Klasse	2025-04-16 13:35:55	2025-04-16 13:35:55
812	66	CLC-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
813	66	CL-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
814	66	CLK-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
815	66	CLS 63 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
816	66	CLS-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
817	66	CLS Shooting Brake	2025-04-16 13:35:55	2025-04-16 13:35:55
818	67	Cooper S	2025-04-16 13:35:55	2025-04-16 13:35:55
819	70	Cougar	2025-04-16 13:35:55	2025-04-16 13:35:55
820	67	Coupe	2025-04-16 13:35:55	2025-04-16 13:35:55
821	66	E-Series	2025-04-16 13:35:55	2025-04-16 13:35:55
822	69	F1	2025-04-16 13:35:55	2025-04-16 13:35:55
823	66	G 63 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
824	66	G 65 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
825	66	GLA-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
826	66	GLA-Klasse	2025-04-16 13:35:55	2025-04-16 13:35:55
827	66	GLC-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
828	66	GLE	2025-04-16 13:35:55	2025-04-16 13:35:55
829	66	GLE 63 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
830	66	GLE-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
831	66	GLE-Coupe	2025-04-16 13:35:55	2025-04-16 13:35:55
832	66	GLK-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
833	70	Grand Marquis	2025-04-16 13:35:55	2025-04-16 13:35:55
834	68	GS	2025-04-16 13:35:55	2025-04-16 13:35:55
835	66	G-Series	2025-04-16 13:35:55	2025-04-16 13:35:55
836	70	Marauder	2025-04-16 13:35:55	2025-04-16 13:35:55
837	70	Marquis	2025-04-16 13:35:55	2025-04-16 13:35:55
838	70	Mariner	2025-04-16 13:35:55	2025-04-16 13:35:55
839	66	M-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
840	68	MG TF	2025-04-16 13:35:55	2025-04-16 13:35:55
841	68	MG ZR	2025-04-16 13:35:55	2025-04-16 13:35:55
842	68	MG ZS	2025-04-16 13:35:55	2025-04-16 13:35:55
843	68	Midget	2025-04-16 13:35:55	2025-04-16 13:35:55
844	70	Milan	2025-04-16 13:35:55	2025-04-16 13:35:55
845	70	Montego	2025-04-16 13:35:55	2025-04-16 13:35:55
846	70	Mountaineer	2025-04-16 13:35:55	2025-04-16 13:35:55
847	69	MP4-12C	2025-04-16 13:35:55	2025-04-16 13:35:55
848	69	P1	2025-04-16 13:35:55	2025-04-16 13:35:55
849	67	Paceman	2025-04-16 13:35:55	2025-04-16 13:35:55
850	59	Protege	2025-04-16 13:35:55	2025-04-16 13:35:55
851	66	R-Class	2025-04-16 13:35:55	2025-04-16 13:35:55
852	67	Roadster	2025-04-16 13:35:55	2025-04-16 13:35:55
853	59	RX-6	2025-04-16 13:35:55	2025-04-16 13:35:55
854	59	RX-7	2025-04-16 13:35:55	2025-04-16 13:35:55
855	59	RX-8	2025-04-16 13:35:55	2025-04-16 13:35:55
856	66	S 65 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
857	70	Sable	2025-04-16 13:35:55	2025-04-16 13:35:55
858	66	S-Class Maybach	2025-04-16 13:35:55	2025-04-16 13:35:55
859	69	SLR	2025-04-16 13:35:55	2025-04-16 13:35:55
860	66	SL 65 AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
861	66	SLR	2025-04-16 13:35:55	2025-04-16 13:35:55
862	66	SLR McLaren	2025-04-16 13:35:55	2025-04-16 13:35:55
863	66	SLS	2025-04-16 13:35:55	2025-04-16 13:35:55
864	66	SLS AMG	2025-04-16 13:35:55	2025-04-16 13:35:55
865	66	SLS AMG Elektro	2025-04-16 13:35:55	2025-04-16 13:35:55
866	66	SLS AMG Roadster	2025-04-16 13:35:55	2025-04-16 13:35:55
867	66	Sprinter	2025-04-16 13:35:55	2025-04-16 13:35:55
868	59	T 3500	2025-04-16 13:35:55	2025-04-16 13:35:55
869	59	Tribute	2025-04-16 13:35:55	2025-04-16 13:35:55
870	66	Vaneo	2025-04-16 13:35:55	2025-04-16 13:35:55
871	66	Viano	2025-04-16 13:35:55	2025-04-16 13:35:55
872	66	Vito	2025-04-16 13:35:55	2025-04-16 13:35:55
873	66	V-Klasse	2025-04-16 13:35:55	2025-04-16 13:35:55
874	59	Xedos	2025-04-16 13:35:55	2025-04-16 13:35:55
875	59	Xedos 9	2025-04-16 13:35:55	2025-04-16 13:35:55
876	70	Zephyr	2025-04-16 13:35:55	2025-04-16 13:35:55
877	71	ASX	2025-04-16 13:35:55	2025-04-16 13:35:55
878	71	Lancer	2025-04-16 13:35:55	2025-04-16 13:35:55
879	71	Lancer EX	2025-04-16 13:35:55	2025-04-16 13:35:55
880	71	Outlander	2025-04-16 13:35:55	2025-04-16 13:35:55
881	71	Pajero	2025-04-16 13:35:55	2025-04-16 13:35:55
882	72	Altima	2025-04-16 13:35:55	2025-04-16 13:35:55
883	72	Patrol	2025-04-16 13:35:55	2025-04-16 13:35:55
884	72	Juke	2025-04-16 13:35:55	2025-04-16 13:35:55
885	72	370Z	2025-04-16 13:35:55	2025-04-16 13:35:55
886	72	Armada	2025-04-16 13:35:55	2025-04-16 13:35:55
887	72	GT-R	2025-04-16 13:35:55	2025-04-16 13:35:55
888	72	Maxima	2025-04-16 13:35:55	2025-04-16 13:35:55
889	72	Murano	2025-04-16 13:35:55	2025-04-16 13:35:55
890	72	Pathfinder	2025-04-16 13:35:55	2025-04-16 13:35:55
891	72	Patrol Safari	2025-04-16 13:35:55	2025-04-16 13:35:55
892	72	Sentra	2025-04-16 13:35:55	2025-04-16 13:35:55
893	72	Sunny	2025-04-16 13:35:55	2025-04-16 13:35:55
894	72	Tiida	2025-04-16 13:35:55	2025-04-16 13:35:55
895	72	Xterra	2025-04-16 13:35:55	2025-04-16 13:35:55
896	72	Xtrail	2025-04-16 13:35:55	2025-04-16 13:35:55
897	72	300Z	2025-04-16 13:35:55	2025-04-16 13:35:55
898	72	350Z	2025-04-16 13:35:55	2025-04-16 13:35:55
899	73	3-Wheeler	2025-04-16 13:35:55	2025-04-16 13:35:55
900	73	4-Apr	2025-04-16 13:35:55	2025-04-16 13:35:55
901	73	Aero 8	2025-04-16 13:35:55	2025-04-16 13:35:55
902	73	Aero Coupe	2025-04-16 13:35:55	2025-04-16 13:35:55
903	72	Almera	2025-04-16 13:35:55	2025-04-16 13:35:55
904	72	Almera Tino	2025-04-16 13:35:55	2025-04-16 13:35:55
905	71	Attrage	2025-04-16 13:35:55	2025-04-16 13:35:55
906	72	Atleon 140	2025-04-16 13:35:55	2025-04-16 13:35:55
907	72	Bluebird	2025-04-16 13:35:55	2025-04-16 13:35:55
908	72	Cabstar	2025-04-16 13:35:55	2025-04-16 13:35:55
909	71	Canter	2025-04-16 13:35:55	2025-04-16 13:35:55
910	71	Carisma	2025-04-16 13:35:55	2025-04-16 13:35:55
911	72	Cedric	2025-04-16 13:35:55	2025-04-16 13:35:55
912	71	Celeste	2025-04-16 13:35:55	2025-04-16 13:35:55
913	72	Civilian	2025-04-16 13:35:55	2025-04-16 13:35:55
914	71	Colt	2025-04-16 13:35:55	2025-04-16 13:35:55
915	71	Colt Neu	2025-04-16 13:35:55	2025-04-16 13:35:55
916	71	Cordia	2025-04-16 13:35:55	2025-04-16 13:35:55
917	74	Countryman	2025-04-16 13:35:55	2025-04-16 13:35:55
918	72	Cube	2025-04-16 13:35:55	2025-04-16 13:35:55
919	75	Cutlass	2025-04-16 13:35:55	2025-04-16 13:35:55
920	71	Delica	2025-04-16 13:35:55	2025-04-16 13:35:55
921	71	Eclipse	2025-04-16 13:35:55	2025-04-16 13:35:55
922	71	Electric Vehicle	2025-04-16 13:35:55	2025-04-16 13:35:55
923	71	Endeavor	2025-04-16 13:35:55	2025-04-16 13:35:55
924	71	Evolution	2025-04-16 13:35:55	2025-04-16 13:35:55
925	71	Fortis	2025-04-16 13:35:55	2025-04-16 13:35:55
926	71	Galant	2025-04-16 13:35:55	2025-04-16 13:35:55
927	72	Gloria	2025-04-16 13:35:55	2025-04-16 13:35:55
928	71	Grandis	2025-04-16 13:35:55	2025-04-16 13:35:55
929	71	I-Miev	2025-04-16 13:35:55	2025-04-16 13:35:55
930	71	L200	2025-04-16 13:35:55	2025-04-16 13:35:55
931	71	L300	2025-04-16 13:35:55	2025-04-16 13:35:55
932	71	Lancer Evolution	2025-04-16 13:35:55	2025-04-16 13:35:55
933	71	Lancer Fortis	2025-04-16 13:35:55	2025-04-16 13:35:55
934	72	LEAF	2025-04-16 13:35:55	2025-04-16 13:35:55
935	76	M400	2025-04-16 13:35:55	2025-04-16 13:35:55
936	76	M600	2025-04-16 13:35:55	2025-04-16 13:35:55
937	71	Magna	2025-04-16 13:35:55	2025-04-16 13:35:55
938	72	Micra	2025-04-16 13:35:55	2025-04-16 13:35:55
939	74	Mini II	2025-04-16 13:35:55	2025-04-16 13:35:55
940	72	Minivan	2025-04-16 13:35:55	2025-04-16 13:35:55
941	71	Minivan	2025-04-16 13:35:55	2025-04-16 13:35:55
942	71	Mirage	2025-04-16 13:35:55	2025-04-16 13:35:55
943	71	Nativa	2025-04-16 13:35:55	2025-04-16 13:35:55
944	72	Navara	2025-04-16 13:35:55	2025-04-16 13:35:55
945	72	Note	2025-04-16 13:35:55	2025-04-16 13:35:55
946	74	Paceman	2025-04-16 13:35:55	2025-04-16 13:35:55
947	71	Pajero Pinin	2025-04-16 13:35:55	2025-04-16 13:35:55
948	72	Pathfinder Classic	2025-04-16 13:35:55	2025-04-16 13:35:55
949	72	Patrol GR	2025-04-16 13:35:55	2025-04-16 13:35:55
950	72	Pickup	2025-04-16 13:35:55	2025-04-16 13:35:55
951	71	PickUp	2025-04-16 13:35:55	2025-04-16 13:35:55
952	72	Pixo	2025-04-16 13:35:55	2025-04-16 13:35:55
953	73	Plus 4	2025-04-16 13:35:55	2025-04-16 13:35:55
954	73	Plus 8	2025-04-16 13:35:55	2025-04-16 13:35:55
955	72	Primera	2025-04-16 13:35:55	2025-04-16 13:35:55
956	72	Pulsar	2025-04-16 13:35:55	2025-04-16 13:35:55
957	72	Qashqai	2025-04-16 13:35:55	2025-04-16 13:35:55
958	72	Quest	2025-04-16 13:35:55	2025-04-16 13:35:55
959	71	Rosa	2025-04-16 13:35:55	2025-04-16 13:35:55
960	72	S130	2025-04-16 13:35:55	2025-04-16 13:35:55
961	71	Sapporo	2025-04-16 13:35:55	2025-04-16 13:35:55
962	75	Silhouette	2025-04-16 13:35:55	2025-04-16 13:35:55
963	72	Skyline	2025-04-16 13:35:55	2025-04-16 13:35:55
964	71	Space Star	2025-04-16 13:35:55	2025-04-16 13:35:55
965	71	SpaceWagon	2025-04-16 13:35:55	2025-04-16 13:35:55
966	71	Space Wagon	2025-04-16 13:35:55	2025-04-16 13:35:55
967	72	TEANA	2025-04-16 13:35:55	2025-04-16 13:35:55
968	72	Terrano	2025-04-16 13:35:55	2025-04-16 13:35:55
969	75	Toronado	2025-04-16 13:35:55	2025-04-16 13:35:55
970	72	Titan	2025-04-16 13:35:55	2025-04-16 13:35:55
971	72	UD	2025-04-16 13:35:55	2025-04-16 13:35:55
972	72	Urvan	2025-04-16 13:35:55	2025-04-16 13:35:55
973	72	Versa	2025-04-16 13:35:55	2025-04-16 13:35:55
974	77	2008	2025-04-16 13:35:55	2025-04-16 13:35:55
975	77	208	2025-04-16 13:35:55	2025-04-16 13:35:55
976	77	3008	2025-04-16 13:35:55	2025-04-16 13:35:55
977	77	301	2025-04-16 13:35:55	2025-04-16 13:35:55
978	77	308	2025-04-16 13:35:55	2025-04-16 13:35:55
979	77	5008	2025-04-16 13:35:55	2025-04-16 13:35:55
980	77	508	2025-04-16 13:35:55	2025-04-16 13:35:55
981	77	RCZ	2025-04-16 13:35:55	2025-04-16 13:35:55
982	78	Boxster	2025-04-16 13:35:55	2025-04-16 13:35:55
983	78	Cayenne	2025-04-16 13:35:55	2025-04-16 13:35:55
984	78	Cayman	2025-04-16 13:35:55	2025-04-16 13:35:55
985	78	Panamera	2025-04-16 13:35:55	2025-04-16 13:35:55
986	77	106	2025-04-16 13:35:55	2025-04-16 13:35:55
987	77	107	2025-04-16 13:35:55	2025-04-16 13:35:55
988	77	108	2025-04-16 13:35:55	2025-04-16 13:35:55
989	79	1500	2025-04-16 13:35:55	2025-04-16 13:35:55
990	77	205	2025-04-16 13:35:55	2025-04-16 13:35:55
991	77	206	2025-04-16 13:35:55	2025-04-16 13:35:55
992	77	207	2025-04-16 13:35:55	2025-04-16 13:35:55
993	77	306	2025-04-16 13:35:55	2025-04-16 13:35:55
994	77	307	2025-04-16 13:35:55	2025-04-16 13:35:55
995	77	4007	2025-04-16 13:35:55	2025-04-16 13:35:55
996	77	4008	2025-04-16 13:35:55	2025-04-16 13:35:55
997	77	406	2025-04-16 13:35:55	2025-04-16 13:35:55
998	77	407	2025-04-16 13:35:55	2025-04-16 13:35:55
999	77	408	2025-04-16 13:35:55	2025-04-16 13:35:55
1000	77	504	2025-04-16 13:35:55	2025-04-16 13:35:55
1001	77	505	2025-04-16 13:35:55	2025-04-16 13:35:55
1002	77	604	2025-04-16 13:35:55	2025-04-16 13:35:55
1003	77	605	2025-04-16 13:35:55	2025-04-16 13:35:55
1004	77	607	2025-04-16 13:35:55	2025-04-16 13:35:55
1005	77	807	2025-04-16 13:35:55	2025-04-16 13:35:55
1006	78	911 Carrera	2025-04-16 13:35:55	2025-04-16 13:35:55
1007	78	911 Carrera 4	2025-04-16 13:35:55	2025-04-16 13:35:55
1008	78	911 Carrera 4 GTS	2025-04-16 13:35:55	2025-04-16 13:35:55
1009	78	911 Carrera 4S	2025-04-16 13:35:55	2025-04-16 13:35:55
1010	78	911 Carrera GTS	2025-04-16 13:35:55	2025-04-16 13:35:55
1011	78	911 Carrera S	2025-04-16 13:35:55	2025-04-16 13:35:55
1012	78	911 GT2	2025-04-16 13:35:55	2025-04-16 13:35:55
1013	78	911 GT3	2025-04-16 13:35:55	2025-04-16 13:35:55
1014	78	911 GT3 RS	2025-04-16 13:35:55	2025-04-16 13:35:55
1015	78	911 Speedster	2025-04-16 13:35:55	2025-04-16 13:35:55
1016	78	911 Targa 4	2025-04-16 13:35:55	2025-04-16 13:35:55
1017	78	911 Targa 4S	2025-04-16 13:35:55	2025-04-16 13:35:55
1018	78	911 Targa GTS	2025-04-16 13:35:55	2025-04-16 13:35:55
1019	78	911 Turbo	2025-04-16 13:35:55	2025-04-16 13:35:55
1020	78	911 Turbo S	2025-04-16 13:35:55	2025-04-16 13:35:55
1021	78	918	2025-04-16 13:35:55	2025-04-16 13:35:55
1022	78	928	2025-04-16 13:35:55	2025-04-16 13:35:55
1023	78	944	2025-04-16 13:35:55	2025-04-16 13:35:55
1024	78	968	2025-04-16 13:35:55	2025-04-16 13:35:55
1025	78	9FF	2025-04-16 13:35:55	2025-04-16 13:35:55
1026	80	Adam	2025-04-16 13:35:55	2025-04-16 13:35:55
1027	80	Agila	2025-04-16 13:35:55	2025-04-16 13:35:55
1028	80	Ampera	2025-04-16 13:35:55	2025-04-16 13:35:55
1029	80	Antara	2025-04-16 13:35:55	2025-04-16 13:35:55
1030	80	Astra OPC	2025-04-16 13:35:56	2025-04-16 13:35:56
1031	80	Astra	2025-04-16 13:35:56	2025-04-16 13:35:56
1032	77	Bipper	2025-04-16 13:35:56	2025-04-16 13:35:56
1033	77	Boxer	2025-04-16 13:35:56	2025-04-16 13:35:56
1034	80	Cascada	2025-04-16 13:35:56	2025-04-16 13:35:56
1035	80	Combo	2025-04-16 13:35:56	2025-04-16 13:35:56
1036	80	Corsa	2025-04-16 13:35:56	2025-04-16 13:35:56
1037	77	Expert	2025-04-16 13:35:56	2025-04-16 13:35:56
1038	80	Frontera	2025-04-16 13:35:56	2025-04-16 13:35:56
1039	81	Gen-2	2025-04-16 13:35:56	2025-04-16 13:35:56
1040	82	Grand AM	2025-04-16 13:35:56	2025-04-16 13:35:56
1041	80	GT	2025-04-16 13:35:56	2025-04-16 13:35:56
1042	82	GTO	2025-04-16 13:35:56	2025-04-16 13:35:56
1043	83	Huayra	2025-04-16 13:35:56	2025-04-16 13:35:56
1044	80	Insignia	2025-04-16 13:35:56	2025-04-16 13:35:56
1045	80	Insignia Country Tourer	2025-04-16 13:35:56	2025-04-16 13:35:56
1046	77	Ion	2025-04-16 13:35:56	2025-04-16 13:35:56
1047	80	Kadett	2025-04-16 13:35:56	2025-04-16 13:35:56
1048	80	Karl	2025-04-16 13:35:56	2025-04-16 13:35:56
1049	78	Macan	2025-04-16 13:35:56	2025-04-16 13:35:56
1050	80	Meriva	2025-04-16 13:35:56	2025-04-16 13:35:56
1051	80	Mokka	2025-04-16 13:35:56	2025-04-16 13:35:56
1052	80	Omega	2025-04-16 13:35:56	2025-04-16 13:35:56
1053	77	Partner	2025-04-16 13:35:56	2025-04-16 13:35:56
1054	77	RC7	2025-04-16 13:35:56	2025-04-16 13:35:56
1055	81	Savvy	2025-04-16 13:35:56	2025-04-16 13:35:56
1056	80	Signum	2025-04-16 13:35:56	2025-04-16 13:35:56
1057	82	Solstice	2025-04-16 13:35:56	2025-04-16 13:35:56
1058	84	Speedster	2025-04-16 13:35:56	2025-04-16 13:35:56
1059	80	Speedster	2025-04-16 13:35:56	2025-04-16 13:35:56
1060	85	Spirra	2025-04-16 13:35:56	2025-04-16 13:35:56
1061	80	Tigra	2025-04-16 13:35:56	2025-04-16 13:35:56
1062	80	Tigra Twin Top	2025-04-16 13:35:56	2025-04-16 13:35:56
1063	80	Vectra	2025-04-16 13:35:56	2025-04-16 13:35:56
1064	80	Vita	2025-04-16 13:35:56	2025-04-16 13:35:56
1065	81	Waja	2025-04-16 13:35:56	2025-04-16 13:35:56
1066	82	Wave	2025-04-16 13:35:56	2025-04-16 13:35:56
1067	81	Wira	2025-04-16 13:35:56	2025-04-16 13:35:56
1068	77	X Line	2025-04-16 13:35:56	2025-04-16 13:35:56
1069	80	Zafira	2025-04-16 13:35:56	2025-04-16 13:35:56
1070	83	Zonda	2025-04-16 13:35:56	2025-04-16 13:35:56
1071	86	Captur	2025-04-16 13:35:56	2025-04-16 13:35:56
1072	86	Duster	2025-04-16 13:35:56	2025-04-16 13:35:56
1073	86	Koleos	2025-04-16 13:35:56	2025-04-16 13:35:56
1074	86	Megane	2025-04-16 13:35:56	2025-04-16 13:35:56
1075	86	Symbol	2025-04-16 13:35:56	2025-04-16 13:35:56
1076	87	Ghost	2025-04-16 13:35:56	2025-04-16 13:35:56
1077	87	Phantom	2025-04-16 13:35:56	2025-04-16 13:35:56
1078	87	Wraith	2025-04-16 13:35:56	2025-04-16 13:35:56
1079	88	900	2025-04-16 13:35:56	2025-04-16 13:35:56
1080	88	9000	2025-04-16 13:35:56	2025-04-16 13:35:56
1081	88	3-Sep	2025-04-16 13:35:56	2025-04-16 13:35:56
1082	88	5-Sep	2025-04-16 13:35:56	2025-04-16 13:35:56
1083	88	9-7X	2025-04-16 13:35:56	2025-04-16 13:35:56
1084	89	Actyon	2025-04-16 13:35:56	2025-04-16 13:35:56
1085	90	Alhambra	2025-04-16 13:35:56	2025-04-16 13:35:56
1086	90	Altea	2025-04-16 13:35:56	2025-04-16 13:35:56
1087	90	Arosa	2025-04-16 13:35:56	2025-04-16 13:35:56
1088	91	B9 Tribeca	2025-04-16 13:35:56	2025-04-16 13:35:56
1089	91	BRZ	2025-04-16 13:35:56	2025-04-16 13:35:56
1090	92	C8	2025-04-16 13:35:56	2025-04-16 13:35:56
1091	93	Citigo	2025-04-16 13:35:56	2025-04-16 13:35:56
1092	86	Clio	2025-04-16 13:35:56	2025-04-16 13:35:56
1093	86	Clio RS	2025-04-16 13:35:56	2025-04-16 13:35:56
1094	90	Cordoba	2025-04-16 13:35:56	2025-04-16 13:35:56
1095	87	Corniche	2025-04-16 13:35:56	2025-04-16 13:35:56
1096	92	D12	2025-04-16 13:35:56	2025-04-16 13:35:56
1097	86	Dokker	2025-04-16 13:35:56	2025-04-16 13:35:56
1098	87	Drophead	2025-04-16 13:35:56	2025-04-16 13:35:56
1099	86	Espace	2025-04-16 13:35:56	2025-04-16 13:35:56
1100	90	Exeo	2025-04-16 13:35:56	2025-04-16 13:35:56
1101	93	Fabia	2025-04-16 13:35:56	2025-04-16 13:35:56
1102	93	Felicia	2025-04-16 13:35:56	2025-04-16 13:35:56
1103	86	Fluence	2025-04-16 13:35:56	2025-04-16 13:35:56
1104	86	Fluence Elektro	2025-04-16 13:35:56	2025-04-16 13:35:56
1105	91	Forester	2025-04-16 13:35:56	2025-04-16 13:35:56
1106	94	Forfour	2025-04-16 13:35:56	2025-04-16 13:35:56
1107	94	Fortwo	2025-04-16 13:35:56	2025-04-16 13:35:56
1108	90	Ibiza	2025-04-16 13:35:56	2025-04-16 13:35:56
1109	91	Impreza	2025-04-16 13:35:56	2025-04-16 13:35:56
1110	90	Inca	2025-04-16 13:35:56	2025-04-16 13:35:56
1111	91	Justy	2025-04-16 13:35:56	2025-04-16 13:35:56
1112	91	Justy G3X	2025-04-16 13:35:56	2025-04-16 13:35:56
1113	86	Kadjar	2025-04-16 13:35:56	2025-04-16 13:35:56
1114	89	Korando	2025-04-16 13:35:56	2025-04-16 13:35:56
1115	89	Kyron	2025-04-16 13:35:56	2025-04-16 13:35:56
1116	86	Kangoo	2025-04-16 13:35:56	2025-04-16 13:35:56
1117	86	Laguna	2025-04-16 13:35:56	2025-04-16 13:35:56
1118	86	Latitude	2025-04-16 13:35:56	2025-04-16 13:35:56
1119	95	Land	2025-04-16 13:35:56	2025-04-16 13:35:56
1120	91	Legacy	2025-04-16 13:35:56	2025-04-16 13:35:56
1121	90	Leon	2025-04-16 13:35:56	2025-04-16 13:35:56
1122	86	Logan	2025-04-16 13:35:56	2025-04-16 13:35:56
1123	86	Master	2025-04-16 13:35:56	2025-04-16 13:35:56
1124	90	Mii	2025-04-16 13:35:56	2025-04-16 13:35:56
1125	86	Modus	2025-04-16 13:35:56	2025-04-16 13:35:56
1126	89	Musso	2025-04-16 13:35:56	2025-04-16 13:35:56
1127	93	Octavia	2025-04-16 13:35:56	2025-04-16 13:35:56
1128	87	Park Ward	2025-04-16 13:35:56	2025-04-16 13:35:56
1129	87	Phantom Series II	2025-04-16 13:35:56	2025-04-16 13:35:56
1130	86	R12	2025-04-16 13:35:56	2025-04-16 13:35:56
1131	86	R19	2025-04-16 13:35:56	2025-04-16 13:35:56
1132	86	R9	2025-04-16 13:35:56	2025-04-16 13:35:56
1133	93	Rapid	2025-04-16 13:35:56	2025-04-16 13:35:56
1134	89	Rexton	2025-04-16 13:35:56	2025-04-16 13:35:56
1135	89	Rodius	2025-04-16 13:35:56	2025-04-16 13:35:56
1136	93	Roomster	2025-04-16 13:35:56	2025-04-16 13:35:56
1137	95	Rover 25	2025-04-16 13:35:56	2025-04-16 13:35:56
1138	95	Rover 45	2025-04-16 13:35:56	2025-04-16 13:35:56
1139	95	Rover 75	2025-04-16 13:35:56	2025-04-16 13:35:56
1140	95	Rover Streetwise	2025-04-16 13:35:56	2025-04-16 13:35:56
1141	88	Saab 9-3 X	2025-04-16 13:35:56	2025-04-16 13:35:56
1142	88	Saab 9-4X	2025-04-16 13:35:56	2025-04-16 13:35:56
1143	86	Safrane	2025-04-16 13:35:56	2025-04-16 13:35:56
1144	86	Sandero	2025-04-16 13:35:56	2025-04-16 13:35:56
1145	86	Scenic	2025-04-16 13:35:56	2025-04-16 13:35:56
1146	87	Silver Cloud	2025-04-16 13:35:56	2025-04-16 13:35:56
1147	87	Silver Race	2025-04-16 13:35:56	2025-04-16 13:35:56
1148	87	Silver Seraph	2025-04-16 13:35:56	2025-04-16 13:35:56
1149	87	Silver Shadow II	2025-04-16 13:35:56	2025-04-16 13:35:56
1150	87	Silver Shadow One	2025-04-16 13:35:56	2025-04-16 13:35:56
1151	87	Silver Spur	2025-04-16 13:35:56	2025-04-16 13:35:56
1152	87	Silver Spur II	2025-04-16 13:35:56	2025-04-16 13:35:56
1153	87	Silver Wraith	2025-04-16 13:35:56	2025-04-16 13:35:56
1154	94	Smart Fortwo Elektro	2025-04-16 13:35:56	2025-04-16 13:35:56
1155	94	Smart roadster	2025-04-16 13:35:56	2025-04-16 13:35:56
1156	93	Superb	2025-04-16 13:35:56	2025-04-16 13:35:56
1157	89	Tivoli	2025-04-16 13:35:56	2025-04-16 13:35:56
1158	90	Toledo	2025-04-16 13:35:56	2025-04-16 13:35:56
1159	86	Trafic	2025-04-16 13:35:56	2025-04-16 13:35:56
1160	91	Trezia	2025-04-16 13:35:56	2025-04-16 13:35:56
1161	86	Twingo	2025-04-16 13:35:56	2025-04-16 13:35:56
1162	86	Twizy	2025-04-16 13:35:56	2025-04-16 13:35:56
1163	95	VL 75	2025-04-16 13:35:56	2025-04-16 13:35:56
1164	86	Wind	2025-04-16 13:35:56	2025-04-16 13:35:56
1165	93	Yeti	2025-04-16 13:35:56	2025-04-16 13:35:56
1166	86	ZOE	2025-04-16 13:35:56	2025-04-16 13:35:56
1167	86	ZOE	2025-04-16 13:35:56	2025-04-16 13:35:56
1168	96	APV	2025-04-16 13:35:56	2025-04-16 13:35:56
1169	96	Carry	2025-04-16 13:35:56	2025-04-16 13:35:56
1170	96	Celerio	2025-04-16 13:35:56	2025-04-16 13:35:56
1171	96	Ertiga	2025-04-16 13:35:56	2025-04-16 13:35:56
1172	96	Grand Vitara	2025-04-16 13:35:56	2025-04-16 13:35:56
1173	96	Jimny	2025-04-16 13:35:56	2025-04-16 13:35:56
1174	96	Kizashi	2025-04-16 13:35:56	2025-04-16 13:35:56
1175	97	86	2025-04-16 13:35:56	2025-04-16 13:35:56
1176	97	Avalon	2025-04-16 13:35:56	2025-04-16 13:35:56
1177	97	Camry	2025-04-16 13:35:56	2025-04-16 13:35:56
1178	97	Corolla	2025-04-16 13:35:56	2025-04-16 13:35:56
1179	97	FJ Cruiser	2025-04-16 13:35:56	2025-04-16 13:35:56
1180	97	Fortuner	2025-04-16 13:35:56	2025-04-16 13:35:56
1181	97	Innova	2025-04-16 13:35:56	2025-04-16 13:35:56
1182	97	Land Cruiser	2025-04-16 13:35:56	2025-04-16 13:35:56
1183	97	Prado	2025-04-16 13:35:56	2025-04-16 13:35:56
1184	97	Previa	2025-04-16 13:35:56	2025-04-16 13:35:56
1185	97	Prius	2025-04-16 13:35:56	2025-04-16 13:35:56
1186	97	RAV4	2025-04-16 13:35:56	2025-04-16 13:35:56
1187	97	Yaris	2025-04-16 13:35:56	2025-04-16 13:35:56
1188	98	Beetle	2025-04-16 13:35:56	2025-04-16 13:35:56
1189	98	Golf	2025-04-16 13:35:56	2025-04-16 13:35:56
1190	98	Golf R	2025-04-16 13:35:56	2025-04-16 13:35:56
1191	98	Jetta	2025-04-16 13:35:56	2025-04-16 13:35:56
1192	99	1618	2025-04-16 13:35:56	2025-04-16 13:35:56
1193	97	4Runner	2025-04-16 13:35:56	2025-04-16 13:35:56
1194	96	Alto	2025-04-16 13:35:56	2025-04-16 13:35:56
1195	96	APV Van	2025-04-16 13:35:56	2025-04-16 13:35:56
1196	98	Amarok	2025-04-16 13:35:56	2025-04-16 13:35:56
1197	97	Aurion	2025-04-16 13:35:56	2025-04-16 13:35:56
1198	97	Auris	2025-04-16 13:35:56	2025-04-16 13:35:56
1199	97	Avanza	2025-04-16 13:35:56	2025-04-16 13:35:56
1200	97	Avensis	2025-04-16 13:35:56	2025-04-16 13:35:56
1201	97	Avensis Verso	2025-04-16 13:35:56	2025-04-16 13:35:56
1202	97	Aygo	2025-04-16 13:35:56	2025-04-16 13:35:56
1203	96	Baleno	2025-04-16 13:35:56	2025-04-16 13:35:56
1204	98	Bora	2025-04-16 13:35:56	2025-04-16 13:35:56
1205	98	Cabrio	2025-04-16 13:35:56	2025-04-16 13:35:56
1206	98	Caddy	2025-04-16 13:35:56	2025-04-16 13:35:56
1207	97	Carina	2025-04-16 13:35:56	2025-04-16 13:35:56
1208	98	CC	2025-04-16 13:35:56	2025-04-16 13:35:56
1209	97	Celica	2025-04-16 13:35:56	2025-04-16 13:35:56
1210	96	Ciaz	2025-04-16 13:35:56	2025-04-16 13:35:56
1211	97	Coaster	2025-04-16 13:35:56	2025-04-16 13:35:56
1212	97	Corolla Verso	2025-04-16 13:35:56	2025-04-16 13:35:56
1213	97	Corona	2025-04-16 13:35:56	2025-04-16 13:35:56
1214	98	Crafter	2025-04-16 13:35:56	2025-04-16 13:35:56
1215	97	Cressida	2025-04-16 13:35:56	2025-04-16 13:35:56
1216	97	Crown	2025-04-16 13:35:56	2025-04-16 13:35:56
1217	97	Echo	2025-04-16 13:35:56	2025-04-16 13:35:56
1218	98	EOS	2025-04-16 13:35:56	2025-04-16 13:35:56
1219	98	Eurovan	2025-04-16 13:35:56	2025-04-16 13:35:56
1220	98	Golf Plus	2025-04-16 13:35:56	2025-04-16 13:35:56
1221	98	Golf R32	2025-04-16 13:35:56	2025-04-16 13:35:56
1222	97	GT86	2025-04-16 13:35:56	2025-04-16 13:35:56
1223	98	GTI	2025-04-16 13:35:56	2025-04-16 13:35:56
1224	97	Hiace	2025-04-16 13:35:56	2025-04-16 13:35:56
1225	97	Hilux	2025-04-16 13:35:56	2025-04-16 13:35:56
1226	96	Ignis	2025-04-16 13:35:56	2025-04-16 13:35:56
1227	99	Indica	2025-04-16 13:35:56	2025-04-16 13:35:56
1228	97	IQ	2025-04-16 13:35:56	2025-04-16 13:35:56
1229	97	Land Cruiser 70	2025-04-16 13:35:56	2025-04-16 13:35:56
1230	97	Land Cruiser V8	2025-04-16 13:35:56	2025-04-16 13:35:56
1231	96	Liana	2025-04-16 13:35:56	2025-04-16 13:35:56
1232	99	Manza	2025-04-16 13:35:56	2025-04-16 13:35:56
1233	97	MR2	2025-04-16 13:35:56	2025-04-16 13:35:56
1234	97	MR 2	2025-04-16 13:35:56	2025-04-16 13:35:56
1235	97	Prius+	2025-04-16 13:35:56	2025-04-16 13:35:56
1236	99	Safari	2025-04-16 13:35:56	2025-04-16 13:35:56
1237	97	Scion	2025-04-16 13:35:56	2025-04-16 13:35:56
1238	97	Sequoia	2025-04-16 13:35:56	2025-04-16 13:35:56
1239	97	Sienna	2025-04-16 13:35:56	2025-04-16 13:35:56
1240	97	Solara	2025-04-16 13:35:56	2025-04-16 13:35:56
1241	96	Splash	2025-04-16 13:35:56	2025-04-16 13:35:56
1242	97	Starlet	2025-04-16 13:35:56	2025-04-16 13:35:56
1243	97	Supra	2025-04-16 13:35:56	2025-04-16 13:35:56
1244	96	SX4	2025-04-16 13:35:56	2025-04-16 13:35:56
1245	96	Swift	2025-04-16 13:35:56	2025-04-16 13:35:56
1246	96	SX4 S-Cross	2025-04-16 13:35:56	2025-04-16 13:35:56
1247	99	Telcoline	2025-04-16 13:35:56	2025-04-16 13:35:56
1248	97	Tacoma	2025-04-16 13:35:56	2025-04-16 13:35:56
1249	97	Tercel	2025-04-16 13:35:56	2025-04-16 13:35:56
1250	100	Tigr	2025-04-16 13:35:56	2025-04-16 13:35:56
1251	91	Tribeca	2025-04-16 13:35:56	2025-04-16 13:35:56
1252	97	Tundra	2025-04-16 13:35:56	2025-04-16 13:35:56
1253	97	Urban Cruiser	2025-04-16 13:35:56	2025-04-16 13:35:56
1254	97	Venza	2025-04-16 13:35:56	2025-04-16 13:35:56
1255	96	Verona	2025-04-16 13:35:56	2025-04-16 13:35:56
1256	97	Verso	2025-04-16 13:35:56	2025-04-16 13:35:56
1257	97	Verso S	2025-04-16 13:35:56	2025-04-16 13:35:56
1258	96	Vitara	2025-04-16 13:35:56	2025-04-16 13:35:56
1259	96	Wagon R+	2025-04-16 13:35:56	2025-04-16 13:35:56
1260	91	WRX	2025-04-16 13:35:56	2025-04-16 13:35:56
1261	91	WRX STI	2025-04-16 13:35:56	2025-04-16 13:35:56
1262	97	XA	2025-04-16 13:35:56	2025-04-16 13:35:56
1263	99	Xenon	2025-04-16 13:35:56	2025-04-16 13:35:56
1264	96	XL7	2025-04-16 13:35:56	2025-04-16 13:35:56
1265	91	XV	2025-04-16 13:35:56	2025-04-16 13:35:56
1266	97	Zalas	2025-04-16 13:35:56	2025-04-16 13:35:56
1267	98	Passat	2025-04-16 13:35:56	2025-04-16 13:35:56
1268	98	Scirocco	2025-04-16 13:35:56	2025-04-16 13:35:56
1269	98	Tiguan	2025-04-16 13:35:56	2025-04-16 13:35:56
1270	98	Touareg	2025-04-16 13:35:56	2025-04-16 13:35:56
1271	101	960	2025-04-16 13:35:56	2025-04-16 13:35:56
1272	101	S90	2025-04-16 13:35:56	2025-04-16 13:35:56
1273	101	V90	2025-04-16 13:35:56	2025-04-16 13:35:56
1274	101	XC60	2025-04-16 13:35:56	2025-04-16 13:35:56
1275	101	XC90	2025-04-16 13:35:56	2025-04-16 13:35:56
1276	2	A4	2025-04-16 13:35:56	2025-04-16 13:35:56
1277	8	tst	2025-04-16 13:35:56	2025-04-16 13:35:56
1278	9	dfadsfdfd	2025-04-16 13:35:56	2025-04-16 13:35:56
1279	7	ewetet	2025-04-16 13:35:56	2025-04-16 13:35:56
1280	102	GT	2025-04-16 13:35:56	2025-04-16 13:35:56
1281	5	145	2025-04-16 13:35:56	2025-04-16 13:35:56
1282	7	test	2025-04-16 13:35:56	2025-04-16 13:35:56
1283	7	test	2025-04-16 13:35:56	2025-04-16 13:35:56
1284	1	DB11	2025-04-16 13:35:56	2025-04-16 13:35:56
1285	1	DB11 Volante	2025-04-16 13:35:56	2025-04-16 13:35:56
1286	57	Continental	2025-04-16 13:35:56	2025-04-16 13:35:56
1287	1	DB9 Volante	2025-04-16 13:35:56	2025-04-16 13:35:56
1288	2	A5 Sportback	2025-04-16 13:35:56	2025-04-16 13:35:56
1289	3	Bentayga	2025-04-16 13:35:56	2025-04-16 13:35:56
1290	40	G	2025-04-16 13:35:56	2025-04-16 13:35:56
1291	4	4-Series Convertible	2025-04-16 13:35:56	2025-04-16 13:35:56
1292	4	M4 Convertible	2025-04-16 13:35:56	2025-04-16 13:35:56
1293	10	ATS Coupe	2025-04-16 13:35:56	2025-04-16 13:35:56
1294	10	ATS V Coupe	2025-04-16 13:35:56	2025-04-16 13:35:56
1295	10	CT6	2025-04-16 13:35:56	2025-04-16 13:35:56
1296	66	ML 350	2025-04-16 13:35:56	2025-04-16 13:35:56
1297	10	XT5	2025-04-16 13:35:56	2025-04-16 13:35:56
1298	10	XTS V	2025-04-16 13:35:56	2025-04-16 13:35:56
1299	26	812	2025-04-16 13:35:56	2025-04-16 13:35:56
1300	26	GTC4	2025-04-16 13:35:56	2025-04-16 13:35:56
1301	26	PORTIFINO	2025-04-16 13:35:56	2025-04-16 13:35:56
1302	66	ML 500	2025-04-16 13:35:56	2025-04-16 13:35:56
1303	86	Talisman	2025-04-16 13:35:56	2025-04-16 13:35:56
1304	98	Scirocco r	2025-04-16 13:35:56	2025-04-16 13:35:56
1305	98	Touran	2025-04-16 13:35:56	2025-04-16 13:35:56
1306	32	Terrain	2025-04-16 13:35:56	2025-04-16 13:35:56
1307	101	V940	2025-04-16 13:35:56	2025-04-16 13:35:56
1308	77	1007	2025-04-16 13:35:56	2025-04-16 13:35:56
1309	45	110	2025-04-16 13:35:56	2025-04-16 13:35:56
1310	26	125	2025-04-16 13:35:56	2025-04-16 13:35:56
1311	27	128	2025-04-16 13:35:56	2025-04-16 13:35:56
1312	69	12C	2025-04-16 13:35:56	2025-04-16 13:35:56
1313	5	159	2025-04-16 13:35:56	2025-04-16 13:35:56
1314	95	200	2025-04-16 13:35:56	2025-04-16 13:35:56
1315	4	2er Active Tourer	2025-04-16 13:35:56	2025-04-16 13:35:56
1316	19	300	2025-04-16 13:35:56	2025-04-16 13:35:56
1317	71	3000GT	2025-04-16 13:35:56	2025-04-16 13:35:56
1318	101	745	2025-04-16 13:35:56	2025-04-16 13:35:56
1319	101	850	2025-04-16 13:35:56	2025-04-16 13:35:56
1320	101	C30	2025-04-16 13:35:56	2025-04-16 13:35:56
1321	101	C70	2025-04-16 13:35:56	2025-04-16 13:35:56
1322	10	ATS V Coupe	2025-04-16 13:35:56	2025-04-16 13:35:56
1323	99	Indigo	2025-04-16 13:35:56	2025-04-16 13:35:56
1324	98	LT	2025-04-16 13:35:56	2025-04-16 13:35:56
1325	98	Lupo	2025-04-16 13:35:56	2025-04-16 13:35:56
1326	102	MF3	2025-04-16 13:35:56	2025-04-16 13:35:56
1327	102	MF4	2025-04-16 13:35:56	2025-04-16 13:35:56
1328	102	MF5	2025-04-16 13:35:56	2025-04-16 13:35:56
1329	103	Model S	2025-04-16 13:35:56	2025-04-16 13:35:56
1330	103	Model X	2025-04-16 13:35:56	2025-04-16 13:35:56
1331	98	Multivan	2025-04-16 13:35:56	2025-04-16 13:35:56
1332	104	Oting	2025-04-16 13:35:56	2025-04-16 13:35:56
1333	98	Passat Variant	2025-04-16 13:35:56	2025-04-16 13:35:56
1334	98	Phaeton	2025-04-16 13:35:56	2025-04-16 13:35:56
1335	98	Polo	2025-04-16 13:35:56	2025-04-16 13:35:56
1336	98	Rabbit	2025-04-16 13:35:56	2025-04-16 13:35:56
1337	104	Rich	2025-04-16 13:35:56	2025-04-16 13:35:56
1338	101	S40	2025-04-16 13:35:56	2025-04-16 13:35:56
1339	101	S60	2025-04-16 13:35:56	2025-04-16 13:35:56
1340	101	S70	2025-04-16 13:35:56	2025-04-16 13:35:56
1341	101	S80	2025-04-16 13:35:56	2025-04-16 13:35:56
1342	98	Santana	2025-04-16 13:35:56	2025-04-16 13:35:56
1343	98	Sharan	2025-04-16 13:35:56	2025-04-16 13:35:56
1344	31	Shelby GT500	2025-04-16 13:35:56	2025-04-16 13:35:56
1345	98	SpaceFox	2025-04-16 13:35:56	2025-04-16 13:35:56
1346	32	Terrain	2025-04-16 13:35:56	2025-04-16 13:35:56
1347	98	Transporter	2025-04-16 13:35:56	2025-04-16 13:35:56
1348	101	V40	2025-04-16 13:35:56	2025-04-16 13:35:56
1349	101	V 40 (2012)	2025-04-16 13:35:56	2025-04-16 13:35:56
1350	101	V 40 Cross Country	2025-04-16 13:35:56	2025-04-16 13:35:56
1351	101	V50	2025-04-16 13:35:56	2025-04-16 13:35:56
1352	101	V60	2025-04-16 13:35:56	2025-04-16 13:35:56
1353	101	V 60 Cross Country	2025-04-16 13:35:56	2025-04-16 13:35:56
1354	101	V70	2025-04-16 13:35:56	2025-04-16 13:35:56
1355	98	Vento	2025-04-16 13:35:56	2025-04-16 13:35:56
1356	101	XC70	2025-04-16 13:35:56	2025-04-16 13:35:56
1357	101	XC90 (2014)	2025-04-16 13:35:56	2025-04-16 13:35:56
1358	104	Yumsun	2025-04-16 13:35:56	2025-04-16 13:35:56
1359	32	Terrain	2025-04-16 13:35:56	2025-04-16 13:35:56
1360	59	323	2025-04-16 13:35:56	2025-04-16 13:35:56
1361	77	405	2025-04-16 13:35:56	2025-04-16 13:35:56
1362	59	5	2025-04-16 13:35:56	2025-04-16 13:35:56
1363	27	500X	2025-04-16 13:35:56	2025-04-16 13:35:56
1364	68	550	2025-04-16 13:35:56	2025-04-16 13:35:56
1365	101	740	2025-04-16 13:35:56	2025-04-16 13:35:56
1366	78	911 GT2 RS	2025-04-16 13:35:56	2025-04-16 13:35:56
1367	73	Aero Coupe	2025-04-16 13:35:56	2025-04-16 13:35:56
1368	31	Aerostar	2025-04-16 13:35:56	2025-04-16 13:35:56
1369	2	All Road Quattro	2025-04-16 13:35:56	2025-04-16 13:35:56
1370	39	Atos	2025-04-16 13:35:56	2025-04-16 13:35:56
1371	86	Avantime	2025-04-16 13:35:56	2025-04-16 13:35:56
1372	12	B11 Oriental Son	2025-04-16 13:35:56	2025-04-16 13:35:56
1373	44	Bongo III	2025-04-16 13:35:56	2025-04-16 13:35:56
1374	20	C8	2025-04-16 13:35:56	2025-04-16 13:35:56
1375	98	Cabriolet	2025-04-16 13:35:56	2025-04-16 13:35:56
1376	84	Cevennes	2025-04-16 13:35:56	2025-04-16 13:35:56
1377	38	Civic	2025-04-16 13:35:56	2025-04-16 13:35:56
1378	24	Delta	2025-04-16 13:35:56	2025-04-16 13:35:56
1379	71	Diamante	2025-04-16 13:35:56	2025-04-16 13:35:56
1380	55	Discovery	2025-04-16 13:35:56	2025-04-16 13:35:56
1381	22	Duster	2025-04-16 13:35:56	2025-04-16 13:35:56
1382	66	E 55 AMG	2025-04-16 13:35:56	2025-04-16 13:35:56
1383	33	Emgrand 7	2025-04-16 13:35:56	2025-04-16 13:35:56
1384	10	Fleetwood	2025-04-16 13:35:56	2025-04-16 13:35:56
1385	90	FR Series	2025-04-16 13:35:56	2025-04-16 13:35:56
1386	27	Freemont	2025-04-16 13:35:56	2025-04-16 13:35:56
1387	5	Giulietta	2025-04-16 13:35:56	2025-04-16 13:35:56
1388	58	Gransport Spyder	2025-04-16 13:35:56	2025-04-16 13:35:56
1389	31	GT	2025-04-16 13:35:56	2025-04-16 13:35:56
1390	39	H1	2025-04-16 13:35:56	2025-04-16 13:35:56
1391	97	Highlander	2025-04-16 13:35:56	2025-04-16 13:35:56
1392	40	G	2025-04-16 13:35:56	2025-04-16 13:35:56
1393	43	Liberty	2025-04-16 13:35:56	2025-04-16 13:35:56
1394	68	MG ZT	2025-04-16 13:35:56	2025-04-16 13:35:56
1395	71	Montero	2025-04-16 13:35:56	2025-04-16 13:35:56
1396	31	Mustang Shelby GT500	2025-04-16 13:35:56	2025-04-16 13:35:56
1397	19	New Yorker	2025-04-16 13:35:56	2025-04-16 13:35:56
1398	25	Nitro	2025-04-16 13:35:56	2025-04-16 13:35:56
1399	38	Odyssey J	2025-04-16 13:35:56	2025-04-16 13:35:56
1400	91	Outback	2025-04-16 13:35:56	2025-04-16 13:35:56
1401	59	Persona	2025-04-16 13:35:56	2025-04-16 13:35:56
1402	73	Roadster	2025-04-16 13:35:56	2025-04-16 13:35:56
1403	101	S 60 Cross Country	2025-04-16 13:35:56	2025-04-16 13:35:56
1404	81	Saga	2025-04-16 13:35:56	2025-04-16 13:35:56
1405	44	Sedona	2025-04-16 13:35:56	2025-04-16 13:35:56
1406	87	Seraph	2025-04-16 13:35:56	2025-04-16 13:35:56
1407	66	SL 63 AMG	2025-04-16 13:35:56	2025-04-16 13:35:56
1408	10	SRX	2025-04-16 13:35:56	2025-04-16 13:35:56
1409	96	Swift Dzire	2025-04-16 13:35:56	2025-04-16 13:35:56
1410	11	Trail Blazer	2025-04-16 13:35:56	2025-04-16 13:35:56
1411	27	Ulysse	2025-04-16 13:35:56	2025-04-16 13:35:56
1412	1	Vanquish My 2014	2025-04-16 13:35:56	2025-04-16 13:35:56
1413	86	Vel Satis	2025-04-16 13:35:56	2025-04-16 13:35:56
1414	34	Wingle 3	2025-04-16 13:35:56	2025-04-16 13:35:56
1415	42	XJS	2025-04-16 13:35:56	2025-04-16 13:35:56
1416	64	Ypsilon	2025-04-16 13:35:56	2025-04-16 13:35:56
1417	80	Zafira Tourer	2025-04-16 13:35:56	2025-04-16 13:35:56
1418	103	Model S	2025-04-16 13:35:56	2025-04-16 13:35:56
\.


--
-- Data for Name: nationalities; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.nationalities (id, name, name_ar, status, created_at, updated_at, country_code) FROM stdin;
18	Bahrain	البحرين	1	2025-05-23 14:15:00	2025-05-23 14:15:00	BH
4	Algeria	الجزائر	0	2025-05-23 14:15:00	2025-08-19 07:03:43	DZ
11	Argentina	الأرجنتين	0	2025-05-23 14:15:00	2025-08-19 07:03:46	AR
16	Azerbaijan	أذربيجان	0	2025-05-23 14:15:00	2025-08-19 07:03:50	AZ
15	Austria	النمسا	0	2025-05-23 14:15:00	2025-08-19 07:03:53	AT
14	Australia	أستراليا	0	2025-05-23 14:15:00	2025-08-19 07:03:56	AU
19	Bangladesh	بنغلاديش	0	2025-05-23 14:15:00	2025-08-19 07:04:02	BD
28	Bosnia and Herzegovina	البوسنة والهرسك	0	2025-05-23 14:15:00	2025-08-19 07:04:06	BA
37	Burundi	بوروندي	0	2025-05-23 14:15:00	2025-08-19 07:04:10	BI
38	Cabo Verde	كابو فيردي	0	2025-05-23 14:15:00	2025-08-19 07:04:12	CV
48	Christmas Island	جزيرة الكريسماس	0	2025-05-23 14:15:00	2025-08-19 07:04:24	CX
49	Cocos (Keeling) Islands	جزر كوكوس	0	2025-05-23 14:15:00	2025-08-19 07:04:26	CC
50	Colombia	كولومبيا	0	2025-05-23 14:15:00	2025-08-19 07:04:29	CO
51	Comoros	جزر القمر	0	2025-05-23 14:15:00	2025-08-19 07:04:32	KM
52	Congo Republic	جمهورية الكونغو	0	2025-05-23 14:15:00	2025-08-19 07:04:35	CG
53	Cook Islands	جزر كوك	0	2025-05-23 14:15:00	2025-08-19 07:04:38	CK
54	Costa Rica	كوستاريكا	0	2025-05-23 14:15:00	2025-08-19 07:04:41	CR
55	Croatia	كرواتيا	0	2025-05-23 14:15:00	2025-08-19 07:04:43	HR
56	Cuba	كوبا	0	2025-05-23 14:15:00	2025-08-19 07:04:46	CU
57	Curaçao	كوراساو	0	2025-05-23 14:15:00	2025-08-19 07:04:49	CW
68	Equatorial Guinea	غينيا الاستوائية	0	2025-05-23 14:15:00	2025-08-19 07:04:58	GQ
69	Eritrea	إريتريا	0	2025-05-23 14:15:00	2025-08-19 07:05:02	ER
70	Estonia	إستونيا	0	2025-05-23 14:15:00	2025-08-19 07:05:04	EE
71	Eswatini	إسواتيني	0	2025-05-23 14:15:00	2025-08-19 07:05:07	SZ
72	Ethiopia	إثيوبيا	0	2025-05-23 14:15:00	2025-08-19 07:05:09	ET
73	Falkland Islands	جزر فوكلاند	0	2025-05-23 14:15:00	2025-08-19 07:05:12	FK
74	Faroe Islands	جزر فارو	0	2025-05-23 14:15:00	2025-08-19 07:05:14	FO
75	Fiji	فيجي	0	2025-05-23 14:15:00	2025-08-19 07:05:19	FJ
76	Finland	فنلندا	0	2025-05-23 14:15:00	2025-08-19 07:05:21	FI
77	France	فرنسا	0	2025-05-23 14:15:00	2025-08-19 07:05:24	FR
39	Cambodia	كمبوديا	0	2025-05-23 14:15:00	2025-08-19 07:05:46	KH
40	Cameroon	الكاميرون	0	2025-05-23 14:15:00	2025-08-19 07:05:50	CM
41	Canada	كندا	0	2025-05-23 14:15:00	2025-08-19 07:05:52	CA
42	Caribbean Netherlands	الجزر الكاريبية الهولندية	0	2025-05-23 14:15:00	2025-08-19 07:05:55	BQ
43	Cayman Islands	جزر كايمان	0	2025-05-23 14:15:00	2025-08-19 07:05:58	KY
44	Central African Republic	جمهورية أفريقيا الوسطى	0	2025-05-23 14:15:00	2025-08-19 07:06:01	CF
45	Chad	تشاد	0	2025-05-23 14:15:00	2025-08-19 07:06:03	TD
46	Chile	تشيلي	0	2025-05-23 14:15:00	2025-08-19 07:06:06	CL
47	China	الصين	0	2025-05-23 14:15:00	2025-08-19 07:06:09	CN
58	Cyprus	قبرص	0	2025-05-23 14:15:00	2025-08-19 07:06:20	CY
59	Czechia	التشيك	0	2025-05-23 14:15:00	2025-08-19 07:06:23	CZ
60	Denmark	الدنمارك	0	2025-05-23 14:15:00	2025-08-19 07:06:26	DK
61	Djibouti	جيبوتي	0	2025-05-23 14:15:00	2025-08-19 07:06:28	DJ
62	Dominica	دومينيكا	0	2025-05-23 14:15:00	2025-08-19 07:06:30	DM
63	Dominican Republic	جمهورية الدومينيكان	0	2025-05-23 14:15:00	2025-08-19 07:06:33	DO
64	DR Congo	جمهورية الكونغو الديمقراطية	0	2025-05-23 14:15:00	2025-08-19 07:06:35	CD
65	Ecuador	الاكوادور	0	2025-05-23 14:15:00	2025-08-19 07:06:37	EC
66	Egypt	مصر	0	2025-05-23 14:15:00	2025-08-19 07:06:40	EG
67	El Salvador	السلفادور	0	2025-05-23 14:15:00	2025-08-19 07:06:50	SV
78	French Guiana	غويانا الفرنسية	0	2025-05-23 14:15:00	2025-08-19 07:06:53	GF
79	French Polynesia	بولينزيا الفرنسية	0	2025-05-23 14:15:00	2025-08-19 07:06:55	PF
80	French Southern Territories	أراض فرنسية جنوبية	0	2025-05-23 14:15:00	2025-08-19 07:06:58	TF
81	Gabon	الجابون	0	2025-05-23 14:15:00	2025-08-19 07:07:00	GA
82	Gambia	غامبيا	0	2025-05-23 14:15:00	2025-08-19 07:07:03	GM
83	Georgia	‫جورجيا	0	2025-05-23 14:15:00	2025-08-19 07:07:07	GE
119	Kuwait	الكويت	1	2025-05-23 14:15:00	2025-05-23 14:15:00	KW
168	Oman	سلطنة عمان	1	2025-05-23 14:15:00	2025-05-23 14:15:00	OM
85	Ghana	غانا	0	2025-05-23 14:15:00	2025-08-19 07:07:36	GH
86	Gibraltar	جبل طارق	0	2025-05-23 14:15:00	2025-08-19 07:07:40	GI
87	Greece	اليونان	0	2025-05-23 14:15:00	2025-08-19 07:07:43	GR
88	Greenland	جرينلاند	0	2025-05-23 14:15:00	2025-08-19 07:07:46	GL
101	Hungary	هنجاريا	0	2025-05-23 14:15:00	2025-08-19 07:07:59	HU
100	Hong Kong	هونج كونج	0	2025-05-23 14:15:00	2025-08-19 07:08:01	HK
99	Honduras	هندوراس	0	2025-05-23 14:15:00	2025-08-19 07:08:04	HN
98	Heard Island and McDonald Islands	جزيرة هيرد وجزر ماكدونالد	0	2025-05-23 14:15:00	2025-08-19 07:08:07	HM
97	Haiti	هايتي	0	2025-05-23 14:15:00	2025-08-19 07:08:09	HT
96	Guyana	غيانا	0	2025-05-23 14:15:00	2025-08-19 07:08:11	GY
95	Guinea-Bissau	غينيا بيساو	0	2025-05-23 14:15:00	2025-08-19 07:08:15	GW
94	Guinea	غينيا	0	2025-05-23 14:15:00	2025-08-19 07:08:18	GN
114	Jordan	الأردن	0	2025-05-23 14:15:00	2025-08-19 07:08:36	JO
115	Kazakhstan	كازاخستان	0	2025-05-23 14:15:00	2025-08-19 07:08:38	KZ
116	Kenya	كينيا	0	2025-05-23 14:15:00	2025-08-19 07:08:42	KE
117	Kiribati	كيريباتي	0	2025-05-23 14:15:00	2025-08-19 07:08:44	KI
118	Kosovo	كوسوفو	0	2025-05-23 14:15:00	2025-08-19 07:08:47	XK
120	Kyrgyzstan	قيرغيزستان	0	2025-05-23 14:15:00	2025-08-19 07:08:52	KG
121	Laos	لاوس	0	2025-05-23 14:15:00	2025-08-19 07:08:56	LA
122	Latvia	لاتفيا	0	2025-05-23 14:15:00	2025-08-19 07:08:59	LV
123	Lebanon	لبنان	0	2025-05-23 14:15:00	2025-08-19 07:09:02	LB
142	Mexico	المكسيك	0	2025-05-23 14:15:00	2025-08-19 07:09:11	MX
133	Malaysia	ماليزيا	0	2025-05-23 14:15:00	2025-08-19 07:09:13	MY
134	Maldives	المالديف	0	2025-05-23 14:15:00	2025-08-19 07:09:15	MV
135	Mali	مالي	0	2025-05-23 14:15:00	2025-08-19 07:09:18	ML
136	Malta	مالطا	0	2025-05-23 14:15:00	2025-08-19 07:09:20	MT
138	Martinique	مارتينيك	0	2025-05-23 14:15:00	2025-08-19 07:09:26	MQ
139	Mauritania	موريتانيا	0	2025-05-23 14:15:00	2025-08-19 07:09:29	MR
140	Mauritius	موريشيوس	0	2025-05-23 14:15:00	2025-08-19 07:09:32	MU
141	Mayotte	مايوت	0	2025-05-23 14:15:00	2025-08-19 07:09:35	YT
162	Niue	نييوي	0	2025-05-23 14:15:00	2025-08-19 07:09:42	NU
161	Nigeria	نيجيريا	0	2025-05-23 14:15:00	2025-08-19 07:09:45	NG
160	Niger	النيجر	0	2025-05-23 14:15:00	2025-08-19 07:09:47	NE
159	Nicaragua	نيكاراغوا	0	2025-05-23 14:15:00	2025-08-19 07:09:50	NI
158	New Zealand	نيوزيلندا	0	2025-05-23 14:15:00	2025-08-19 07:09:52	NZ
157	New Caledonia	كاليدونيا الجديدة	0	2025-05-23 14:15:00	2025-08-19 07:09:54	NC
156	Netherlands Antilles	جزر الأنتيل الهولندية	0	2025-05-23 14:15:00	2025-08-19 07:09:57	AN
155	Netherlands	هولندا	0	2025-05-23 14:15:00	2025-08-19 07:09:59	NL
154	Nepal	نيبال	0	2025-05-23 14:15:00	2025-08-19 07:10:02	NP
153	Nauru	ناورو	0	2025-05-23 14:15:00	2025-08-19 07:10:04	NR
89	Grenada	غرينادا	0	2025-05-23 14:15:00	2025-08-19 07:13:33	GD
90	Guadeloupe	غوادلوب	0	2025-05-23 14:15:00	2025-08-19 07:13:36	GP
91	Guam	غوام	0	2025-05-23 14:15:00	2025-08-19 07:13:38	GU
92	Guatemala	غواتيمالا	0	2025-05-23 14:15:00	2025-08-19 07:13:41	GT
93	Guernsey	غيرنزي	0	2025-05-23 14:15:00	2025-08-19 07:13:44	GG
109	Italy	إيطاليا	0	2025-05-23 14:15:00	2025-08-19 07:13:50	IT
110	Ivory Coast	ساحل العاج	0	2025-05-23 14:15:00	2025-08-19 07:13:53	CI
111	Jamaica	جامايكا	0	2025-05-23 14:15:00	2025-08-19 07:13:56	JM
112	Japan	اليابان	0	2025-05-23 14:15:00	2025-08-19 07:13:59	JP
113	Jersey	جيرسي	0	2025-05-23 14:15:00	2025-08-19 07:14:02	JE
124	Lesotho	ليسوتو	0	2025-05-23 14:15:00	2025-08-19 07:14:05	LS
125	Liberia	ليبيريا	0	2025-05-23 14:15:00	2025-08-19 07:14:09	LR
126	Libya	ليبيا	0	2025-05-23 14:15:00	2025-08-19 07:14:12	LY
147	Montenegro	مونتينيغرو	0	2025-05-23 14:15:00	2025-08-19 07:14:20	ME
148	Montserrat	مونتسرات	0	2025-05-23 14:15:00	2025-08-19 07:14:24	MS
149	Morocco	المغرب	0	2025-05-23 14:15:00	2025-08-19 07:14:26	MA
150	Mozambique	موزمبيق	0	2025-05-23 14:15:00	2025-08-19 07:14:29	MZ
151	Myanmar	ميانمار	0	2025-05-23 14:15:00	2025-08-19 07:14:32	MM
152	Namibia	ناميبيا	0	2025-05-23 14:15:00	2025-08-19 07:14:35	NA
163	Norfolk Island	جزيرة نورفولك	0	2025-05-23 14:15:00	2025-08-19 07:14:38	NF
164	North Korea	كوريا الشمالية	0	2025-05-23 14:15:00	2025-08-19 07:14:40	KP
165	North Macedonia	مقدونيا الشمالية	0	2025-05-23 14:15:00	2025-08-19 07:14:43	MK
166	Northern Mariana Islands	جزر ماريانا الشمالية	0	2025-05-23 14:15:00	2025-08-19 07:14:46	MP
104	Indonesia	أندونيسيا	0	2025-05-23 14:15:00	2025-08-19 07:16:34	ID
105	Iran	إيران	0	2025-05-23 14:15:00	2025-08-19 07:16:39	IR
106	Iraq	العراق	0	2025-05-23 14:15:00	2025-08-19 07:16:42	IQ
107	Ireland	أيرلندا	0	2025-05-23 14:15:00	2025-08-19 07:16:45	IE
108	Isle of Man	جزيرة مان	0	2025-05-23 14:15:00	2025-08-19 07:16:47	IM
103	India	الهند	1	2025-05-23 14:15:00	2026-01-08 08:08:15	IN
170	Palau	بالاو	0	2025-05-23 14:15:00	2025-08-19 07:16:58	PW
132	Malawi	مالاوي	0	2025-05-23 14:15:00	2025-08-19 07:17:01	MW
144	Moldova	مولدوفا	0	2025-05-23 14:15:00	2025-08-19 07:17:07	MD
145	Monaco	موناكو	0	2025-05-23 14:15:00	2025-08-19 07:17:09	MC
146	Mongolia	منغوليا	0	2025-05-23 14:15:00	2025-08-19 07:17:12	MN
167	Norway	النرويج	0	2025-05-23 14:15:00	2025-08-19 07:17:15	NO
128	Lithuania	ليتوانيا	0	2025-05-23 14:15:00	2025-08-19 07:17:32	LT
129	Luxembourg	لوكسمبورغ	0	2025-05-23 14:15:00	2025-08-19 07:17:35	LU
130	Macao	ماكاو	0	2025-05-23 14:15:00	2025-08-19 07:17:39	MO
131	Madagascar	مدغشقر	0	2025-05-23 14:15:00	2025-08-19 07:17:42	MG
169	Pakistan	باكستان	1	2025-05-23 14:15:00	2026-01-08 08:08:08	PK
181	Qatar	قطر	1	2025-05-23 14:15:00	2025-05-23 14:15:00	QA
196	Saudi Arabia	السعودية	1	2025-05-23 14:15:00	2025-05-23 14:15:00	SA
237	United Arab Emirates	الإمارات العربية المتحدة	1	2025-05-23 14:15:00	2025-05-23 14:15:00	AE
84	Germany	ألمانيا	0	2025-05-23 14:15:00	2025-08-19 07:07:34	DE
182	Réunion	ريونيون	0	2025-05-23 14:15:00	2025-08-19 07:10:29	RE
180	Puerto Rico	بورتوريكو	0	2025-05-23 14:15:00	2025-08-19 07:10:32	PR
179	Portugal	البرتغال	0	2025-05-23 14:15:00	2025-08-19 07:10:35	PT
178	Poland	بولندا	0	2025-05-23 14:15:00	2025-08-19 07:10:37	PL
177	Pitcairn Islands	جزر بيتكيرن	0	2025-05-23 14:15:00	2025-08-19 07:10:40	PN
176	Philippines	الفلبين	0	2025-05-23 14:15:00	2025-08-19 07:10:42	PH
175	Peru	بيرو	0	2025-05-23 14:15:00	2025-08-19 07:10:45	PE
174	Paraguay	باراغواي	0	2025-05-23 14:15:00	2025-08-19 07:10:47	PY
201	Singapore	سنغافورة	0	2025-05-23 14:15:00	2025-08-19 07:10:57	SG
200	Sierra Leone	سيراليون	0	2025-05-23 14:15:00	2025-08-19 07:11:00	SL
199	Seychelles	سيشل	0	2025-05-23 14:15:00	2025-08-19 07:11:02	SC
198	Serbia	صربيا	0	2025-05-23 14:15:00	2025-08-19 07:11:05	RS
197	Senegal	السنغال	0	2025-05-23 14:15:00	2025-08-19 07:11:08	SN
195	São Tomé and Príncipe	ساو تومي وبرينسيب	0	2025-05-23 14:15:00	2025-08-19 07:11:12	ST
194	San Marino	سان مارينو	0	2025-05-23 14:15:00	2025-08-19 07:11:15	SM
193	Samoa	ساموا	0	2025-05-23 14:15:00	2025-08-19 07:11:18	WS
192	Saint Vincent and the Grenadines	سانت فينسنت والغرينادين	0	2025-05-23 14:15:00	2025-08-19 07:11:21	VC
211	Spain	إسبانيا	0	2025-05-23 14:15:00	2025-08-19 07:11:34	ES
212	Sri Lanka	سريلانكا	0	2025-05-23 14:15:00	2025-08-19 07:11:54	LK
213	Sudan	السودان	0	2025-05-23 14:15:00	2025-08-19 07:12:01	SD
214	Suriname	سورينام	0	2025-05-23 14:15:00	2025-08-19 07:12:03	SR
215	Svalbard and Jan Mayen	سفالبارد ويان ماين	0	2025-05-23 14:15:00	2025-08-19 07:12:06	SJ
216	Sweden	السويد	0	2025-05-23 14:15:00	2025-08-19 07:12:09	SE
217	Switzerland	سويسرا	0	2025-05-23 14:15:00	2025-08-19 07:12:11	CH
218	Syria	سوريا	0	2025-05-23 14:15:00	2025-08-19 07:12:13	SY
219	Taiwan	تايوان	0	2025-05-23 14:15:00	2025-08-19 07:12:15	TW
220	Tajikistan	طاجيكستان	0	2025-05-23 14:15:00	2025-08-19 07:12:18	TJ
240	Uruguay	أوروغواي	0	2025-05-23 14:15:00	2025-08-19 07:12:34	UY
239	United States of America	الولايات المتحدة الأمريكية	0	2025-05-23 14:15:00	2025-08-19 07:12:36	US
238	United Kingdom	المملكة المتحدة	0	2025-05-23 14:15:00	2025-08-19 07:12:39	GB
236	Ukraine	أوكرانيا	0	2025-05-23 14:15:00	2025-08-19 07:12:43	UA
235	Uganda	أوغندا	0	2025-05-23 14:15:00	2025-08-19 07:12:46	UG
234	U.S. Virgin Islands	جزر العذراء الأمريكية	0	2025-05-23 14:15:00	2025-08-19 07:12:49	VI
232	Tuvalu	توفالو	0	2025-05-23 14:15:00	2025-08-19 07:12:54	TV
231	Turks and Caicos Islands	جزر توركس وكايكوس	0	2025-05-23 14:15:00	2025-08-19 07:12:57	TC
250	Zimbabwe	زيمبابوي	0	2025-05-23 14:15:00	2025-08-19 07:13:04	ZW
172	Panama	بنما	0	2025-05-23 14:15:00	2025-08-19 07:15:04	PA
202	Sint Maarten	سانت مارتن	0	2025-05-23 14:15:00	2025-08-19 07:15:12	SX
191	Saint Pierre and Miquelon	سان بيير وميكلون	0	2025-05-23 14:15:00	2025-08-19 07:15:16	PM
190	Saint Martin	سانت مارتن	0	2025-05-23 14:15:00	2025-08-19 07:15:19	MF
189	Saint Lucia	سانت لوسيا	0	2025-05-23 14:15:00	2025-08-19 07:15:22	LC
188	Saint Kitts and Nevis	سانت كيتس ونيفيس	0	2025-05-23 14:15:00	2025-08-19 07:15:25	KN
187	Saint Helena	سانت هيلينا	0	2025-05-23 14:15:00	2025-08-19 07:15:27	SH
186	Saint Barthélemy	سان بارتيلمي	0	2025-05-23 14:15:00	2025-08-19 07:15:30	BL
185	Rwanda	رواندا	0	2025-05-23 14:15:00	2025-08-19 07:15:33	RW
184	Russia	روسيا	0	2025-05-23 14:15:00	2025-08-19 07:15:36	RU
230	Turkmenistan	تركمانستان	0	2025-05-23 14:15:00	2025-08-19 07:15:43	TM
222	Thailand	تايلاند	0	2025-05-23 14:15:00	2025-08-19 07:15:46	TH
223	Timor-Leste	تيمور الشرقية	0	2025-05-23 14:15:00	2025-08-19 07:15:49	TL
224	Togo	توجو	0	2025-05-23 14:15:00	2025-08-19 07:15:52	TG
225	Tokelau	توكيلاو	0	2025-05-23 14:15:00	2025-08-19 07:15:55	TK
226	Tonga	تونغا	0	2025-05-23 14:15:00	2025-08-19 07:15:57	TO
227	Trinidad and Tobago	ترينيداد وتوباغو	0	2025-05-23 14:15:00	2025-08-19 07:16:00	TT
228	Tunisia	تونس	0	2025-05-23 14:15:00	2025-08-19 07:16:03	TN
229	Turkey	تركيا	0	2025-05-23 14:15:00	2025-08-19 07:16:06	TR
183	Romania	رومانيا	0	2025-05-23 14:15:00	2025-08-19 07:18:00	RO
204	Slovenia	سلوفينيا	0	2025-05-23 14:15:00	2025-08-19 07:18:07	SI
241	Uzbekistan	أوزبكستان	0	2025-05-23 14:15:00	2025-08-19 07:18:11	UZ
221	Tanzania	تنزانيا	0	2025-05-23 14:15:00	2025-08-19 07:18:15	TZ
210	South Sudan	جنوب السودان	0	2025-05-23 14:15:00	2025-08-19 07:18:18	SS
209	South Korea	كوريا الجنوبية	0	2025-05-23 14:15:00	2025-08-19 07:18:22	KR
207	South Africa	جنوب أفريقيا	0	2025-05-23 14:15:00	2025-08-19 07:18:27	ZA
206	Somalia	الصومال	0	2025-05-23 14:15:00	2025-08-19 07:18:30	SO
205	Solomon Islands	جزر سليمان	0	2025-05-23 14:15:00	2025-08-19 07:18:32	SB
203	Slovakia	سلوفاكيا	0	2025-05-23 14:15:00	2025-08-19 07:19:07	SK
242	Vanuatu	فانواتو	0	2025-05-23 14:15:00	2025-08-19 07:19:37	VU
243	Vatican City	مدينة الفاتيكان	0	2025-05-23 14:15:00	2025-08-19 07:19:30	VA
244	Venezuela	فنزويلا	0	2025-05-23 14:15:00	2025-08-19 07:19:40	VE
245	Vietnam	فيتنام	0	2025-05-23 14:15:00	2025-08-19 07:19:44	VN
246	Wallis and Futuna	واليس وفوتونا	0	2025-05-23 14:15:00	2025-08-19 07:19:47	WF
247	Western Sahara	الصحراء الغربية	0	2025-05-23 14:15:00	2025-08-19 07:19:50	EH
248	Yemen	اليمن	0	2025-05-23 14:15:00	2025-08-19 07:19:53	YE
249	Zambia	زامبيا	0	2025-05-23 14:15:00	2025-08-19 07:19:56	ZM
102	Iceland	آيسلندا	0	2025-05-23 14:15:00	2025-08-19 07:07:56	IS
137	Marshall Islands	جزر مارشال	0	2025-05-23 14:15:00	2025-08-19 07:09:22	MH
171	Palestine	فلسطين	0	2025-05-23 14:15:00	2025-08-19 07:10:20	PS
173	Papua New Guinea	بابوا غينيا الجديدة	0	2025-05-23 14:15:00	2025-08-19 07:10:50	PG
233	U.S. Minor Outlying Islands	جزر الولايات المتحدة الصغيرة النائية	0	2025-05-23 14:15:00	2025-08-19 07:12:52	UM
127	Liechtenstein	ليختنشتاين	0	2025-05-23 14:15:00	2025-08-19 07:14:15	LI
143	Micronesia	ولايات ميكرونيسيا المتحدة	0	2025-05-23 14:15:00	2025-08-19 07:17:04	FM
208	South Georgia and South Sandwich Islands	جورجيا الجنوبية وجزر ساندويتش الجنوبية	0	2025-05-23 14:15:00	2025-08-19 07:18:24	GS
\.


--
-- Data for Name: notification_settings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.notification_settings (id, user_id, slug, value, created_at, updated_at) FROM stdin;
1	50	all	f	2025-05-22 07:12:37	2025-05-22 07:12:47
2	50	requested	f	2025-05-22 07:12:55	2025-05-22 07:12:55
74	244	all	t	2025-06-10 09:19:28	2025-06-10 09:19:28
75	244	request	t	2025-06-10 09:19:28	2025-06-10 09:19:28
76	244	promotion	t	2025-06-10 09:19:28	2025-06-10 09:19:28
77	244	message	t	2025-06-10 09:19:28	2025-06-10 09:19:28
78	244	alert	t	2025-06-10 09:19:28	2025-06-10 09:19:28
90	247	request	t	2025-06-23 21:05:53	2025-06-27 14:23:40
91	247	promotion	t	2025-06-23 21:05:53	2025-06-27 14:23:40
92	247	message	t	2025-06-23 21:05:53	2025-06-27 14:23:40
93	247	alert	t	2025-06-23 21:05:53	2025-06-27 14:23:40
94	248	all	t	2025-06-27 14:51:05	2025-06-27 14:51:05
13	215	all	t	2025-06-05 09:38:14	2025-06-10 13:16:20
14	215	request	t	2025-06-05 09:38:14	2025-06-10 13:16:20
15	215	promotion	t	2025-06-05 09:38:14	2025-06-10 13:16:20
16	215	message	t	2025-06-05 09:38:14	2025-06-10 13:16:20
17	215	alert	t	2025-06-05 09:38:14	2025-06-10 13:16:20
8	233	all	t	2025-06-05 09:25:05	2025-06-06 08:24:32
9	233	request	t	2025-06-05 09:25:05	2025-06-06 08:24:32
10	233	promotion	t	2025-06-05 09:25:05	2025-06-06 08:24:32
11	233	message	t	2025-06-05 09:25:05	2025-06-06 08:24:33
12	233	alert	t	2025-06-05 09:25:05	2025-06-06 08:24:33
54	240	all	t	2025-06-06 11:35:23	2025-06-06 11:35:23
95	248	request	t	2025-06-27 14:51:05	2025-06-27 14:51:05
96	248	promotion	t	2025-06-27 14:51:05	2025-06-27 14:51:05
97	248	message	t	2025-06-27 14:51:05	2025-06-27 14:51:05
99	195	all	t	2025-06-28 08:10:29	2025-06-28 08:10:29
100	195	request	t	2025-06-28 08:10:29	2025-06-28 08:10:29
19	236	all	t	2025-06-05 10:21:01	2025-06-05 10:21:01
20	236	request	t	2025-06-05 10:21:01	2025-06-05 10:21:01
21	236	promotion	t	2025-06-05 10:21:01	2025-06-05 10:21:01
22	236	message	t	2025-06-05 10:21:01	2025-06-05 10:21:01
23	236	alert	t	2025-06-05 10:21:01	2025-06-05 10:21:01
24	235	all	t	2025-06-05 10:30:24	2025-06-05 10:30:24
25	235	request	t	2025-06-05 10:30:24	2025-06-05 10:30:24
26	235	promotion	t	2025-06-05 10:30:24	2025-06-05 10:30:24
27	235	message	t	2025-06-05 10:30:24	2025-06-05 10:30:24
28	235	alert	t	2025-06-05 10:30:24	2025-06-05 10:30:24
29	192	all	t	2025-06-05 11:52:32	2025-06-05 11:52:32
30	192	request	t	2025-06-05 11:52:32	2025-06-05 11:52:32
31	192	promotion	t	2025-06-05 11:52:32	2025-06-05 11:52:32
32	192	message	t	2025-06-05 11:52:32	2025-06-05 11:52:32
33	192	alert	t	2025-06-05 11:52:32	2025-06-05 11:52:32
34	237	all	t	2025-06-05 12:01:21	2025-06-05 12:01:21
35	237	request	t	2025-06-05 12:01:21	2025-06-05 12:01:21
3	227	all	f	2025-06-04 17:35:13	2025-06-05 06:36:12
4	227	request	f	2025-06-05 06:27:01	2025-06-05 06:36:12
5	227	promotion	t	2025-06-05 06:27:01	2025-06-05 06:36:12
6	227	message	t	2025-06-05 06:27:01	2025-06-05 06:36:12
7	227	alert	t	2025-06-05 06:27:01	2025-06-05 06:36:12
36	237	promotion	t	2025-06-05 12:01:21	2025-06-05 12:01:21
37	237	message	t	2025-06-05 12:01:21	2025-06-05 12:01:21
38	237	alert	t	2025-06-05 12:01:21	2025-06-05 12:01:21
39	238	all	t	2025-06-05 12:56:26	2025-06-05 12:56:26
40	238	request	t	2025-06-05 12:56:26	2025-06-05 12:56:26
41	238	promotion	t	2025-06-05 12:56:26	2025-06-05 12:56:26
42	238	message	t	2025-06-05 12:56:26	2025-06-05 12:56:26
43	238	alert	t	2025-06-05 12:56:26	2025-06-05 12:56:26
55	240	request	t	2025-06-06 11:35:23	2025-06-06 11:35:23
44	239	all	t	2025-06-06 03:32:30	2025-06-06 12:56:57
45	239	request	t	2025-06-06 03:32:30	2025-06-06 12:56:57
46	239	promotion	t	2025-06-06 03:32:30	2025-06-06 12:56:57
47	239	message	t	2025-06-06 03:32:30	2025-06-06 12:56:57
56	240	promotion	t	2025-06-06 11:35:23	2025-06-06 11:35:23
50	211	request	t	2025-06-06 06:11:29	2025-06-29 09:13:25
51	211	promotion	t	2025-06-06 06:11:29	2025-06-29 09:13:25
52	211	message	t	2025-06-06 06:11:29	2025-06-29 09:13:25
53	211	alert	t	2025-06-06 06:11:29	2025-06-29 09:13:25
109	250	all	t	2025-07-09 07:16:57	2025-07-09 07:16:57
57	240	message	t	2025-06-06 11:35:23	2025-06-06 11:35:23
58	240	alert	t	2025-06-06 11:35:23	2025-06-06 11:35:23
48	239	alert	f	2025-06-06 03:32:30	2025-06-06 12:56:57
59	241	all	t	2025-06-06 13:57:11	2025-06-06 13:57:11
60	241	request	t	2025-06-06 13:57:11	2025-06-06 13:57:11
61	241	promotion	t	2025-06-06 13:57:11	2025-06-06 13:57:11
62	241	message	t	2025-06-06 13:57:11	2025-06-06 13:57:11
63	241	alert	t	2025-06-06 13:57:11	2025-06-06 13:57:11
64	242	all	t	2025-06-07 12:04:36	2025-06-07 12:04:36
65	242	request	t	2025-06-07 12:04:36	2025-06-07 12:04:36
66	242	promotion	t	2025-06-07 12:04:36	2025-06-07 12:04:36
84	246	all	t	2025-06-11 09:55:34	2025-06-11 09:55:34
85	246	request	t	2025-06-11 09:55:34	2025-06-11 09:55:34
86	246	promotion	t	2025-06-11 09:55:34	2025-06-11 09:55:34
87	246	message	t	2025-06-11 09:55:34	2025-06-11 09:55:34
88	246	alert	t	2025-06-11 09:55:34	2025-06-11 09:55:34
67	242	message	t	2025-06-07 12:04:36	2025-06-07 12:04:36
68	242	alert	t	2025-06-07 12:04:36	2025-06-07 12:04:36
69	243	all	t	2025-06-09 09:13:24	2025-06-09 09:13:24
70	243	request	t	2025-06-09 09:13:24	2025-06-09 09:13:24
71	243	promotion	t	2025-06-09 09:13:24	2025-06-09 09:13:24
72	243	message	t	2025-06-09 09:13:24	2025-06-09 09:13:24
73	243	alert	t	2025-06-09 09:13:24	2025-06-09 09:13:24
101	195	promotion	t	2025-06-28 08:10:29	2025-06-28 08:10:29
102	195	message	t	2025-06-28 08:10:29	2025-06-28 08:10:29
89	247	all	t	2025-06-23 21:05:53	2025-06-27 14:23:40
98	248	alert	t	2025-06-27 14:51:05	2025-06-27 14:51:05
103	195	alert	t	2025-06-28 08:10:29	2025-06-28 08:10:29
104	249	all	t	2025-06-28 13:01:59	2025-06-28 13:01:59
105	249	request	t	2025-06-28 13:01:59	2025-06-28 13:01:59
106	249	promotion	t	2025-06-28 13:01:59	2025-06-28 13:01:59
107	249	message	t	2025-06-28 13:01:59	2025-06-28 13:01:59
108	249	alert	t	2025-06-28 13:01:59	2025-06-28 13:01:59
49	211	all	t	2025-06-06 06:11:29	2025-06-29 09:13:25
110	250	request	t	2025-07-09 07:16:57	2025-07-09 07:16:57
111	250	promotion	t	2025-07-09 07:16:57	2025-07-09 07:16:57
81	245	promotion	t	2025-06-11 09:55:14	2025-07-13 02:16:55
82	245	message	t	2025-06-11 09:55:14	2025-07-13 02:16:55
83	245	alert	t	2025-06-11 09:55:14	2025-07-13 02:16:55
80	245	request	t	2025-06-11 09:55:14	2025-07-13 02:16:55
112	250	message	t	2025-07-09 07:16:57	2025-07-09 07:16:57
113	250	alert	t	2025-07-09 07:16:57	2025-07-09 07:16:57
114	251	all	t	2025-07-09 10:44:36	2025-07-09 10:44:36
115	251	request	t	2025-07-09 10:44:36	2025-07-09 10:44:36
116	251	promotion	t	2025-07-09 10:44:36	2025-07-09 10:44:36
117	251	message	t	2025-07-09 10:44:36	2025-07-09 10:44:36
118	251	alert	t	2025-07-09 10:44:36	2025-07-09 10:44:36
119	252	all	t	2025-07-10 06:19:03	2025-07-10 06:19:03
120	252	request	t	2025-07-10 06:19:03	2025-07-10 06:19:03
121	252	promotion	t	2025-07-10 06:19:03	2025-07-10 06:19:03
122	252	message	t	2025-07-10 06:19:03	2025-07-10 06:19:03
123	252	alert	t	2025-07-10 06:19:03	2025-07-10 06:19:03
124	224	all	t	2025-07-10 12:09:08	2025-07-10 12:09:08
125	224	request	t	2025-07-10 12:09:08	2025-07-10 12:09:08
126	224	promotion	t	2025-07-10 12:09:08	2025-07-10 12:09:08
127	224	message	t	2025-07-10 12:09:08	2025-07-10 12:09:08
128	224	alert	t	2025-07-10 12:09:08	2025-07-10 12:09:08
184	216	all	t	2025-07-12 06:43:16	2025-07-12 06:43:16
185	216	request	t	2025-07-12 06:43:16	2025-07-12 06:43:16
186	216	promotion	t	2025-07-12 06:43:16	2025-07-12 06:43:16
187	216	message	t	2025-07-12 06:43:16	2025-07-12 06:43:16
188	216	alert	t	2025-07-12 06:43:16	2025-07-12 06:43:16
129	253	all	t	2025-07-10 14:34:32	2025-07-10 16:37:17
130	253	request	t	2025-07-10 14:34:32	2025-07-10 16:37:17
131	253	promotion	t	2025-07-10 14:34:32	2025-07-10 16:37:17
132	253	message	t	2025-07-10 14:34:32	2025-07-10 16:37:17
133	253	alert	t	2025-07-10 14:34:32	2025-07-10 16:37:17
134	254	all	t	2025-07-11 11:23:07	2025-07-11 11:23:07
135	254	request	t	2025-07-11 11:23:07	2025-07-11 11:23:07
136	254	promotion	t	2025-07-11 11:23:07	2025-07-11 11:23:07
137	254	message	t	2025-07-11 11:23:07	2025-07-11 11:23:07
138	254	alert	t	2025-07-11 11:23:07	2025-07-11 11:23:07
144	256	all	t	2025-07-11 12:03:07	2025-07-11 12:03:07
145	256	request	t	2025-07-11 12:03:07	2025-07-11 12:03:07
146	256	promotion	t	2025-07-11 12:03:07	2025-07-11 12:03:07
147	256	message	t	2025-07-11 12:03:07	2025-07-11 12:03:07
148	256	alert	t	2025-07-11 12:03:07	2025-07-11 12:03:07
149	257	all	t	2025-07-11 13:37:02	2025-07-11 13:37:02
150	257	request	t	2025-07-11 13:37:02	2025-07-11 13:37:02
151	257	promotion	t	2025-07-11 13:37:02	2025-07-11 13:37:02
152	257	message	t	2025-07-11 13:37:02	2025-07-11 13:37:02
153	257	alert	t	2025-07-11 13:37:02	2025-07-11 13:37:02
79	245	all	t	2025-06-11 09:55:14	2025-07-13 02:16:55
204	266	all	t	2025-07-13 07:26:29	2025-07-13 07:26:29
205	266	request	t	2025-07-13 07:26:29	2025-07-13 07:26:29
206	266	promotion	t	2025-07-13 07:26:29	2025-07-13 07:26:29
154	258	all	t	2025-07-11 14:43:04	2025-07-12 07:30:00
155	258	request	t	2025-07-11 14:43:04	2025-07-12 07:30:00
156	258	promotion	t	2025-07-11 14:43:04	2025-07-12 07:30:00
157	258	message	t	2025-07-11 14:43:04	2025-07-12 07:30:00
158	258	alert	t	2025-07-11 14:43:04	2025-07-12 07:30:00
189	263	all	t	2025-07-12 08:26:56	2025-07-12 08:26:56
190	263	request	t	2025-07-12 08:26:56	2025-07-12 08:26:56
191	263	promotion	t	2025-07-12 08:26:56	2025-07-12 08:26:56
192	263	message	t	2025-07-12 08:26:57	2025-07-12 08:26:57
193	263	alert	t	2025-07-12 08:26:57	2025-07-12 08:26:57
139	255	all	t	2025-07-11 11:44:15	2025-07-11 14:36:22
140	255	request	t	2025-07-11 11:44:15	2025-07-11 14:36:22
141	255	promotion	t	2025-07-11 11:44:15	2025-07-11 14:36:22
142	255	message	t	2025-07-11 11:44:15	2025-07-11 14:36:22
143	255	alert	t	2025-07-11 11:44:15	2025-07-11 14:36:22
159	259	all	t	2025-07-11 15:06:09	2025-07-11 15:06:09
160	259	request	t	2025-07-11 15:06:09	2025-07-11 15:06:09
161	259	promotion	t	2025-07-11 15:06:09	2025-07-11 15:06:09
162	259	message	t	2025-07-11 15:06:09	2025-07-11 15:06:09
163	259	alert	t	2025-07-11 15:06:09	2025-07-11 15:06:09
164	260	all	t	2025-07-11 15:09:28	2025-07-11 15:09:28
165	260	request	t	2025-07-11 15:09:28	2025-07-11 15:09:28
166	260	promotion	t	2025-07-11 15:09:28	2025-07-11 15:09:28
167	260	message	t	2025-07-11 15:09:28	2025-07-11 15:09:28
168	260	alert	t	2025-07-11 15:09:28	2025-07-11 15:09:28
169	260	all	t	2025-07-11 15:09:28	2025-07-11 15:09:28
170	260	request	t	2025-07-11 15:09:28	2025-07-11 15:09:28
171	260	promotion	t	2025-07-11 15:09:28	2025-07-11 15:09:28
172	260	message	t	2025-07-11 15:09:28	2025-07-11 15:09:28
173	260	alert	t	2025-07-11 15:09:28	2025-07-11 15:09:28
174	261	all	t	2025-07-11 15:11:30	2025-07-11 15:11:30
175	261	request	t	2025-07-11 15:11:30	2025-07-11 15:11:30
176	261	promotion	t	2025-07-11 15:11:30	2025-07-11 15:11:30
177	261	message	t	2025-07-11 15:11:30	2025-07-11 15:11:30
178	261	alert	t	2025-07-11 15:11:30	2025-07-11 15:11:30
179	262	all	t	2025-07-12 05:30:57	2025-07-12 05:30:57
180	262	request	t	2025-07-12 05:30:57	2025-07-12 05:30:57
181	262	promotion	t	2025-07-12 05:30:57	2025-07-12 05:30:57
182	262	message	t	2025-07-12 05:30:57	2025-07-12 05:30:57
183	262	alert	t	2025-07-12 05:30:57	2025-07-12 05:30:57
194	264	all	t	2025-07-12 08:54:57	2025-07-12 08:54:57
195	264	request	t	2025-07-12 08:54:57	2025-07-12 08:54:57
196	264	promotion	t	2025-07-12 08:54:57	2025-07-12 08:54:57
197	264	message	t	2025-07-12 08:54:57	2025-07-12 08:54:57
198	264	alert	t	2025-07-12 08:54:57	2025-07-12 08:54:57
199	265	all	t	2025-07-12 08:55:36	2025-07-12 08:55:36
200	265	request	t	2025-07-12 08:55:36	2025-07-12 08:55:36
201	265	promotion	t	2025-07-12 08:55:36	2025-07-12 08:55:36
202	265	message	t	2025-07-12 08:55:36	2025-07-12 08:55:36
203	265	alert	t	2025-07-12 08:55:36	2025-07-12 08:55:36
207	266	message	t	2025-07-13 07:26:29	2025-07-13 07:26:29
208	266	alert	t	2025-07-13 07:26:29	2025-07-13 07:26:29
209	267	all	t	2025-07-13 07:55:42	2025-07-13 07:55:42
210	267	request	t	2025-07-13 07:55:42	2025-07-13 07:55:42
211	267	promotion	t	2025-07-13 07:55:42	2025-07-13 07:55:42
212	267	message	t	2025-07-13 07:55:42	2025-07-13 07:55:42
213	267	alert	t	2025-07-13 07:55:42	2025-07-13 07:55:42
214	268	all	t	2025-07-13 11:10:11	2025-07-13 11:10:11
215	268	request	t	2025-07-13 11:10:11	2025-07-13 11:10:11
216	268	promotion	t	2025-07-13 11:10:11	2025-07-13 11:10:11
217	268	message	t	2025-07-13 11:10:11	2025-07-13 11:10:11
218	268	alert	t	2025-07-13 11:10:11	2025-07-13 11:10:11
219	269	all	t	2025-07-13 13:59:36	2025-07-13 13:59:36
220	269	request	t	2025-07-13 13:59:36	2025-07-13 13:59:36
221	269	promotion	t	2025-07-13 13:59:36	2025-07-13 13:59:36
222	269	message	t	2025-07-13 13:59:36	2025-07-13 13:59:36
223	269	alert	t	2025-07-13 13:59:37	2025-07-13 13:59:37
224	270	all	t	2025-07-13 15:22:32	2025-07-13 15:22:32
225	270	request	t	2025-07-13 15:22:32	2025-07-13 15:22:32
226	270	promotion	t	2025-07-13 15:22:32	2025-07-13 15:22:32
227	270	message	t	2025-07-13 15:22:32	2025-07-13 15:22:32
228	270	alert	t	2025-07-13 15:22:32	2025-07-13 15:22:32
229	271	all	t	2025-07-13 20:16:01	2025-07-13 20:16:01
230	271	request	t	2025-07-13 20:16:01	2025-07-13 20:16:01
231	271	promotion	t	2025-07-13 20:16:01	2025-07-13 20:16:01
232	271	message	t	2025-07-13 20:16:01	2025-07-13 20:16:01
233	271	alert	t	2025-07-13 20:16:01	2025-07-13 20:16:01
234	272	all	t	2025-07-13 21:01:37	2025-07-13 21:01:37
235	272	request	t	2025-07-13 21:01:37	2025-07-13 21:01:37
236	272	promotion	t	2025-07-13 21:01:37	2025-07-13 21:01:37
237	272	message	t	2025-07-13 21:01:37	2025-07-13 21:01:37
238	272	alert	t	2025-07-13 21:01:37	2025-07-13 21:01:37
239	273	all	t	2025-07-16 07:15:59	2025-07-16 07:15:59
240	273	request	t	2025-07-16 07:15:59	2025-07-16 07:15:59
241	273	promotion	t	2025-07-16 07:15:59	2025-07-16 07:15:59
242	273	message	t	2025-07-16 07:15:59	2025-07-16 07:15:59
243	273	alert	t	2025-07-16 07:15:59	2025-07-16 07:15:59
244	274	all	t	2025-07-16 07:33:30	2025-07-16 07:33:30
245	274	request	t	2025-07-16 07:33:30	2025-07-16 07:33:30
246	274	promotion	t	2025-07-16 07:33:30	2025-07-16 07:33:30
247	274	message	t	2025-07-16 07:33:30	2025-07-16 07:33:30
248	274	alert	t	2025-07-16 07:33:30	2025-07-16 07:33:30
249	275	all	t	2025-07-16 09:02:22	2025-07-16 09:02:22
250	275	request	t	2025-07-16 09:02:22	2025-07-16 09:02:22
251	275	promotion	t	2025-07-16 09:02:22	2025-07-16 09:02:22
252	275	message	t	2025-07-16 09:02:22	2025-07-16 09:02:22
253	275	alert	t	2025-07-16 09:02:22	2025-07-16 09:02:22
254	276	all	t	2025-07-16 15:07:13	2025-07-16 15:07:13
255	276	request	t	2025-07-16 15:07:13	2025-07-16 15:07:13
256	276	promotion	t	2025-07-16 15:07:13	2025-07-16 15:07:13
257	276	message	t	2025-07-16 15:07:13	2025-07-16 15:07:13
258	276	alert	t	2025-07-16 15:07:13	2025-07-16 15:07:13
259	277	all	t	2025-07-17 07:57:53	2025-07-17 07:57:53
260	277	request	t	2025-07-17 07:57:53	2025-07-17 07:57:53
261	277	promotion	t	2025-07-17 07:57:53	2025-07-17 07:57:53
262	277	message	t	2025-07-17 07:57:53	2025-07-17 07:57:53
263	277	alert	t	2025-07-17 07:57:53	2025-07-17 07:57:53
264	278	all	t	2025-07-19 08:27:48	2025-07-19 08:27:48
265	278	request	t	2025-07-19 08:27:48	2025-07-19 08:27:48
266	278	promotion	t	2025-07-19 08:27:48	2025-07-19 08:27:48
267	278	message	t	2025-07-19 08:27:48	2025-07-19 08:27:48
268	278	alert	t	2025-07-19 08:27:48	2025-07-19 08:27:48
269	279	all	t	2025-07-21 07:03:39	2025-07-21 07:03:39
270	279	request	t	2025-07-21 07:03:39	2025-07-21 07:03:39
271	279	promotion	t	2025-07-21 07:03:39	2025-07-21 07:03:39
272	279	message	t	2025-07-21 07:03:39	2025-07-21 07:03:39
273	279	alert	t	2025-07-21 07:03:39	2025-07-21 07:03:39
274	280	all	t	2025-08-13 13:55:14	2025-08-13 13:55:14
275	280	request	t	2025-08-13 13:55:14	2025-08-13 13:55:14
276	280	promotion	t	2025-08-13 13:55:14	2025-08-13 13:55:14
277	280	message	t	2025-08-13 13:55:14	2025-08-13 13:55:14
278	280	alert	t	2025-08-13 13:55:14	2025-08-13 13:55:14
279	281	all	t	2025-08-14 10:41:14	2025-08-14 10:41:14
280	281	request	t	2025-08-14 10:41:14	2025-08-14 10:41:14
281	281	promotion	t	2025-08-14 10:41:14	2025-08-14 10:41:14
282	281	message	t	2025-08-14 10:41:14	2025-08-14 10:41:14
283	281	alert	t	2025-08-14 10:41:14	2025-08-14 10:41:14
284	282	all	t	2025-08-14 12:36:49	2025-08-14 12:36:49
285	282	request	t	2025-08-14 12:36:49	2025-08-14 12:36:49
286	282	promotion	t	2025-08-14 12:36:49	2025-08-14 12:36:49
287	282	message	t	2025-08-14 12:36:49	2025-08-14 12:36:49
288	282	alert	t	2025-08-14 12:36:49	2025-08-14 12:36:49
289	283	all	t	2025-08-14 13:09:59	2025-08-14 13:09:59
290	283	request	t	2025-08-14 13:09:59	2025-08-14 13:09:59
291	283	promotion	t	2025-08-14 13:09:59	2025-08-14 13:09:59
292	283	message	t	2025-08-14 13:09:59	2025-08-14 13:09:59
293	283	alert	t	2025-08-14 13:09:59	2025-08-14 13:09:59
294	284	all	t	2025-08-17 13:15:49	2025-08-17 13:15:49
295	284	request	t	2025-08-17 13:15:49	2025-08-17 13:15:49
296	284	promotion	t	2025-08-17 13:15:49	2025-08-17 13:15:49
297	284	message	t	2025-08-17 13:15:49	2025-08-17 13:15:49
298	284	alert	t	2025-08-17 13:15:49	2025-08-17 13:15:49
299	285	all	t	2025-08-18 07:59:43	2025-08-18 07:59:43
300	285	request	t	2025-08-18 07:59:43	2025-08-18 07:59:43
301	285	promotion	t	2025-08-18 07:59:43	2025-08-18 07:59:43
302	285	message	t	2025-08-18 07:59:43	2025-08-18 07:59:43
303	285	alert	t	2025-08-18 07:59:43	2025-08-18 07:59:43
304	286	all	t	2025-08-18 11:29:00	2025-08-18 11:29:00
305	286	request	t	2025-08-18 11:29:00	2025-08-18 11:29:00
306	286	promotion	t	2025-08-18 11:29:00	2025-08-18 11:29:00
307	286	message	t	2025-08-18 11:29:00	2025-08-18 11:29:00
308	286	alert	t	2025-08-18 11:29:00	2025-08-18 11:29:00
309	287	all	t	2025-08-18 13:07:46	2025-08-18 13:07:46
310	287	request	t	2025-08-18 13:07:46	2025-08-18 13:07:46
311	287	promotion	t	2025-08-18 13:07:46	2025-08-18 13:07:46
312	287	message	t	2025-08-18 13:07:46	2025-08-18 13:07:46
313	287	alert	t	2025-08-18 13:07:46	2025-08-18 13:07:46
314	288	all	t	2025-08-19 07:24:53	2025-08-19 07:24:53
315	288	request	t	2025-08-19 07:24:53	2025-08-19 07:24:53
316	288	promotion	t	2025-08-19 07:24:53	2025-08-19 07:24:53
317	288	message	t	2025-08-19 07:24:53	2025-08-19 07:24:53
318	288	alert	t	2025-08-19 07:24:53	2025-08-19 07:24:53
319	289	all	t	2025-08-19 07:54:28	2025-08-19 07:54:28
320	289	request	t	2025-08-19 07:54:28	2025-08-19 07:54:28
321	289	promotion	t	2025-08-19 07:54:28	2025-08-19 07:54:28
322	289	message	t	2025-08-19 07:54:28	2025-08-19 07:54:28
323	289	alert	t	2025-08-19 07:54:28	2025-08-19 07:54:28
324	290	all	t	2025-08-25 17:06:59	2025-08-25 17:06:59
325	290	request	t	2025-08-25 17:06:59	2025-08-25 17:06:59
326	290	promotion	t	2025-08-25 17:06:59	2025-08-25 17:06:59
327	290	message	t	2025-08-25 17:06:59	2025-08-25 17:06:59
328	290	alert	t	2025-08-25 17:06:59	2025-08-25 17:06:59
329	291	all	t	2025-09-04 18:26:46	2025-09-04 18:26:46
330	291	request	t	2025-09-04 18:26:46	2025-09-04 18:26:46
331	291	promotion	t	2025-09-04 18:26:46	2025-09-04 18:26:46
332	291	message	t	2025-09-04 18:26:46	2025-09-04 18:26:46
333	291	alert	t	2025-09-04 18:26:46	2025-09-04 18:26:46
334	292	all	t	2025-09-23 12:56:47	2025-09-23 12:56:47
335	292	request	t	2025-09-23 12:56:47	2025-09-23 12:56:47
336	292	promotion	t	2025-09-23 12:56:47	2025-09-23 12:56:47
337	292	message	t	2025-09-23 12:56:47	2025-09-23 12:56:47
338	292	alert	t	2025-09-23 12:56:47	2025-09-23 12:56:47
339	293	all	t	2025-09-23 18:17:12	2025-09-23 18:17:12
340	293	request	t	2025-09-23 18:17:12	2025-09-23 18:17:12
341	293	promotion	t	2025-09-23 18:17:12	2025-09-23 18:17:12
342	293	message	t	2025-09-23 18:17:12	2025-09-23 18:17:12
343	293	alert	t	2025-09-23 18:17:12	2025-09-23 18:17:12
344	294	all	t	2025-09-24 07:47:54	2025-09-24 07:47:54
345	294	request	t	2025-09-24 07:47:54	2025-09-24 07:47:54
346	294	promotion	t	2025-09-24 07:47:54	2025-09-24 07:47:54
347	294	message	t	2025-09-24 07:47:54	2025-09-24 07:47:54
348	294	alert	t	2025-09-24 07:47:54	2025-09-24 07:47:54
349	295	all	t	2025-09-24 11:14:17	2025-09-24 11:14:17
350	295	request	t	2025-09-24 11:14:17	2025-09-24 11:14:17
351	295	promotion	t	2025-09-24 11:14:17	2025-09-24 11:14:17
352	295	message	t	2025-09-24 11:14:17	2025-09-24 11:14:17
353	295	alert	t	2025-09-24 11:14:17	2025-09-24 11:14:17
354	296	all	t	2025-09-24 14:24:01	2025-09-24 14:24:01
355	296	request	t	2025-09-24 14:24:01	2025-09-24 14:24:01
356	296	promotion	t	2025-09-24 14:24:01	2025-09-24 14:24:01
357	296	message	t	2025-09-24 14:24:01	2025-09-24 14:24:01
358	296	alert	t	2025-09-24 14:24:01	2025-09-24 14:24:01
359	297	all	t	2025-09-24 17:38:12	2025-09-24 17:38:12
360	297	request	t	2025-09-24 17:38:12	2025-09-24 17:38:12
361	297	promotion	t	2025-09-24 17:38:12	2025-09-24 17:38:12
362	297	message	t	2025-09-24 17:38:12	2025-09-24 17:38:12
363	297	alert	t	2025-09-24 17:38:12	2025-09-24 17:38:12
364	298	all	t	2025-09-25 05:57:17	2025-09-25 05:57:17
365	298	request	t	2025-09-25 05:57:17	2025-09-25 05:57:17
366	298	promotion	t	2025-09-25 05:57:17	2025-09-25 05:57:17
367	298	message	t	2025-09-25 05:57:17	2025-09-25 05:57:17
368	298	alert	t	2025-09-25 05:57:17	2025-09-25 05:57:17
369	299	all	t	2025-11-10 12:39:42	2025-11-10 12:39:42
370	299	request	t	2025-11-10 12:39:42	2025-11-10 12:39:42
371	299	promotion	t	2025-11-10 12:39:42	2025-11-10 12:39:42
372	299	message	t	2025-11-10 12:39:42	2025-11-10 12:39:42
373	299	alert	t	2025-11-10 12:39:42	2025-11-10 12:39:42
374	300	all	t	2025-11-11 05:48:30	2025-11-11 05:48:30
375	300	request	t	2025-11-11 05:48:30	2025-11-11 05:48:30
376	300	promotion	t	2025-11-11 05:48:30	2025-11-11 05:48:30
377	300	message	t	2025-11-11 05:48:30	2025-11-11 05:48:30
378	300	alert	t	2025-11-11 05:48:30	2025-11-11 05:48:30
379	301	all	t	2025-11-14 06:25:36	2025-11-14 06:25:36
380	301	request	t	2025-11-14 06:25:36	2025-11-14 06:25:36
381	301	promotion	t	2025-11-14 06:25:36	2025-11-14 06:25:36
382	301	message	t	2025-11-14 06:25:36	2025-11-14 06:25:36
383	301	alert	t	2025-11-14 06:25:36	2025-11-14 06:25:36
384	302	all	t	2025-11-14 07:46:19	2025-11-14 07:46:19
385	302	request	t	2025-11-14 07:46:19	2025-11-14 07:46:19
386	302	promotion	t	2025-11-14 07:46:19	2025-11-14 07:46:19
387	302	message	t	2025-11-14 07:46:19	2025-11-14 07:46:19
388	302	alert	t	2025-11-14 07:46:19	2025-11-14 07:46:19
389	303	all	t	2025-11-15 08:43:09	2025-11-15 08:43:09
390	303	request	t	2025-11-15 08:43:09	2025-11-15 08:43:09
391	303	promotion	t	2025-11-15 08:43:09	2025-11-15 08:43:09
392	303	message	t	2025-11-15 08:43:09	2025-11-15 08:43:09
393	303	alert	t	2025-11-15 08:43:09	2025-11-15 08:43:09
394	304	all	t	2025-11-15 11:51:06	2025-11-15 11:51:06
395	304	request	t	2025-11-15 11:51:06	2025-11-15 11:51:06
396	304	promotion	t	2025-11-15 11:51:06	2025-11-15 11:51:06
397	304	message	t	2025-11-15 11:51:06	2025-11-15 11:51:06
398	304	alert	t	2025-11-15 11:51:06	2025-11-15 11:51:06
399	210	all	t	2025-11-17 10:26:21	2025-11-17 10:26:21
400	210	request	t	2025-11-17 10:26:21	2025-11-17 10:26:21
401	210	promotion	t	2025-11-17 10:26:21	2025-11-17 10:26:21
402	210	message	t	2025-11-17 10:26:21	2025-11-17 10:26:21
403	210	alert	t	2025-11-17 10:26:21	2025-11-17 10:26:21
404	305	all	t	2025-11-17 14:06:23	2025-11-17 14:06:23
405	305	request	t	2025-11-17 14:06:24	2025-11-17 14:06:24
406	305	promotion	t	2025-11-17 14:06:24	2025-11-17 14:06:24
407	305	message	t	2025-11-17 14:06:24	2025-11-17 14:06:24
408	305	alert	t	2025-11-17 14:06:24	2025-11-17 14:06:24
409	306	all	t	2025-11-17 14:24:00	2025-11-17 14:24:00
410	306	request	t	2025-11-17 14:24:00	2025-11-17 14:24:00
411	306	promotion	t	2025-11-17 14:24:00	2025-11-17 14:24:00
412	306	message	t	2025-11-17 14:24:00	2025-11-17 14:24:00
413	306	alert	t	2025-11-17 14:24:00	2025-11-17 14:24:00
414	307	all	t	2025-11-18 06:06:58	2025-11-18 06:06:58
415	307	request	t	2025-11-18 06:06:58	2025-11-18 06:06:58
416	307	promotion	t	2025-11-18 06:06:58	2025-11-18 06:06:58
417	307	message	t	2025-11-18 06:06:58	2025-11-18 06:06:58
418	307	alert	t	2025-11-18 06:06:58	2025-11-18 06:06:58
419	308	all	t	2025-11-18 06:19:43	2025-11-18 06:19:43
420	308	request	t	2025-11-18 06:19:43	2025-11-18 06:19:43
421	308	promotion	t	2025-11-18 06:19:43	2025-11-18 06:19:43
422	308	message	t	2025-11-18 06:19:43	2025-11-18 06:19:43
423	308	alert	t	2025-11-18 06:19:43	2025-11-18 06:19:43
424	309	all	t	2025-11-18 06:22:51	2025-11-18 06:22:51
425	309	request	t	2025-11-18 06:22:51	2025-11-18 06:22:51
426	309	promotion	t	2025-11-18 06:22:51	2025-11-18 06:22:51
427	309	message	t	2025-11-18 06:22:51	2025-11-18 06:22:51
428	309	alert	t	2025-11-18 06:22:51	2025-11-18 06:22:51
429	310	all	t	2025-11-18 09:18:56	2025-11-18 09:18:56
430	310	request	t	2025-11-18 09:18:56	2025-11-18 09:18:56
431	310	promotion	t	2025-11-18 09:18:56	2025-11-18 09:18:56
432	310	message	t	2025-11-18 09:18:56	2025-11-18 09:18:56
433	310	alert	t	2025-11-18 09:18:56	2025-11-18 09:18:56
434	311	all	t	2025-11-18 09:32:24	2025-11-18 09:32:24
435	311	request	t	2025-11-18 09:32:24	2025-11-18 09:32:24
436	311	promotion	t	2025-11-18 09:32:24	2025-11-18 09:32:24
437	311	message	t	2025-11-18 09:32:24	2025-11-18 09:32:24
438	311	alert	t	2025-11-18 09:32:24	2025-11-18 09:32:24
439	312	all	t	2025-11-19 06:30:29	2025-11-19 06:30:29
440	312	request	t	2025-11-19 06:30:29	2025-11-19 06:30:29
441	312	promotion	t	2025-11-19 06:30:29	2025-11-19 06:30:29
442	312	message	t	2025-11-19 06:30:29	2025-11-19 06:30:29
443	312	alert	t	2025-11-19 06:30:29	2025-11-19 06:30:29
444	313	all	t	2025-11-24 11:11:41	2025-11-24 11:11:41
445	313	request	t	2025-11-24 11:11:41	2025-11-24 11:11:41
446	313	promotion	t	2025-11-24 11:11:41	2025-11-24 11:11:41
447	313	message	t	2025-11-24 11:11:41	2025-11-24 11:11:41
448	313	alert	t	2025-11-24 11:11:41	2025-11-24 11:11:41
449	314	all	t	2025-11-27 18:18:36	2025-11-27 18:18:36
450	314	request	t	2025-11-27 18:18:36	2025-11-27 18:18:36
451	314	promotion	t	2025-11-27 18:18:36	2025-11-27 18:18:36
452	314	message	t	2025-11-27 18:18:36	2025-11-27 18:18:36
453	314	alert	t	2025-11-27 18:18:36	2025-11-27 18:18:36
454	315	all	t	2025-11-27 18:24:24	2025-11-27 18:24:24
455	315	request	t	2025-11-27 18:24:24	2025-11-27 18:24:24
456	315	promotion	t	2025-11-27 18:24:24	2025-11-27 18:24:24
457	315	message	t	2025-11-27 18:24:24	2025-11-27 18:24:24
458	315	alert	t	2025-11-27 18:24:24	2025-11-27 18:24:24
459	316	all	t	2025-12-11 15:46:57	2025-12-11 15:46:57
460	316	request	t	2025-12-11 15:46:57	2025-12-11 15:46:57
461	316	promotion	t	2025-12-11 15:46:57	2025-12-11 15:46:57
462	316	message	t	2025-12-11 15:46:57	2025-12-11 15:46:57
463	316	alert	t	2025-12-11 15:46:57	2025-12-11 15:46:57
464	317	all	t	2025-12-11 15:56:21	2025-12-11 15:56:21
465	317	request	t	2025-12-11 15:56:21	2025-12-11 15:56:21
466	317	promotion	t	2025-12-11 15:56:21	2025-12-11 15:56:21
467	317	message	t	2025-12-11 15:56:21	2025-12-11 15:56:21
468	317	alert	t	2025-12-11 15:56:21	2025-12-11 15:56:21
469	318	all	t	2025-12-15 16:41:08	2025-12-15 16:41:08
470	318	request	t	2025-12-15 16:41:08	2025-12-15 16:41:08
471	318	promotion	t	2025-12-15 16:41:08	2025-12-15 16:41:08
472	318	message	t	2025-12-15 16:41:08	2025-12-15 16:41:08
473	318	alert	t	2025-12-15 16:41:08	2025-12-15 16:41:08
474	319	all	t	2025-12-15 17:11:03	2025-12-15 17:11:03
475	319	request	t	2025-12-15 17:11:03	2025-12-15 17:11:03
476	319	promotion	t	2025-12-15 17:11:03	2025-12-15 17:11:03
477	319	message	t	2025-12-15 17:11:03	2025-12-15 17:11:03
478	319	alert	t	2025-12-15 17:11:03	2025-12-15 17:11:03
479	320	all	t	2025-12-15 17:18:52	2025-12-15 17:18:52
480	320	request	t	2025-12-15 17:18:52	2025-12-15 17:18:52
481	320	promotion	t	2025-12-15 17:18:52	2025-12-15 17:18:52
482	320	message	t	2025-12-15 17:18:52	2025-12-15 17:18:52
483	320	alert	t	2025-12-15 17:18:52	2025-12-15 17:18:52
484	321	all	t	2025-12-15 17:51:21	2025-12-15 17:51:21
485	321	request	t	2025-12-15 17:51:21	2025-12-15 17:51:21
486	321	promotion	t	2025-12-15 17:51:21	2025-12-15 17:51:21
487	321	message	t	2025-12-15 17:51:21	2025-12-15 17:51:21
488	321	alert	t	2025-12-15 17:51:21	2025-12-15 17:51:21
489	322	all	t	2025-12-22 15:54:58	2025-12-22 15:54:58
490	322	request	t	2025-12-22 15:54:58	2025-12-22 15:54:58
491	322	promotion	t	2025-12-22 15:54:58	2025-12-22 15:54:58
492	322	message	t	2025-12-22 15:54:58	2025-12-22 15:54:58
493	322	alert	t	2025-12-22 15:54:58	2025-12-22 15:54:58
494	323	all	t	2025-12-22 16:04:50	2025-12-22 16:04:50
495	323	request	t	2025-12-22 16:04:50	2025-12-22 16:04:50
496	323	promotion	t	2025-12-22 16:04:50	2025-12-22 16:04:50
497	323	message	t	2025-12-22 16:04:50	2025-12-22 16:04:50
498	323	alert	t	2025-12-22 16:04:50	2025-12-22 16:04:50
499	324	all	t	2025-12-22 16:13:31	2025-12-22 16:13:31
500	324	request	t	2025-12-22 16:13:31	2025-12-22 16:13:31
501	324	promotion	t	2025-12-22 16:13:31	2025-12-22 16:13:31
502	324	message	t	2025-12-22 16:13:31	2025-12-22 16:13:31
503	324	alert	t	2025-12-22 16:13:31	2025-12-22 16:13:31
504	325	all	t	2025-12-22 17:11:20	2025-12-22 17:11:20
505	325	request	t	2025-12-22 17:11:20	2025-12-22 17:11:20
506	325	promotion	t	2025-12-22 17:11:20	2025-12-22 17:11:20
507	325	message	t	2025-12-22 17:11:20	2025-12-22 17:11:20
508	325	alert	t	2025-12-22 17:11:20	2025-12-22 17:11:20
509	326	all	t	2025-12-23 13:28:22	2025-12-23 13:28:22
510	326	request	t	2025-12-23 13:28:22	2025-12-23 13:28:22
511	326	promotion	t	2025-12-23 13:28:22	2025-12-23 13:28:22
512	326	message	t	2025-12-23 13:28:22	2025-12-23 13:28:22
513	326	alert	t	2025-12-23 13:28:22	2025-12-23 13:28:22
514	327	all	t	2025-12-26 11:46:40	2025-12-26 11:46:40
515	327	request	t	2025-12-26 11:46:40	2025-12-26 11:46:40
516	327	promotion	t	2025-12-26 11:46:40	2025-12-26 11:46:40
517	327	message	t	2025-12-26 11:46:40	2025-12-26 11:46:40
518	327	alert	t	2025-12-26 11:46:40	2025-12-26 11:46:40
519	328	all	t	2025-12-26 12:21:39	2025-12-26 12:21:39
520	328	request	t	2025-12-26 12:21:39	2025-12-26 12:21:39
521	328	promotion	t	2025-12-26 12:21:39	2025-12-26 12:21:39
522	328	message	t	2025-12-26 12:21:39	2025-12-26 12:21:39
523	328	alert	t	2025-12-26 12:21:39	2025-12-26 12:21:39
524	329	all	t	2025-12-29 10:29:40	2025-12-29 10:29:40
525	329	request	t	2025-12-29 10:29:40	2025-12-29 10:29:40
526	329	promotion	t	2025-12-29 10:29:40	2025-12-29 10:29:40
527	329	message	t	2025-12-29 10:29:40	2025-12-29 10:29:40
528	329	alert	t	2025-12-29 10:29:40	2025-12-29 10:29:40
529	330	all	t	2025-12-29 12:08:00	2025-12-29 12:08:00
530	330	request	t	2025-12-29 12:08:00	2025-12-29 12:08:00
531	330	promotion	t	2025-12-29 12:08:00	2025-12-29 12:08:00
532	330	message	t	2025-12-29 12:08:00	2025-12-29 12:08:00
533	330	alert	t	2025-12-29 12:08:00	2025-12-29 12:08:00
534	331	all	t	2025-12-29 12:16:45	2025-12-29 12:16:45
535	331	request	t	2025-12-29 12:16:45	2025-12-29 12:16:45
536	331	promotion	t	2025-12-29 12:16:45	2025-12-29 12:16:45
537	331	message	t	2025-12-29 12:16:45	2025-12-29 12:16:45
538	331	alert	t	2025-12-29 12:16:45	2025-12-29 12:16:45
539	332	all	t	2025-12-29 16:57:04	2025-12-29 16:57:04
540	332	request	t	2025-12-29 16:57:04	2025-12-29 16:57:04
541	332	promotion	t	2025-12-29 16:57:04	2025-12-29 16:57:04
542	332	message	t	2025-12-29 16:57:04	2025-12-29 16:57:04
543	332	alert	t	2025-12-29 16:57:04	2025-12-29 16:57:04
544	333	all	t	2025-12-30 07:30:25	2025-12-30 07:30:25
545	333	request	t	2025-12-30 07:30:25	2025-12-30 07:30:25
546	333	promotion	t	2025-12-30 07:30:25	2025-12-30 07:30:25
547	333	message	t	2025-12-30 07:30:25	2025-12-30 07:30:25
548	333	alert	t	2025-12-30 07:30:25	2025-12-30 07:30:25
549	334	all	t	2025-12-30 08:56:00	2025-12-30 08:56:00
550	334	request	t	2025-12-30 08:56:00	2025-12-30 08:56:00
551	334	promotion	t	2025-12-30 08:56:00	2025-12-30 08:56:00
552	334	message	t	2025-12-30 08:56:00	2025-12-30 08:56:00
553	334	alert	t	2025-12-30 08:56:00	2025-12-30 08:56:00
554	335	all	t	2025-12-30 10:14:49	2025-12-30 10:14:49
555	335	request	t	2025-12-30 10:14:49	2025-12-30 10:14:49
556	335	promotion	t	2025-12-30 10:14:49	2025-12-30 10:14:49
557	335	message	t	2025-12-30 10:14:49	2025-12-30 10:14:49
558	335	alert	t	2025-12-30 10:14:49	2025-12-30 10:14:49
559	336	all	t	2025-12-31 06:44:53	2025-12-31 06:44:53
560	336	request	t	2025-12-31 06:44:53	2025-12-31 06:44:53
561	336	promotion	t	2025-12-31 06:44:53	2025-12-31 06:44:53
562	336	message	t	2025-12-31 06:44:53	2025-12-31 06:44:53
563	336	alert	t	2025-12-31 06:44:53	2025-12-31 06:44:53
564	337	all	t	2025-12-31 07:07:11	2025-12-31 07:07:11
565	337	request	t	2025-12-31 07:07:11	2025-12-31 07:07:11
566	337	promotion	t	2025-12-31 07:07:11	2025-12-31 07:07:11
567	337	message	t	2025-12-31 07:07:11	2025-12-31 07:07:11
568	337	alert	t	2025-12-31 07:07:11	2025-12-31 07:07:11
569	338	all	t	2025-12-31 09:43:44	2025-12-31 09:43:44
570	338	request	t	2025-12-31 09:43:44	2025-12-31 09:43:44
571	338	promotion	t	2025-12-31 09:43:44	2025-12-31 09:43:44
572	338	message	t	2025-12-31 09:43:44	2025-12-31 09:43:44
573	338	alert	t	2025-12-31 09:43:44	2025-12-31 09:43:44
574	339	all	t	2026-01-01 06:26:45	2026-01-01 06:26:45
575	339	request	t	2026-01-01 06:26:45	2026-01-01 06:26:45
576	339	promotion	t	2026-01-01 06:26:45	2026-01-01 06:26:45
577	339	message	t	2026-01-01 06:26:45	2026-01-01 06:26:45
578	339	alert	t	2026-01-01 06:26:45	2026-01-01 06:26:45
579	340	all	t	2026-01-01 06:31:33	2026-01-01 06:31:33
580	340	request	t	2026-01-01 06:31:33	2026-01-01 06:31:33
581	340	promotion	t	2026-01-01 06:31:33	2026-01-01 06:31:33
582	340	message	t	2026-01-01 06:31:33	2026-01-01 06:31:33
583	340	alert	t	2026-01-01 06:31:33	2026-01-01 06:31:33
584	341	all	t	2026-01-06 15:29:18	2026-01-06 15:29:18
585	341	request	t	2026-01-06 15:29:18	2026-01-06 15:29:18
586	341	promotion	t	2026-01-06 15:29:18	2026-01-06 15:29:18
587	341	message	t	2026-01-06 15:29:18	2026-01-06 15:29:18
588	341	alert	t	2026-01-06 15:29:18	2026-01-06 15:29:18
589	342	all	t	2026-01-06 16:04:00	2026-01-06 16:04:00
590	342	request	t	2026-01-06 16:04:00	2026-01-06 16:04:00
591	342	promotion	t	2026-01-06 16:04:00	2026-01-06 16:04:00
592	342	message	t	2026-01-06 16:04:00	2026-01-06 16:04:00
593	342	alert	t	2026-01-06 16:04:00	2026-01-06 16:04:00
594	343	all	t	2026-01-06 16:15:49	2026-01-06 16:15:49
595	343	request	t	2026-01-06 16:15:49	2026-01-06 16:15:49
596	343	promotion	t	2026-01-06 16:15:49	2026-01-06 16:15:49
597	343	message	t	2026-01-06 16:15:49	2026-01-06 16:15:49
598	343	alert	t	2026-01-06 16:15:49	2026-01-06 16:15:49
599	344	all	t	2026-01-08 08:10:31	2026-01-08 08:10:31
600	344	request	t	2026-01-08 08:10:31	2026-01-08 08:10:31
601	344	promotion	t	2026-01-08 08:10:31	2026-01-08 08:10:31
602	344	message	t	2026-01-08 08:10:31	2026-01-08 08:10:31
603	344	alert	t	2026-01-08 08:10:31	2026-01-08 08:10:31
\.


--
-- Data for Name: notifications; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.notifications (id, title, content, user_id, generated_by, generated_to, is_read, image, status, created_at, updated_at, main_notification_id, title_ar, content_ar) FROM stdin;
1	hi	hkugkutkutkutkutku	233	1	\N	no	68416e05e0805_1749118469.png	1	2025-06-05 10:14:30	2025-06-05 10:14:30	\N	\N	\N
2	hello	Hi	185	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:15	2025-06-05 11:06:15	\N	\N	\N
3	hello	Hi	214	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:15	2025-06-05 11:06:15	\N	\N	\N
4	hello	Hi	224	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:16	2025-06-05 11:06:16	\N	\N	\N
5	hello	Hi	234	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:16	2025-06-05 11:06:16	\N	\N	\N
6	hello	Hi	180	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:17	2025-06-05 11:06:17	\N	\N	\N
7	hello	Hi	51	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:17	2025-06-05 11:06:17	\N	\N	\N
8	hello	Hi	197	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:17	2025-06-05 11:06:17	\N	\N	\N
9	hello	Hi	186	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:18	2025-06-05 11:06:18	\N	\N	\N
10	hello	Hi	193	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:18	2025-06-05 11:06:18	\N	\N	\N
11	hello	Hi	50	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:18	2025-06-05 11:06:18	\N	\N	\N
12	hello	Hi	174	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:18	2025-06-05 11:06:18	\N	\N	\N
13	hello	Hi	204	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:19	2025-06-05 11:06:19	\N	\N	\N
14	hello	Hi	53	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:19	2025-06-05 11:06:19	\N	\N	\N
15	hello	Hi	154	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:19	2025-06-05 11:06:19	\N	\N	\N
16	hello	Hi	52	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:19	2025-06-05 11:06:19	\N	\N	\N
17	hello	Hi	49	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:19	2025-06-05 11:06:19	\N	\N	\N
18	hello	Hi	164	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:20	2025-06-05 11:06:20	\N	\N	\N
19	hello	Hi	155	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:20	2025-06-05 11:06:20	\N	\N	\N
20	hello	Hi	198	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:20	2025-06-05 11:06:20	\N	\N	\N
21	hello	Hi	187	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:20	2025-06-05 11:06:20	\N	\N	\N
22	hello	Hi	181	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:21	2025-06-05 11:06:21	\N	\N	\N
23	hello	Hi	165	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:21	2025-06-05 11:06:21	\N	\N	\N
24	hello	Hi	194	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:21	2025-06-05 11:06:21	\N	\N	\N
25	hello	Hi	185	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:21	2025-06-05 11:06:21	\N	\N	\N
26	hello	Hi	175	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:22	2025-06-05 11:06:22	\N	\N	\N
27	hello	Hi	214	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:22	2025-06-05 11:06:22	\N	\N	\N
28	hello	Hi	215	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:22	2025-06-05 11:06:22	\N	\N	\N
29	hello	Hi	224	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:23	2025-06-05 11:06:23	\N	\N	\N
30	hello	Hi	225	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:23	2025-06-05 11:06:23	\N	\N	\N
31	hello	Hi	234	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:23	2025-06-05 11:06:23	\N	\N	\N
32	hello	Hi	205	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:23	2025-06-05 11:06:23	\N	\N	\N
33	hello	Hi	180	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:23	2025-06-05 11:06:23	\N	\N	\N
34	hello	Hi	51	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:24	2025-06-05 11:06:24	\N	\N	\N
35	hello	Hi	235	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:24	2025-06-05 11:06:24	\N	\N	\N
36	hello	Hi	197	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:24	2025-06-05 11:06:24	\N	\N	\N
37	hello	Hi	206	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:24	2025-06-05 11:06:24	\N	\N	\N
38	hello	Hi	186	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:24	2025-06-05 11:06:24	\N	\N	\N
39	hello	Hi	156	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:24	2025-06-05 11:06:24	\N	\N	\N
40	hello	Hi	193	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:24	2025-06-05 11:06:24	\N	\N	\N
41	hello	Hi	188	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:24	2025-06-05 11:06:24	\N	\N	\N
42	hello	Hi	166	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:25	2025-06-05 11:06:25	\N	\N	\N
43	hello	Hi	50	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:25	2025-06-05 11:06:25	\N	\N	\N
44	hello	Hi	174	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:25	2025-06-05 11:06:25	\N	\N	\N
45	hello	Hi	176	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:25	2025-06-05 11:06:25	\N	\N	\N
46	hello	Hi	204	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:25	2025-06-05 11:06:25	\N	\N	\N
47	hello	Hi	226	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:25	2025-06-05 11:06:25	\N	\N	\N
48	hello	Hi	53	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N	\N	\N
49	hello	Hi	154	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N	\N	\N
50	hello	Hi	52	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N	\N	\N
51	hello	Hi	195	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N	\N	\N
52	hello	Hi	49	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N	\N	\N
53	hello	Hi	164	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N	\N	\N
54	hello	Hi	155	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N	\N	\N
55	hello	Hi	199	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N	\N	\N
56	hello	Hi	198	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:26	2025-06-05 11:06:26	\N	\N	\N
57	hello	Hi	187	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:27	2025-06-05 11:06:27	\N	\N	\N
58	hello	Hi	236	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:27	2025-06-05 11:06:27	\N	\N	\N
59	hello	Hi	181	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:27	2025-06-05 11:06:27	\N	\N	\N
60	hello	Hi	216	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:27	2025-06-05 11:06:27	\N	\N	\N
61	hello	Hi	165	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:28	2025-06-05 11:06:28	\N	\N	\N
62	hello	Hi	157	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:28	2025-06-05 11:06:28	\N	\N	\N
63	hello	Hi	183	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:28	2025-06-05 11:06:28	\N	\N	\N
65	hello	Hi	177	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:28	2025-06-05 11:06:28	\N	\N	\N
68	hello	Hi	196	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:29	2025-06-05 11:06:29	\N	\N	\N
70	hello	Hi	189	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:29	2025-06-05 11:06:29	\N	\N	\N
72	hello	Hi	207	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:30	2025-06-05 11:06:30	\N	\N	\N
73	hello	Hi	217	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:30	2025-06-05 11:06:30	\N	\N	\N
75	hello	Hi	227	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:30	2025-06-05 11:06:30	\N	\N	\N
79	hello	Hi	208	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:31	2025-06-05 11:06:31	\N	\N	\N
81	hello	Hi	158	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:31	2025-06-05 11:06:31	\N	\N	\N
83	hello	Hi	190	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:32	2025-06-05 11:06:32	\N	\N	\N
85	hello	Hi	168	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:32	2025-06-05 11:06:32	\N	\N	\N
87	hello	Hi	184	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:33	2025-06-05 11:06:33	\N	\N	\N
88	hello	Hi	178	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:33	2025-06-05 11:06:33	\N	\N	\N
90	hello	Hi	228	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:33	2025-06-05 11:06:33	\N	\N	\N
93	hello	Hi	218	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:34	2025-06-05 11:06:34	\N	\N	\N
96	hello	Hi	179	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:35	2025-06-05 11:06:35	\N	\N	\N
98	hello	Hi	229	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:35	2025-06-05 11:06:35	\N	\N	\N
100	hello	Hi	169	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:36	2025-06-05 11:06:36	\N	\N	\N
102	hello	Hi	219	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:36	2025-06-05 11:06:36	\N	\N	\N
105	hello	Hi	209	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:37	2025-06-05 11:06:37	\N	\N	\N
107	hello	Hi	191	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:37	2025-06-05 11:06:37	\N	\N	\N
109	hello	Hi	202	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:38	2025-06-05 11:06:38	\N	\N	\N
112	hello	Hi	170	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:38	2025-06-05 11:06:38	\N	\N	\N
114	hello	Hi	230	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:39	2025-06-05 11:06:39	\N	\N	\N
116	hello	Hi	203	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:39	2025-06-05 11:06:39	\N	\N	\N
118	hello	Hi	210	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:40	2025-06-05 11:06:40	\N	\N	\N
120	hello	Hi	220	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:40	2025-06-05 11:06:40	\N	\N	\N
122	hello	Hi	192	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:41	2025-06-05 11:06:41	\N	\N	\N
124	hello	Hi	171	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:41	2025-06-05 11:06:41	\N	\N	\N
126	hello	Hi	161	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:42	2025-06-05 11:06:42	\N	\N	\N
127	hello	Hi	211	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:42	2025-06-05 11:06:42	\N	\N	\N
129	hello	Hi	231	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:43	2025-06-05 11:06:43	\N	\N	\N
131	hello	Hi	162	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:43	2025-06-05 11:06:43	\N	\N	\N
133	hello	Hi	172	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:43	2025-06-05 11:06:43	\N	\N	\N
135	hello	Hi	222	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:44	2025-06-05 11:06:44	\N	\N	\N
137	hello	Hi	212	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:44	2025-06-05 11:06:44	\N	\N	\N
139	hello	Hi	232	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:45	2025-06-05 11:06:45	\N	\N	\N
141	hello	Hi	213	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:46	2025-06-05 11:06:46	\N	\N	\N
144	hello	Hi	163	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:46	2025-06-05 11:06:46	\N	\N	\N
145	hello	Hi	223	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:47	2025-06-05 11:06:47	\N	\N	\N
147	hello	Hi	173	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:47	2025-06-05 11:06:47	\N	\N	\N
150	hello	Hi	233	1	\N	no	68417a271e699_1749121575.png	1	2025-06-05 11:06:48	2025-06-05 11:06:48	\N	\N	\N
64	hello	Hi	194	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:28	2025-06-05 11:06:28	\N	\N	\N
66	hello	Hi	175	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:28	2025-06-05 11:06:28	\N	\N	\N
67	hello	Hi	215	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:29	2025-06-05 11:06:29	\N	\N	\N
69	hello	Hi	225	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:29	2025-06-05 11:06:29	\N	\N	\N
71	hello	Hi	205	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:30	2025-06-05 11:06:30	\N	\N	\N
74	hello	Hi	235	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:30	2025-06-05 11:06:30	\N	\N	\N
76	hello	Hi	206	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:31	2025-06-05 11:06:31	\N	\N	\N
77	hello	Hi	156	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:31	2025-06-05 11:06:31	\N	\N	\N
78	hello	Hi	188	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:31	2025-06-05 11:06:31	\N	\N	\N
80	hello	Hi	166	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:31	2025-06-05 11:06:31	\N	\N	\N
82	hello	Hi	176	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:31	2025-06-05 11:06:31	\N	\N	\N
84	hello	Hi	226	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:32	2025-06-05 11:06:32	\N	\N	\N
86	hello	Hi	195	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:32	2025-06-05 11:06:32	\N	\N	\N
89	hello	Hi	199	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:33	2025-06-05 11:06:33	\N	\N	\N
91	hello	Hi	236	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:33	2025-06-05 11:06:33	\N	\N	\N
92	hello	Hi	216	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:34	2025-06-05 11:06:34	\N	\N	\N
94	hello	Hi	157	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:34	2025-06-05 11:06:34	\N	\N	\N
95	hello	Hi	183	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:34	2025-06-05 11:06:34	\N	\N	\N
97	hello	Hi	177	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:35	2025-06-05 11:06:35	\N	\N	\N
99	hello	Hi	196	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:36	2025-06-05 11:06:36	\N	\N	\N
101	hello	Hi	189	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:36	2025-06-05 11:06:36	\N	\N	\N
103	hello	Hi	207	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:37	2025-06-05 11:06:37	\N	\N	\N
104	hello	Hi	217	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:37	2025-06-05 11:06:37	\N	\N	\N
106	hello	Hi	227	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:37	2025-06-05 11:06:37	\N	\N	\N
108	hello	Hi	208	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:37	2025-06-05 11:06:37	\N	\N	\N
110	hello	Hi	158	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:38	2025-06-05 11:06:38	\N	\N	\N
111	hello	Hi	190	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:38	2025-06-05 11:06:38	\N	\N	\N
113	hello	Hi	168	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:39	2025-06-05 11:06:39	\N	\N	\N
115	hello	Hi	184	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:39	2025-06-05 11:06:39	\N	\N	\N
117	hello	Hi	178	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:39	2025-06-05 11:06:39	\N	\N	\N
119	hello	Hi	228	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:40	2025-06-05 11:06:40	\N	\N	\N
121	hello	Hi	218	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:41	2025-06-05 11:06:41	\N	\N	\N
123	hello	Hi	179	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:41	2025-06-05 11:06:41	\N	\N	\N
125	hello	Hi	229	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:41	2025-06-05 11:06:41	\N	\N	\N
128	hello	Hi	169	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:42	2025-06-05 11:06:42	\N	\N	\N
130	hello	Hi	219	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:43	2025-06-05 11:06:43	\N	\N	\N
132	hello	Hi	209	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:43	2025-06-05 11:06:43	\N	\N	\N
134	hello	Hi	191	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:44	2025-06-05 11:06:44	\N	\N	\N
136	hello	Hi	202	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:44	2025-06-05 11:06:44	\N	\N	\N
138	hello	Hi	170	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:45	2025-06-05 11:06:45	\N	\N	\N
140	hello	Hi	230	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:45	2025-06-05 11:06:45	\N	\N	\N
142	hello	Hi	203	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:46	2025-06-05 11:06:46	\N	\N	\N
143	hello	Hi	210	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:46	2025-06-05 11:06:46	\N	\N	\N
146	hello	Hi	220	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:47	2025-06-05 11:06:47	\N	\N	\N
148	hello	Hi	192	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:47	2025-06-05 11:06:47	\N	\N	\N
149	hello	Hi	171	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:48	2025-06-05 11:06:48	\N	\N	\N
151	hello	Hi	161	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:48	2025-06-05 11:06:48	\N	\N	\N
152	hello	Hi	211	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:48	2025-06-05 11:06:48	\N	\N	\N
153	hello	Hi	231	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:49	2025-06-05 11:06:49	\N	\N	\N
154	hello	Hi	162	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:50	2025-06-05 11:06:50	\N	\N	\N
155	hello	Hi	172	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:50	2025-06-05 11:06:50	\N	\N	\N
156	hello	Hi	222	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:50	2025-06-05 11:06:50	\N	\N	\N
157	hello	Hi	212	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:51	2025-06-05 11:06:51	\N	\N	\N
158	hello	Hi	232	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:51	2025-06-05 11:06:51	\N	\N	\N
159	hello	Hi	213	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:52	2025-06-05 11:06:52	\N	\N	\N
160	hello	Hi	163	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:53	2025-06-05 11:06:53	\N	\N	\N
161	hello	Hi	223	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:53	2025-06-05 11:06:53	\N	\N	\N
162	hello	Hi	173	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:53	2025-06-05 11:06:53	\N	\N	\N
163	hello	Hi	233	1	\N	no	68417a2dc953a_1749121581.png	1	2025-06-05 11:06:54	2025-06-05 11:06:54	\N	\N	\N
266	promooooo	pronmmo aail 69%off on new profile	185	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:20	2025-06-09 09:02:20	\N	\N	\N
267	promooooo	pronmmo aail 69%off on new profile	214	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:20	2025-06-09 09:02:20	\N	\N	\N
164	Unlock Exclusive Perks with Our Membership! 🎉	Unlock Exclusive Perks with Our Membership! 🎉\r\nHi Khalid,\r\nWe’re excited to let you know about our limited-time membership offer! Join now and enjoy:\r\n ✅ [Benefit 1, e.g., 20% off all purchases] ✅ [Benefit 2, e.g., free shipping on every order] ✅ [Benefit 3, e.g., early access to sales and new arrivals]\r\n\r\nFor a limited time, get [X months free/discounted rate] when you sign up!\r\n\r\n👉 [Click here] to join today and start saving!\r\nDon’t miss out—this offer ends on [date].\r\n\r\nCheers, Luqia	211	1	\N	no	68417ee6899ec_1749122790.png	1	2025-06-05 11:26:30	2025-06-05 11:26:30	\N	\N	\N
165	test	sdfsd	211	1	\N	no	684180f677cf6_1749123318.png	1	2025-06-05 11:35:18	2025-06-05 11:35:18	\N	\N	\N
166	Hamid	dsfsd	211	1	\N	no	684182ba75859_1749123770.png	1	2025-06-05 11:42:50	2025-06-05 11:42:50	\N	\N	\N
167	tes	defcsd	192	1	\N	no	6841868dc5ac2_1749124749.png	1	2025-06-05 11:59:09	2025-06-05 11:59:09	\N	\N	\N
168	sdufsdj	sdjvjsdjvsjd	192	1	\N	no	68418747e7e04_1749124935.png	1	2025-06-05 12:02:16	2025-06-05 12:02:16	\N	\N	\N
169	hellosdf	dsfsdfsd	192	1	\N	no	6841883864f7d_1749125176.png	1	2025-06-05 12:06:16	2025-06-05 12:06:16	\N	\N	\N
170	Notification test	sdfsd	192	1	\N	no	684189bd6f7bb_1749125565.png	1	2025-06-05 12:12:45	2025-06-05 12:12:45	\N	\N	\N
171	hi	yyykhjb bkhlkjb ihlh lhlkhlkh	239	1	\N	no	6842820952af6_1749189129.png	1	2025-06-06 05:52:09	2025-06-06 05:52:09	\N	\N	\N
172	hi	khulhlh	239	1	\N	no	6842829155e92_1749189265.png	1	2025-06-06 05:54:25	2025-06-06 05:54:25	\N	\N	\N
173	hi	iutuyotot	239	1	\N	no	6842a4cea8519_1749198030.png	1	2025-06-06 08:20:30	2025-06-06 08:20:30	\N	\N	\N
174	education	education education education education education	239	1	\N	no	6842a54ade7ae_1749198154.png	1	2025-06-06 08:22:35	2025-06-06 08:22:35	\N	\N	\N
175	jkkkkk	ljnnljnn	239	1	\N	no	6842dfd95ba36_1749213145.png	1	2025-06-06 12:32:25	2025-06-06 12:32:25	\N	\N	\N
176	jmbjbglhgljgh	nljnlj	239	1	\N	no	6842e048e75f5_1749213256.png	1	2025-06-06 12:34:17	2025-06-06 12:34:17	\N	\N	\N
177	This is my title	This is my content	239	1	\N	no	6842e2dd6166b_1749213917.png	1	2025-06-06 12:45:17	2025-06-06 12:45:17	\N	\N	\N
178	This is promotion	This is text	239	1	\N	no	6842e30603ab5_1749213958.png	1	2025-06-06 12:45:58	2025-06-06 12:45:58	\N	\N	\N
179	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	185	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:25	2025-06-08 06:41:25	\N	\N	\N
180	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	214	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:25	2025-06-08 06:41:25	\N	\N	\N
181	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	224	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:25	2025-06-08 06:41:25	\N	\N	\N
182	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	234	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:26	2025-06-08 06:41:26	\N	\N	\N
183	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	180	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:26	2025-06-08 06:41:26	\N	\N	\N
184	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	51	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:26	2025-06-08 06:41:26	\N	\N	\N
185	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	197	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:26	2025-06-08 06:41:26	\N	\N	\N
186	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	186	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:26	2025-06-08 06:41:26	\N	\N	\N
268	promooooo	pronmmo aail 69%off on new profile	224	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:20	2025-06-09 09:02:20	\N	\N	\N
269	promooooo	pronmmo aail 69%off on new profile	180	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:21	2025-06-09 09:02:21	\N	\N	\N
270	promooooo	pronmmo aail 69%off on new profile	51	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:21	2025-06-09 09:02:21	\N	\N	\N
187	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	193	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:26	2025-06-08 06:41:26	\N	\N	\N
188	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	50	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N	\N	\N
189	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	174	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N	\N	\N
190	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	204	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N	\N	\N
191	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	53	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N	\N	\N
192	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	154	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N	\N	\N
193	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	52	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N	\N	\N
194	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	49	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N	\N	\N
195	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	164	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N	\N	\N
196	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	155	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N	\N	\N
197	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	198	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N	\N	\N
198	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	187	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:27	2025-06-08 06:41:27	\N	\N	\N
199	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	181	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:28	2025-06-08 06:41:28	\N	\N	\N
271	promooooo	pronmmo aail 69%off on new profile	197	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:21	2025-06-09 09:02:21	\N	\N	\N
200	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	165	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:28	2025-06-08 06:41:28	\N	\N	\N
201	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	194	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:28	2025-06-08 06:41:28	\N	\N	\N
202	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	175	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:28	2025-06-08 06:41:28	\N	\N	\N
203	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	215	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:28	2025-06-08 06:41:28	\N	\N	\N
204	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	225	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:29	2025-06-08 06:41:29	\N	\N	\N
205	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	205	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:29	2025-06-08 06:41:29	\N	\N	\N
206	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	235	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:29	2025-06-08 06:41:29	\N	\N	\N
207	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	206	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:30	2025-06-08 06:41:30	\N	\N	\N
208	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	156	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:30	2025-06-08 06:41:30	\N	\N	\N
209	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	188	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:30	2025-06-08 06:41:30	\N	\N	\N
210	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	166	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:30	2025-06-08 06:41:30	\N	\N	\N
211	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	176	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:30	2025-06-08 06:41:30	\N	\N	\N
212	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	226	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:30	2025-06-08 06:41:30	\N	\N	\N
272	promooooo	pronmmo aail 69%off on new profile	186	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:21	2025-06-09 09:02:21	\N	\N	\N
213	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	195	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:31	2025-06-08 06:41:31	\N	\N	\N
214	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	199	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:31	2025-06-08 06:41:31	\N	\N	\N
215	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	236	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:31	2025-06-08 06:41:31	\N	\N	\N
216	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	216	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:31	2025-06-08 06:41:31	\N	\N	\N
217	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	157	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:32	2025-06-08 06:41:32	\N	\N	\N
218	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	183	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:32	2025-06-08 06:41:32	\N	\N	\N
219	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	177	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:32	2025-06-08 06:41:32	\N	\N	\N
220	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	196	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:32	2025-06-08 06:41:32	\N	\N	\N
221	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	189	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:32	2025-06-08 06:41:32	\N	\N	\N
222	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	237	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:33	2025-06-08 06:41:33	\N	\N	\N
223	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	207	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:33	2025-06-08 06:41:33	\N	\N	\N
224	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	217	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:33	2025-06-08 06:41:33	\N	\N	\N
225	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	227	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:33	2025-06-08 06:41:33	\N	\N	\N
273	promooooo	pronmmo aail 69%off on new profile	193	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:21	2025-06-09 09:02:21	\N	\N	\N
226	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	208	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:34	2025-06-08 06:41:34	\N	\N	\N
227	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	158	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:34	2025-06-08 06:41:34	\N	\N	\N
228	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	190	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:34	2025-06-08 06:41:34	\N	\N	\N
229	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	168	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:34	2025-06-08 06:41:34	\N	\N	\N
230	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	184	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:34	2025-06-08 06:41:34	\N	\N	\N
231	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	178	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:34	2025-06-08 06:41:34	\N	\N	\N
232	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	228	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:34	2025-06-08 06:41:34	\N	\N	\N
233	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	218	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:35	2025-06-08 06:41:35	\N	\N	\N
234	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	238	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:35	2025-06-08 06:41:35	\N	\N	\N
235	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	179	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:35	2025-06-08 06:41:35	\N	\N	\N
236	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	229	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:36	2025-06-08 06:41:36	\N	\N	\N
237	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	169	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:36	2025-06-08 06:41:36	\N	\N	\N
238	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	219	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:36	2025-06-08 06:41:36	\N	\N	\N
274	promooooo	pronmmo aail 69%off on new profile	50	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:21	2025-06-09 09:02:21	\N	\N	\N
239	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	209	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:36	2025-06-08 06:41:36	\N	\N	\N
240	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	191	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:37	2025-06-08 06:41:37	\N	\N	\N
241	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	202	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:37	2025-06-08 06:41:37	\N	\N	\N
242	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	239	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:37	2025-06-08 06:41:37	\N	\N	\N
243	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	170	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:38	2025-06-08 06:41:38	\N	\N	\N
244	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	230	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:38	2025-06-08 06:41:38	\N	\N	\N
245	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	192	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:38	2025-06-08 06:41:38	\N	\N	\N
246	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	203	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:38	2025-06-08 06:41:38	\N	\N	\N
247	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	220	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:39	2025-06-08 06:41:39	\N	\N	\N
248	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	210	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:39	2025-06-08 06:41:39	\N	\N	\N
249	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	240	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:39	2025-06-08 06:41:39	\N	\N	\N
250	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	171	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:40	2025-06-08 06:41:40	\N	\N	\N
251	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	161	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:40	2025-06-08 06:41:40	\N	\N	\N
275	promooooo	pronmmo aail 69%off on new profile	174	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:21	2025-06-09 09:02:21	\N	\N	\N
252	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	241	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:40	2025-06-08 06:41:40	\N	\N	\N
253	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	211	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:40	2025-06-08 06:41:40	\N	\N	\N
254	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	231	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:41	2025-06-08 06:41:41	\N	\N	\N
255	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	162	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:41	2025-06-08 06:41:41	\N	\N	\N
256	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	212	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:41	2025-06-08 06:41:41	\N	\N	\N
257	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	172	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:41	2025-06-08 06:41:41	\N	\N	\N
258	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	222	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:41	2025-06-08 06:41:41	\N	\N	\N
259	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	242	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:42	2025-06-08 06:41:42	\N	\N	\N
260	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	213	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:42	2025-06-08 06:41:42	\N	\N	\N
261	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	163	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:42	2025-06-08 06:41:42	\N	\N	\N
262	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	223	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:42	2025-06-08 06:41:42	\N	\N	\N
263	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	173	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:42	2025-06-08 06:41:42	\N	\N	\N
264	What is Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages	233	1	\N	no	68453094d15fe_1749364884.jpg	1	2025-06-08 06:41:43	2025-06-08 06:41:43	\N	\N	\N
265	promooooo	pronmmo aail 69%off on new profile	234	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:19	2025-06-09 09:02:19	\N	\N	\N
276	promooooo	pronmmo aail 69%off on new profile	204	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N	\N	\N
277	promooooo	pronmmo aail 69%off on new profile	53	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N	\N	\N
278	promooooo	pronmmo aail 69%off on new profile	154	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N	\N	\N
279	promooooo	pronmmo aail 69%off on new profile	52	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N	\N	\N
280	promooooo	pronmmo aail 69%off on new profile	49	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N	\N	\N
281	promooooo	pronmmo aail 69%off on new profile	164	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N	\N	\N
282	promooooo	pronmmo aail 69%off on new profile	155	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N	\N	\N
283	promooooo	pronmmo aail 69%off on new profile	198	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N	\N	\N
284	promooooo	pronmmo aail 69%off on new profile	187	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N	\N	\N
285	promooooo	pronmmo aail 69%off on new profile	181	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:22	2025-06-09 09:02:22	\N	\N	\N
286	promooooo	pronmmo aail 69%off on new profile	165	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:23	2025-06-09 09:02:23	\N	\N	\N
287	promooooo	pronmmo aail 69%off on new profile	194	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:23	2025-06-09 09:02:23	\N	\N	\N
288	promooooo	pronmmo aail 69%off on new profile	175	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:23	2025-06-09 09:02:23	\N	\N	\N
289	promooooo	pronmmo aail 69%off on new profile	215	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:23	2025-06-09 09:02:23	\N	\N	\N
290	promooooo	pronmmo aail 69%off on new profile	225	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:24	2025-06-09 09:02:24	\N	\N	\N
291	promooooo	pronmmo aail 69%off on new profile	205	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:24	2025-06-09 09:02:24	\N	\N	\N
292	promooooo	pronmmo aail 69%off on new profile	235	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:24	2025-06-09 09:02:24	\N	\N	\N
293	promooooo	pronmmo aail 69%off on new profile	206	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:25	2025-06-09 09:02:25	\N	\N	\N
294	promooooo	pronmmo aail 69%off on new profile	156	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:25	2025-06-09 09:02:25	\N	\N	\N
295	promooooo	pronmmo aail 69%off on new profile	188	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:25	2025-06-09 09:02:25	\N	\N	\N
296	promooooo	pronmmo aail 69%off on new profile	166	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:25	2025-06-09 09:02:25	\N	\N	\N
297	promooooo	pronmmo aail 69%off on new profile	176	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:25	2025-06-09 09:02:25	\N	\N	\N
298	promooooo	pronmmo aail 69%off on new profile	226	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:25	2025-06-09 09:02:25	\N	\N	\N
299	promooooo	pronmmo aail 69%off on new profile	195	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:26	2025-06-09 09:02:26	\N	\N	\N
300	promooooo	pronmmo aail 69%off on new profile	199	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:26	2025-06-09 09:02:26	\N	\N	\N
301	promooooo	pronmmo aail 69%off on new profile	236	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:26	2025-06-09 09:02:26	\N	\N	\N
302	promooooo	pronmmo aail 69%off on new profile	216	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:26	2025-06-09 09:02:26	\N	\N	\N
303	promooooo	pronmmo aail 69%off on new profile	157	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:27	2025-06-09 09:02:27	\N	\N	\N
304	promooooo	pronmmo aail 69%off on new profile	183	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:27	2025-06-09 09:02:27	\N	\N	\N
305	promooooo	pronmmo aail 69%off on new profile	234	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:27	2025-06-09 09:02:27	\N	\N	\N
306	promooooo	pronmmo aail 69%off on new profile	177	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:27	2025-06-09 09:02:27	\N	\N	\N
307	promooooo	pronmmo aail 69%off on new profile	196	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:27	2025-06-09 09:02:27	\N	\N	\N
308	promooooo	pronmmo aail 69%off on new profile	185	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:27	2025-06-09 09:02:27	\N	\N	\N
309	promooooo	pronmmo aail 69%off on new profile	189	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:27	2025-06-09 09:02:27	\N	\N	\N
310	promooooo	pronmmo aail 69%off on new profile	214	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:27	2025-06-09 09:02:27	\N	\N	\N
311	promooooo	pronmmo aail 69%off on new profile	237	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N	\N	\N
312	promooooo	pronmmo aail 69%off on new profile	224	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N	\N	\N
313	promooooo	pronmmo aail 69%off on new profile	180	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N	\N	\N
314	promooooo	pronmmo aail 69%off on new profile	207	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N	\N	\N
315	promooooo	pronmmo aail 69%off on new profile	217	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N	\N	\N
316	promooooo	pronmmo aail 69%off on new profile	51	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N	\N	\N
317	promooooo	pronmmo aail 69%off on new profile	197	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N	\N	\N
318	promooooo	pronmmo aail 69%off on new profile	227	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N	\N	\N
319	promooooo	pronmmo aail 69%off on new profile	186	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N	\N	\N
320	promooooo	pronmmo aail 69%off on new profile	193	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N	\N	\N
321	promooooo	pronmmo aail 69%off on new profile	208	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:28	2025-06-09 09:02:28	\N	\N	\N
322	promooooo	pronmmo aail 69%off on new profile	50	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
323	promooooo	pronmmo aail 69%off on new profile	174	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
324	promooooo	pronmmo aail 69%off on new profile	158	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
567	Hi	Hi	203	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:53	2025-06-11 08:53:53	4	\N	\N
325	promooooo	pronmmo aail 69%off on new profile	190	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
327	promooooo	pronmmo aail 69%off on new profile	168	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
335	promooooo	pronmmo aail 69%off on new profile	184	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
336	promooooo	pronmmo aail 69%off on new profile	178	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
338	promooooo	pronmmo aail 69%off on new profile	228	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
340	promooooo	pronmmo aail 69%off on new profile	218	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:30	2025-06-09 09:02:30	\N	\N	\N
342	promooooo	pronmmo aail 69%off on new profile	238	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:30	2025-06-09 09:02:30	\N	\N	\N
345	promooooo	pronmmo aail 69%off on new profile	179	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:30	2025-06-09 09:02:30	\N	\N	\N
347	promooooo	pronmmo aail 69%off on new profile	229	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:31	2025-06-09 09:02:31	\N	\N	\N
349	promooooo	pronmmo aail 69%off on new profile	169	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:31	2025-06-09 09:02:31	\N	\N	\N
351	promooooo	pronmmo aail 69%off on new profile	219	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:31	2025-06-09 09:02:31	\N	\N	\N
353	promooooo	pronmmo aail 69%off on new profile	209	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:31	2025-06-09 09:02:31	\N	\N	\N
354	promooooo	pronmmo aail 69%off on new profile	191	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:32	2025-06-09 09:02:32	\N	\N	\N
358	promooooo	pronmmo aail 69%off on new profile	202	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:32	2025-06-09 09:02:32	\N	\N	\N
360	promooooo	pronmmo aail 69%off on new profile	239	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:32	2025-06-09 09:02:32	\N	\N	\N
363	promooooo	pronmmo aail 69%off on new profile	170	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:33	2025-06-09 09:02:33	\N	\N	\N
365	promooooo	pronmmo aail 69%off on new profile	230	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:33	2025-06-09 09:02:33	\N	\N	\N
367	promooooo	pronmmo aail 69%off on new profile	192	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:33	2025-06-09 09:02:33	\N	\N	\N
369	promooooo	pronmmo aail 69%off on new profile	203	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:33	2025-06-09 09:02:33	\N	\N	\N
371	promooooo	pronmmo aail 69%off on new profile	220	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N	\N	\N
374	promooooo	pronmmo aail 69%off on new profile	210	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N	\N	\N
375	promooooo	pronmmo aail 69%off on new profile	240	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N	\N	\N
379	promooooo	pronmmo aail 69%off on new profile	171	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N	\N	\N
381	promooooo	pronmmo aail 69%off on new profile	161	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N	\N	\N
382	promooooo	pronmmo aail 69%off on new profile	241	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N	\N	\N
385	promooooo	pronmmo aail 69%off on new profile	211	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N	\N	\N
387	promooooo	pronmmo aail 69%off on new profile	231	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N	\N	\N
389	promooooo	pronmmo aail 69%off on new profile	162	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N	\N	\N
390	promooooo	pronmmo aail 69%off on new profile	212	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N	\N	\N
393	promooooo	pronmmo aail 69%off on new profile	172	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N	\N	\N
395	promooooo	pronmmo aail 69%off on new profile	222	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N	\N	\N
398	promooooo	pronmmo aail 69%off on new profile	242	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N	\N	\N
400	promooooo	pronmmo aail 69%off on new profile	213	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:37	2025-06-09 09:02:37	\N	\N	\N
402	promooooo	pronmmo aail 69%off on new profile	163	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:37	2025-06-09 09:02:37	\N	\N	\N
403	promooooo	pronmmo aail 69%off on new profile	223	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:37	2025-06-09 09:02:37	\N	\N	\N
405	promooooo	pronmmo aail 69%off on new profile	173	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:37	2025-06-09 09:02:37	\N	\N	\N
406	promooooo	pronmmo aail 69%off on new profile	233	1	\N	no	6846a31baccf6_1749459739.png	1	2025-06-09 09:02:37	2025-06-09 09:02:37	\N	\N	\N
326	promooooo	pronmmo aail 69%off on new profile	204	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
328	promooooo	pronmmo aail 69%off on new profile	53	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
329	promooooo	pronmmo aail 69%off on new profile	154	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
330	promooooo	pronmmo aail 69%off on new profile	52	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
331	promooooo	pronmmo aail 69%off on new profile	49	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
332	promooooo	pronmmo aail 69%off on new profile	164	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
333	promooooo	pronmmo aail 69%off on new profile	155	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
334	promooooo	pronmmo aail 69%off on new profile	198	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
337	promooooo	pronmmo aail 69%off on new profile	187	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:29	2025-06-09 09:02:29	\N	\N	\N
339	promooooo	pronmmo aail 69%off on new profile	181	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:30	2025-06-09 09:02:30	\N	\N	\N
341	promooooo	pronmmo aail 69%off on new profile	165	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:30	2025-06-09 09:02:30	\N	\N	\N
343	promooooo	pronmmo aail 69%off on new profile	194	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:30	2025-06-09 09:02:30	\N	\N	\N
344	promooooo	pronmmo aail 69%off on new profile	175	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:30	2025-06-09 09:02:30	\N	\N	\N
346	promooooo	pronmmo aail 69%off on new profile	215	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:31	2025-06-09 09:02:31	\N	\N	\N
348	promooooo	pronmmo aail 69%off on new profile	225	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:31	2025-06-09 09:02:31	\N	\N	\N
350	promooooo	pronmmo aail 69%off on new profile	205	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:31	2025-06-09 09:02:31	\N	\N	\N
352	promooooo	pronmmo aail 69%off on new profile	235	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:31	2025-06-09 09:02:31	\N	\N	\N
355	promooooo	pronmmo aail 69%off on new profile	206	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:32	2025-06-09 09:02:32	\N	\N	\N
356	promooooo	pronmmo aail 69%off on new profile	156	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:32	2025-06-09 09:02:32	\N	\N	\N
357	promooooo	pronmmo aail 69%off on new profile	188	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:32	2025-06-09 09:02:32	\N	\N	\N
359	promooooo	pronmmo aail 69%off on new profile	166	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:32	2025-06-09 09:02:32	\N	\N	\N
361	promooooo	pronmmo aail 69%off on new profile	176	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:32	2025-06-09 09:02:32	\N	\N	\N
362	promooooo	pronmmo aail 69%off on new profile	226	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:33	2025-06-09 09:02:33	\N	\N	\N
364	promooooo	pronmmo aail 69%off on new profile	195	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:33	2025-06-09 09:02:33	\N	\N	\N
366	promooooo	pronmmo aail 69%off on new profile	199	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:33	2025-06-09 09:02:33	\N	\N	\N
368	promooooo	pronmmo aail 69%off on new profile	236	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:33	2025-06-09 09:02:33	\N	\N	\N
370	promooooo	pronmmo aail 69%off on new profile	216	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N	\N	\N
438	testttt	testtt	243	1	\N	no	6846af6cae577_1749462892.png	1	2025-06-09 09:54:52	2025-06-09 09:54:52	\N	\N	\N
372	promooooo	pronmmo aail 69%off on new profile	157	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N	\N	\N
373	promooooo	pronmmo aail 69%off on new profile	183	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N	\N	\N
376	promooooo	pronmmo aail 69%off on new profile	177	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N	\N	\N
377	promooooo	pronmmo aail 69%off on new profile	196	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N	\N	\N
378	promooooo	pronmmo aail 69%off on new profile	189	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:34	2025-06-09 09:02:34	\N	\N	\N
380	promooooo	pronmmo aail 69%off on new profile	237	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N	\N	\N
383	promooooo	pronmmo aail 69%off on new profile	207	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N	\N	\N
384	promooooo	pronmmo aail 69%off on new profile	217	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N	\N	\N
386	promooooo	pronmmo aail 69%off on new profile	227	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:35	2025-06-09 09:02:35	\N	\N	\N
388	promooooo	pronmmo aail 69%off on new profile	208	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N	\N	\N
391	promooooo	pronmmo aail 69%off on new profile	158	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N	\N	\N
392	promooooo	pronmmo aail 69%off on new profile	190	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N	\N	\N
394	promooooo	pronmmo aail 69%off on new profile	168	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N	\N	\N
396	promooooo	pronmmo aail 69%off on new profile	184	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N	\N	\N
397	promooooo	pronmmo aail 69%off on new profile	178	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N	\N	\N
399	promooooo	pronmmo aail 69%off on new profile	228	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:36	2025-06-09 09:02:36	\N	\N	\N
401	promooooo	pronmmo aail 69%off on new profile	218	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:37	2025-06-09 09:02:37	\N	\N	\N
404	promooooo	pronmmo aail 69%off on new profile	238	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:37	2025-06-09 09:02:37	\N	\N	\N
407	promooooo	pronmmo aail 69%off on new profile	179	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:37	2025-06-09 09:02:37	\N	\N	\N
408	promooooo	pronmmo aail 69%off on new profile	229	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:38	2025-06-09 09:02:38	\N	\N	\N
409	promooooo	pronmmo aail 69%off on new profile	169	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:38	2025-06-09 09:02:38	\N	\N	\N
410	promooooo	pronmmo aail 69%off on new profile	219	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:38	2025-06-09 09:02:38	\N	\N	\N
568	Hi	Hi	161	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:54	2025-06-11 08:53:54	4	\N	\N
411	promooooo	pronmmo aail 69%off on new profile	209	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:38	2025-06-09 09:02:38	\N	\N	\N
412	promooooo	pronmmo aail 69%off on new profile	191	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:39	2025-06-09 09:02:39	\N	\N	\N
413	promooooo	pronmmo aail 69%off on new profile	202	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:39	2025-06-09 09:02:39	\N	\N	\N
414	promooooo	pronmmo aail 69%off on new profile	239	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:39	2025-06-09 09:02:39	\N	\N	\N
415	promooooo	pronmmo aail 69%off on new profile	170	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:40	2025-06-09 09:02:40	\N	\N	\N
416	promooooo	pronmmo aail 69%off on new profile	230	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:40	2025-06-09 09:02:40	\N	\N	\N
417	promooooo	pronmmo aail 69%off on new profile	192	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:40	2025-06-09 09:02:40	\N	\N	\N
418	promooooo	pronmmo aail 69%off on new profile	203	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:40	2025-06-09 09:02:40	\N	\N	\N
419	promooooo	pronmmo aail 69%off on new profile	220	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:41	2025-06-09 09:02:41	\N	\N	\N
420	promooooo	pronmmo aail 69%off on new profile	210	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:41	2025-06-09 09:02:41	\N	\N	\N
421	promooooo	pronmmo aail 69%off on new profile	240	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:41	2025-06-09 09:02:41	\N	\N	\N
422	promooooo	pronmmo aail 69%off on new profile	171	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:42	2025-06-09 09:02:42	\N	\N	\N
423	promooooo	pronmmo aail 69%off on new profile	161	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:42	2025-06-09 09:02:42	\N	\N	\N
424	promooooo	pronmmo aail 69%off on new profile	241	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:42	2025-06-09 09:02:42	\N	\N	\N
425	promooooo	pronmmo aail 69%off on new profile	211	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:42	2025-06-09 09:02:42	\N	\N	\N
426	promooooo	pronmmo aail 69%off on new profile	231	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:42	2025-06-09 09:02:42	\N	\N	\N
427	promooooo	pronmmo aail 69%off on new profile	162	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:43	2025-06-09 09:02:43	\N	\N	\N
428	promooooo	pronmmo aail 69%off on new profile	212	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:43	2025-06-09 09:02:43	\N	\N	\N
429	promooooo	pronmmo aail 69%off on new profile	172	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:43	2025-06-09 09:02:43	\N	\N	\N
430	promooooo	pronmmo aail 69%off on new profile	222	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:43	2025-06-09 09:02:43	\N	\N	\N
431	promooooo	pronmmo aail 69%off on new profile	242	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:43	2025-06-09 09:02:43	\N	\N	\N
432	promooooo	pronmmo aail 69%off on new profile	213	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:44	2025-06-09 09:02:44	\N	\N	\N
433	promooooo	pronmmo aail 69%off on new profile	163	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:44	2025-06-09 09:02:44	\N	\N	\N
434	promooooo	pronmmo aail 69%off on new profile	223	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:44	2025-06-09 09:02:44	\N	\N	\N
435	promooooo	pronmmo aail 69%off on new profile	173	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:44	2025-06-09 09:02:44	\N	\N	\N
436	promooooo	pronmmo aail 69%off on new profile	233	1	\N	no	6846a32318865_1749459747.png	1	2025-06-09 09:02:44	2025-06-09 09:02:44	\N	\N	\N
437	wdewdewd	edse	234	1	\N	no	6846a3bfcd212_1749459903.jpg	1	2025-06-09 09:05:04	2025-06-09 09:05:04	\N	\N	\N
439	gfgfg	gfgfdgr	215	1	\N	no	6846afce4ca9b_1749462990.jpg	1	2025-06-09 09:56:30	2025-06-09 09:56:30	\N	\N	\N
440	testing push	testing push	215	1	\N	no	6846b1d783c35_1749463511.png	1	2025-06-09 10:05:11	2025-06-09 10:05:11	\N	\N	\N
441	testing pushhhhh	testing pushhhhh	215	1	\N	no	6846b3165f43d_1749463830.jpg	1	2025-06-09 10:10:30	2025-06-09 10:10:30	\N	\N	\N
442	This is Test	Not every thing free	234	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:55	2025-06-09 13:49:55	1	\N	\N
443	This is Test	Not every thing free	185	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:55	2025-06-09 13:49:55	1	\N	\N
444	This is Test	Not every thing free	214	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:56	2025-06-09 13:49:56	1	\N	\N
445	This is Test	Not every thing free	224	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:56	2025-06-09 13:49:56	1	\N	\N
446	This is Test	Not every thing free	180	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:56	2025-06-09 13:49:56	1	\N	\N
447	This is Test	Not every thing free	51	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:56	2025-06-09 13:49:56	1	\N	\N
448	This is Test	Not every thing free	197	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:56	2025-06-09 13:49:56	1	\N	\N
449	This is Test	Not every thing free	186	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1	\N	\N
450	This is Test	Not every thing free	193	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1	\N	\N
451	This is Test	Not every thing free	50	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1	\N	\N
452	This is Test	Not every thing free	174	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1	\N	\N
453	This is Test	Not every thing free	204	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1	\N	\N
454	This is Test	Not every thing free	53	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1	\N	\N
455	This is Test	Not every thing free	154	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1	\N	\N
456	This is Test	Not every thing free	52	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1	\N	\N
457	This is Test	Not every thing free	49	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1	\N	\N
458	This is Test	Not every thing free	164	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1	\N	\N
459	This is Test	Not every thing free	155	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1	\N	\N
460	This is Test	Not every thing free	198	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:57	2025-06-09 13:49:57	1	\N	\N
461	This is Test	Not every thing free	187	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:58	2025-06-09 13:49:58	1	\N	\N
462	This is Test	Not every thing free	181	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:58	2025-06-09 13:49:58	1	\N	\N
463	This is Test	Not every thing free	165	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:58	2025-06-09 13:49:58	1	\N	\N
464	This is Test	Not every thing free	194	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:58	2025-06-09 13:49:58	1	\N	\N
465	This is Test	Not every thing free	175	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:59	2025-06-09 13:49:59	1	\N	\N
466	This is Test	Not every thing free	225	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:59	2025-06-09 13:49:59	1	\N	\N
467	This is Test	Not every thing free	205	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:59	2025-06-09 13:49:59	1	\N	\N
468	This is Test	Not every thing free	215	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:49:59	2025-06-09 13:49:59	1	\N	\N
469	This is Test	Not every thing free	235	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:00	2025-06-09 13:50:00	1	\N	\N
470	This is Test	Not every thing free	206	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:00	2025-06-09 13:50:00	1	\N	\N
471	This is Test	Not every thing free	156	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:00	2025-06-09 13:50:00	1	\N	\N
472	This is Test	Not every thing free	188	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:00	2025-06-09 13:50:00	1	\N	\N
473	This is Test	Not every thing free	166	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:01	2025-06-09 13:50:01	1	\N	\N
474	This is Test	Not every thing free	176	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:01	2025-06-09 13:50:01	1	\N	\N
475	This is Test	Not every thing free	226	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:01	2025-06-09 13:50:01	1	\N	\N
476	This is Test	Not every thing free	195	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:01	2025-06-09 13:50:01	1	\N	\N
477	This is Test	Not every thing free	199	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:02	2025-06-09 13:50:02	1	\N	\N
478	This is Test	Not every thing free	236	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:02	2025-06-09 13:50:02	1	\N	\N
479	This is Test	Not every thing free	216	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:02	2025-06-09 13:50:02	1	\N	\N
480	This is Test	Not every thing free	157	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:03	2025-06-09 13:50:03	1	\N	\N
481	This is Test	Not every thing free	183	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:03	2025-06-09 13:50:03	1	\N	\N
482	This is Test	Not every thing free	177	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:03	2025-06-09 13:50:03	1	\N	\N
483	This is Test	Not every thing free	196	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:03	2025-06-09 13:50:03	1	\N	\N
484	This is Test	Not every thing free	189	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:03	2025-06-09 13:50:03	1	\N	\N
485	This is Test	Not every thing free	237	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:04	2025-06-09 13:50:04	1	\N	\N
486	This is Test	Not every thing free	207	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:04	2025-06-09 13:50:04	1	\N	\N
487	This is Test	Not every thing free	217	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:04	2025-06-09 13:50:04	1	\N	\N
488	This is Test	Not every thing free	227	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:04	2025-06-09 13:50:04	1	\N	\N
489	This is Test	Not every thing free	208	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:05	2025-06-09 13:50:05	1	\N	\N
490	This is Test	Not every thing free	158	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:05	2025-06-09 13:50:05	1	\N	\N
491	This is Test	Not every thing free	190	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:05	2025-06-09 13:50:05	1	\N	\N
492	This is Test	Not every thing free	168	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:05	2025-06-09 13:50:05	1	\N	\N
493	This is Test	Not every thing free	184	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:05	2025-06-09 13:50:05	1	\N	\N
494	This is Test	Not every thing free	178	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:05	2025-06-09 13:50:05	1	\N	\N
495	This is Test	Not every thing free	228	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:05	2025-06-09 13:50:05	1	\N	\N
496	This is Test	Not every thing free	218	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:06	2025-06-09 13:50:06	1	\N	\N
497	This is Test	Not every thing free	238	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:06	2025-06-09 13:50:06	1	\N	\N
498	This is Test	Not every thing free	179	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:07	2025-06-09 13:50:07	1	\N	\N
499	This is Test	Not every thing free	229	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:07	2025-06-09 13:50:07	1	\N	\N
500	This is Test	Not every thing free	169	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:07	2025-06-09 13:50:07	1	\N	\N
501	This is Test	Not every thing free	219	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:07	2025-06-09 13:50:07	1	\N	\N
502	This is Test	Not every thing free	209	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:07	2025-06-09 13:50:07	1	\N	\N
503	This is Test	Not every thing free	191	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:08	2025-06-09 13:50:08	1	\N	\N
504	This is Test	Not every thing free	202	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:08	2025-06-09 13:50:08	1	\N	\N
505	This is Test	Not every thing free	239	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:08	2025-06-09 13:50:08	1	\N	\N
506	This is Test	Not every thing free	170	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:09	2025-06-09 13:50:09	1	\N	\N
507	This is Test	Not every thing free	230	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:09	2025-06-09 13:50:09	1	\N	\N
508	This is Test	Not every thing free	192	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:09	2025-06-09 13:50:09	1	\N	\N
509	This is Test	Not every thing free	203	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:10	2025-06-09 13:50:10	1	\N	\N
569	Hi	Hi	231	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:54	2025-06-11 08:53:54	4	\N	\N
510	This is Test	Not every thing free	220	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:10	2025-06-09 13:50:10	1	\N	\N
511	This is Test	Not every thing free	210	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:10	2025-06-09 13:50:10	1	\N	\N
512	This is Test	Not every thing free	240	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:10	2025-06-09 13:50:10	1	\N	\N
513	This is Test	Not every thing free	171	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:11	2025-06-09 13:50:11	1	\N	\N
514	This is Test	Not every thing free	161	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:11	2025-06-09 13:50:11	1	\N	\N
515	This is Test	Not every thing free	241	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:11	2025-06-09 13:50:11	1	\N	\N
516	This is Test	Not every thing free	211	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:12	2025-06-09 13:50:12	1	\N	\N
517	This is Test	Not every thing free	231	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:12	2025-06-09 13:50:12	1	\N	\N
518	This is Test	Not every thing free	162	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:12	2025-06-09 13:50:12	1	\N	\N
519	This is Test	Not every thing free	212	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:12	2025-06-09 13:50:12	1	\N	\N
520	This is Test	Not every thing free	172	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:12	2025-06-09 13:50:12	1	\N	\N
521	This is Test	Not every thing free	222	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:13	2025-06-09 13:50:13	1	\N	\N
522	This is Test	Not every thing free	242	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:13	2025-06-09 13:50:13	1	\N	\N
523	This is Test	Not every thing free	213	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:13	2025-06-09 13:50:13	1	\N	\N
524	This is Test	Not every thing free	163	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:13	2025-06-09 13:50:13	1	\N	\N
525	This is Test	Not every thing free	223	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:13	2025-06-09 13:50:13	1	\N	\N
526	This is Test	Not every thing free	173	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:14	2025-06-09 13:50:14	1	\N	\N
527	This is Test	Not every thing free	233	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:14	2025-06-09 13:50:14	1	\N	\N
528	This is Test	Not every thing free	243	1	\N	no	6846e683190ca_1749476995.png	1	2025-06-09 13:50:14	2025-06-09 13:50:14	1	\N	\N
529	test	test	243	1	\N	no	6846ebacc9a87_1749478316.png	1	2025-06-09 14:11:57	2025-06-09 14:11:57	2	\N	\N
530	Hi	Hi	230	1	\N	no	684943ba4aaf7_1749631930.jpg	1	2025-06-11 08:52:10	2025-06-11 08:52:10	3	\N	\N
531	Hi	Hi	185	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:47	2025-06-11 08:53:47	4	\N	\N
532	Hi	Hi	214	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:47	2025-06-11 08:53:47	4	\N	\N
533	Hi	Hi	224	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:47	2025-06-11 08:53:47	4	\N	\N
534	Hi	Hi	51	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4	\N	\N
535	Hi	Hi	197	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4	\N	\N
536	Hi	Hi	186	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4	\N	\N
537	Hi	Hi	193	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4	\N	\N
538	Hi	Hi	50	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4	\N	\N
539	Hi	Hi	53	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4	\N	\N
540	Hi	Hi	52	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4	\N	\N
541	Hi	Hi	49	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4	\N	\N
542	Hi	Hi	198	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4	\N	\N
543	Hi	Hi	165	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:48	2025-06-11 08:53:48	4	\N	\N
544	Hi	Hi	205	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:49	2025-06-11 08:53:49	4	\N	\N
545	Hi	Hi	206	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:49	2025-06-11 08:53:49	4	\N	\N
546	Hi	Hi	188	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:49	2025-06-11 08:53:49	4	\N	\N
547	Hi	Hi	166	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:49	2025-06-11 08:53:49	4	\N	\N
548	Hi	Hi	236	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:49	2025-06-11 08:53:49	4	\N	\N
549	Hi	Hi	183	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:50	2025-06-11 08:53:50	4	\N	\N
550	Hi	Hi	189	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:50	2025-06-11 08:53:50	4	\N	\N
551	Hi	Hi	207	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:50	2025-06-11 08:53:50	4	\N	\N
552	Hi	Hi	158	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:50	2025-06-11 08:53:50	4	\N	\N
553	Hi	Hi	190	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:50	2025-06-11 08:53:50	4	\N	\N
554	Hi	Hi	184	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:50	2025-06-11 08:53:50	4	\N	\N
555	Hi	Hi	178	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:50	2025-06-11 08:53:50	4	\N	\N
556	Hi	Hi	228	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:51	2025-06-11 08:53:51	4	\N	\N
557	Hi	Hi	218	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:51	2025-06-11 08:53:51	4	\N	\N
558	Hi	Hi	179	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:51	2025-06-11 08:53:51	4	\N	\N
559	Hi	Hi	229	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:51	2025-06-11 08:53:51	4	\N	\N
560	Hi	Hi	219	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:52	2025-06-11 08:53:52	4	\N	\N
561	Hi	Hi	209	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:52	2025-06-11 08:53:52	4	\N	\N
562	Hi	Hi	191	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:52	2025-06-11 08:53:52	4	\N	\N
563	Hi	Hi	202	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:52	2025-06-11 08:53:52	4	\N	\N
564	Hi	Hi	170	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:53	2025-06-11 08:53:53	4	\N	\N
565	Hi	Hi	230	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:53	2025-06-11 08:53:53	4	\N	\N
566	Hi	Hi	192	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:53	2025-06-11 08:53:53	4	\N	\N
570	Hi	Hi	212	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:54	2025-06-11 08:53:54	4	\N	\N
571	Hi	Hi	222	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:54	2025-06-11 08:53:54	4	\N	\N
572	Hi	Hi	242	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:54	2025-06-11 08:53:54	4	\N	\N
573	Hi	Hi	213	1	\N	no	6849441b0d2f7_1749632027.jpg	1	2025-06-11 08:53:55	2025-06-11 08:53:55	4	\N	\N
574	Buy 1 get 1 Free	Buy 1 get 1 Free	234	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:48	2025-06-11 08:55:48	5	\N	\N
575	Buy 1 get 1 Free	Buy 1 get 1 Free	185	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:48	2025-06-11 08:55:48	5	\N	\N
576	Buy 1 get 1 Free	Buy 1 get 1 Free	244	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:48	2025-06-11 08:55:48	5	\N	\N
577	Buy 1 get 1 Free	Buy 1 get 1 Free	214	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:49	2025-06-11 08:55:49	5	\N	\N
578	Buy 1 get 1 Free	Buy 1 get 1 Free	224	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:49	2025-06-11 08:55:49	5	\N	\N
579	Buy 1 get 1 Free	Buy 1 get 1 Free	180	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:49	2025-06-11 08:55:49	5	\N	\N
580	Buy 1 get 1 Free	Buy 1 get 1 Free	51	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:50	2025-06-11 08:55:50	5	\N	\N
581	Buy 1 get 1 Free	Buy 1 get 1 Free	197	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:50	2025-06-11 08:55:50	5	\N	\N
582	Buy 1 get 1 Free	Buy 1 get 1 Free	186	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:50	2025-06-11 08:55:50	5	\N	\N
583	Buy 1 get 1 Free	Buy 1 get 1 Free	193	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:50	2025-06-11 08:55:50	5	\N	\N
584	Buy 1 get 1 Free	Buy 1 get 1 Free	50	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:50	2025-06-11 08:55:50	5	\N	\N
585	Buy 1 get 1 Free	Buy 1 get 1 Free	174	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:50	2025-06-11 08:55:50	5	\N	\N
586	Buy 1 get 1 Free	Buy 1 get 1 Free	204	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:50	2025-06-11 08:55:50	5	\N	\N
587	Buy 1 get 1 Free	Buy 1 get 1 Free	53	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5	\N	\N
588	Buy 1 get 1 Free	Buy 1 get 1 Free	154	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5	\N	\N
589	Buy 1 get 1 Free	Buy 1 get 1 Free	52	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5	\N	\N
590	Buy 1 get 1 Free	Buy 1 get 1 Free	49	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5	\N	\N
591	Buy 1 get 1 Free	Buy 1 get 1 Free	164	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5	\N	\N
592	Buy 1 get 1 Free	Buy 1 get 1 Free	155	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5	\N	\N
593	Buy 1 get 1 Free	Buy 1 get 1 Free	198	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5	\N	\N
594	Buy 1 get 1 Free	Buy 1 get 1 Free	187	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5	\N	\N
595	Buy 1 get 1 Free	Buy 1 get 1 Free	181	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5	\N	\N
596	Buy 1 get 1 Free	Buy 1 get 1 Free	165	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:51	2025-06-11 08:55:51	5	\N	\N
597	Buy 1 get 1 Free	Buy 1 get 1 Free	194	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:52	2025-06-11 08:55:52	5	\N	\N
598	Buy 1 get 1 Free	Buy 1 get 1 Free	175	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:52	2025-06-11 08:55:52	5	\N	\N
599	Buy 1 get 1 Free	Buy 1 get 1 Free	225	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:52	2025-06-11 08:55:52	5	\N	\N
600	Buy 1 get 1 Free	Buy 1 get 1 Free	205	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:52	2025-06-11 08:55:52	5	\N	\N
601	Buy 1 get 1 Free	Buy 1 get 1 Free	215	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:53	2025-06-11 08:55:53	5	\N	\N
602	Buy 1 get 1 Free	Buy 1 get 1 Free	235	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:53	2025-06-11 08:55:53	5	\N	\N
603	Buy 1 get 1 Free	Buy 1 get 1 Free	206	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:53	2025-06-11 08:55:53	5	\N	\N
604	Buy 1 get 1 Free	Buy 1 get 1 Free	156	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:53	2025-06-11 08:55:53	5	\N	\N
605	Buy 1 get 1 Free	Buy 1 get 1 Free	188	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:53	2025-06-11 08:55:53	5	\N	\N
606	Buy 1 get 1 Free	Buy 1 get 1 Free	166	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:54	2025-06-11 08:55:54	5	\N	\N
607	Buy 1 get 1 Free	Buy 1 get 1 Free	176	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:54	2025-06-11 08:55:54	5	\N	\N
608	Buy 1 get 1 Free	Buy 1 get 1 Free	226	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:54	2025-06-11 08:55:54	5	\N	\N
609	Buy 1 get 1 Free	Buy 1 get 1 Free	195	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:54	2025-06-11 08:55:54	5	\N	\N
610	Buy 1 get 1 Free	Buy 1 get 1 Free	199	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:55	2025-06-11 08:55:55	5	\N	\N
611	Buy 1 get 1 Free	Buy 1 get 1 Free	236	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:55	2025-06-11 08:55:55	5	\N	\N
612	Buy 1 get 1 Free	Buy 1 get 1 Free	216	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:55	2025-06-11 08:55:55	5	\N	\N
613	Buy 1 get 1 Free	Buy 1 get 1 Free	157	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:56	2025-06-11 08:55:56	5	\N	\N
614	Buy 1 get 1 Free	Buy 1 get 1 Free	183	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:56	2025-06-11 08:55:56	5	\N	\N
615	Buy 1 get 1 Free	Buy 1 get 1 Free	177	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:56	2025-06-11 08:55:56	5	\N	\N
616	Buy 1 get 1 Free	Buy 1 get 1 Free	196	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:56	2025-06-11 08:55:56	5	\N	\N
617	Buy 1 get 1 Free	Buy 1 get 1 Free	189	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:56	2025-06-11 08:55:56	5	\N	\N
618	Buy 1 get 1 Free	Buy 1 get 1 Free	237	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:57	2025-06-11 08:55:57	5	\N	\N
619	Buy 1 get 1 Free	Buy 1 get 1 Free	207	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:57	2025-06-11 08:55:57	5	\N	\N
620	Buy 1 get 1 Free	Buy 1 get 1 Free	217	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:57	2025-06-11 08:55:57	5	\N	\N
621	Buy 1 get 1 Free	Buy 1 get 1 Free	227	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:57	2025-06-11 08:55:57	5	\N	\N
622	Buy 1 get 1 Free	Buy 1 get 1 Free	208	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:58	2025-06-11 08:55:58	5	\N	\N
623	Buy 1 get 1 Free	Buy 1 get 1 Free	158	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:58	2025-06-11 08:55:58	5	\N	\N
624	Buy 1 get 1 Free	Buy 1 get 1 Free	190	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:58	2025-06-11 08:55:58	5	\N	\N
625	Buy 1 get 1 Free	Buy 1 get 1 Free	168	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:58	2025-06-11 08:55:58	5	\N	\N
626	Buy 1 get 1 Free	Buy 1 get 1 Free	184	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:58	2025-06-11 08:55:58	5	\N	\N
627	Buy 1 get 1 Free	Buy 1 get 1 Free	178	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:58	2025-06-11 08:55:58	5	\N	\N
628	Buy 1 get 1 Free	Buy 1 get 1 Free	228	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:59	2025-06-11 08:55:59	5	\N	\N
629	Buy 1 get 1 Free	Buy 1 get 1 Free	218	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:59	2025-06-11 08:55:59	5	\N	\N
630	Buy 1 get 1 Free	Buy 1 get 1 Free	238	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:55:59	2025-06-11 08:55:59	5	\N	\N
631	Buy 1 get 1 Free	Buy 1 get 1 Free	179	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:00	2025-06-11 08:56:00	5	\N	\N
632	Buy 1 get 1 Free	Buy 1 get 1 Free	229	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:00	2025-06-11 08:56:00	5	\N	\N
633	Buy 1 get 1 Free	Buy 1 get 1 Free	169	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:00	2025-06-11 08:56:00	5	\N	\N
634	Buy 1 get 1 Free	Buy 1 get 1 Free	219	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:01	2025-06-11 08:56:01	5	\N	\N
635	Buy 1 get 1 Free	Buy 1 get 1 Free	209	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:01	2025-06-11 08:56:01	5	\N	\N
636	Buy 1 get 1 Free	Buy 1 get 1 Free	191	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:01	2025-06-11 08:56:01	5	\N	\N
637	Buy 1 get 1 Free	Buy 1 get 1 Free	202	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:02	2025-06-11 08:56:02	5	\N	\N
638	Buy 1 get 1 Free	Buy 1 get 1 Free	239	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:02	2025-06-11 08:56:02	5	\N	\N
639	Buy 1 get 1 Free	Buy 1 get 1 Free	170	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:02	2025-06-11 08:56:02	5	\N	\N
640	Buy 1 get 1 Free	Buy 1 get 1 Free	230	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:03	2025-06-11 08:56:03	5	\N	\N
641	Buy 1 get 1 Free	Buy 1 get 1 Free	192	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:03	2025-06-11 08:56:03	5	\N	\N
642	Buy 1 get 1 Free	Buy 1 get 1 Free	203	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:04	2025-06-11 08:56:04	5	\N	\N
643	Buy 1 get 1 Free	Buy 1 get 1 Free	220	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:04	2025-06-11 08:56:04	5	\N	\N
644	Buy 1 get 1 Free	Buy 1 get 1 Free	210	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:04	2025-06-11 08:56:04	5	\N	\N
645	Buy 1 get 1 Free	Buy 1 get 1 Free	240	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:04	2025-06-11 08:56:04	5	\N	\N
646	Buy 1 get 1 Free	Buy 1 get 1 Free	171	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:05	2025-06-11 08:56:05	5	\N	\N
647	Buy 1 get 1 Free	Buy 1 get 1 Free	161	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:05	2025-06-11 08:56:05	5	\N	\N
648	Buy 1 get 1 Free	Buy 1 get 1 Free	241	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:05	2025-06-11 08:56:05	5	\N	\N
649	Buy 1 get 1 Free	Buy 1 get 1 Free	211	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:06	2025-06-11 08:56:06	5	\N	\N
650	Buy 1 get 1 Free	Buy 1 get 1 Free	231	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:06	2025-06-11 08:56:06	5	\N	\N
651	Buy 1 get 1 Free	Buy 1 get 1 Free	162	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:06	2025-06-11 08:56:06	5	\N	\N
652	Buy 1 get 1 Free	Buy 1 get 1 Free	212	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:06	2025-06-11 08:56:06	5	\N	\N
653	Buy 1 get 1 Free	Buy 1 get 1 Free	172	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:06	2025-06-11 08:56:06	5	\N	\N
654	Buy 1 get 1 Free	Buy 1 get 1 Free	222	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:07	2025-06-11 08:56:07	5	\N	\N
655	Buy 1 get 1 Free	Buy 1 get 1 Free	242	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:07	2025-06-11 08:56:07	5	\N	\N
656	Buy 1 get 1 Free	Buy 1 get 1 Free	213	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:07	2025-06-11 08:56:07	5	\N	\N
657	Buy 1 get 1 Free	Buy 1 get 1 Free	163	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:07	2025-06-11 08:56:07	5	\N	\N
658	Buy 1 get 1 Free	Buy 1 get 1 Free	223	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:07	2025-06-11 08:56:07	5	\N	\N
659	Buy 1 get 1 Free	Buy 1 get 1 Free	173	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:08	2025-06-11 08:56:08	5	\N	\N
660	Buy 1 get 1 Free	Buy 1 get 1 Free	233	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:08	2025-06-11 08:56:08	5	\N	\N
661	Buy 1 get 1 Free	Buy 1 get 1 Free	243	1	\N	no	68494493e50cd_1749632147.png	1	2025-06-11 08:56:08	2025-06-11 08:56:08	5	\N	\N
662	teste	teste	234	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 08:59:59	2025-06-11 08:59:59	6	\N	\N
663	teste	teste	185	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 08:59:59	2025-06-11 08:59:59	6	\N	\N
664	teste	teste	244	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 08:59:59	2025-06-11 08:59:59	6	\N	\N
665	teste	teste	214	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:00	2025-06-11 09:00:00	6	\N	\N
666	teste	teste	224	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:00	2025-06-11 09:00:00	6	\N	\N
667	teste	teste	180	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:00	2025-06-11 09:00:00	6	\N	\N
668	teste	teste	51	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:01	2025-06-11 09:00:01	6	\N	\N
669	teste	teste	197	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:01	2025-06-11 09:00:01	6	\N	\N
670	teste	teste	186	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6	\N	\N
671	teste	teste	193	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6	\N	\N
672	teste	teste	50	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6	\N	\N
673	teste	teste	174	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6	\N	\N
674	teste	teste	204	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6	\N	\N
675	teste	teste	53	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6	\N	\N
676	teste	teste	154	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6	\N	\N
677	teste	teste	52	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6	\N	\N
678	teste	teste	49	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6	\N	\N
679	teste	teste	164	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6	\N	\N
680	teste	teste	155	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:02	2025-06-11 09:00:02	6	\N	\N
681	teste	teste	198	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:03	2025-06-11 09:00:03	6	\N	\N
682	teste	teste	187	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:03	2025-06-11 09:00:03	6	\N	\N
683	teste	teste	181	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:03	2025-06-11 09:00:03	6	\N	\N
684	teste	teste	165	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:03	2025-06-11 09:00:03	6	\N	\N
685	teste	teste	194	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:04	2025-06-11 09:00:04	6	\N	\N
686	teste	teste	175	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:04	2025-06-11 09:00:04	6	\N	\N
687	teste	teste	225	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:04	2025-06-11 09:00:04	6	\N	\N
688	teste	teste	205	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:04	2025-06-11 09:00:04	6	\N	\N
689	teste	teste	215	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:05	2025-06-11 09:00:05	6	\N	\N
690	teste	teste	235	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:05	2025-06-11 09:00:05	6	\N	\N
691	teste	teste	206	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:05	2025-06-11 09:00:05	6	\N	\N
692	teste	teste	156	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:05	2025-06-11 09:00:05	6	\N	\N
693	teste	teste	188	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:05	2025-06-11 09:00:05	6	\N	\N
694	teste	teste	166	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:06	2025-06-11 09:00:06	6	\N	\N
695	teste	teste	176	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:06	2025-06-11 09:00:06	6	\N	\N
696	teste	teste	226	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:06	2025-06-11 09:00:06	6	\N	\N
697	teste	teste	195	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:07	2025-06-11 09:00:07	6	\N	\N
698	teste	teste	199	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:07	2025-06-11 09:00:07	6	\N	\N
699	teste	teste	236	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:07	2025-06-11 09:00:07	6	\N	\N
700	teste	teste	216	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:07	2025-06-11 09:00:07	6	\N	\N
701	teste	teste	157	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:08	2025-06-11 09:00:08	6	\N	\N
702	teste	teste	183	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:08	2025-06-11 09:00:08	6	\N	\N
703	teste	teste	177	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:08	2025-06-11 09:00:08	6	\N	\N
704	teste	teste	196	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:08	2025-06-11 09:00:08	6	\N	\N
705	teste	teste	189	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:08	2025-06-11 09:00:08	6	\N	\N
706	teste	teste	237	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:08	2025-06-11 09:00:08	6	\N	\N
707	teste	teste	207	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:09	2025-06-11 09:00:09	6	\N	\N
708	teste	teste	217	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:09	2025-06-11 09:00:09	6	\N	\N
709	teste	teste	227	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:09	2025-06-11 09:00:09	6	\N	\N
710	teste	teste	208	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:09	2025-06-11 09:00:09	6	\N	\N
711	teste	teste	158	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:10	2025-06-11 09:00:10	6	\N	\N
712	teste	teste	190	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:10	2025-06-11 09:00:10	6	\N	\N
713	teste	teste	168	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:10	2025-06-11 09:00:10	6	\N	\N
714	teste	teste	184	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:10	2025-06-11 09:00:10	6	\N	\N
715	teste	teste	178	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:10	2025-06-11 09:00:10	6	\N	\N
716	teste	teste	228	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:10	2025-06-11 09:00:10	6	\N	\N
717	teste	teste	218	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:11	2025-06-11 09:00:11	6	\N	\N
718	teste	teste	238	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:11	2025-06-11 09:00:11	6	\N	\N
719	teste	teste	179	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:11	2025-06-11 09:00:11	6	\N	\N
720	teste	teste	229	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:11	2025-06-11 09:00:11	6	\N	\N
721	teste	teste	169	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:12	2025-06-11 09:00:12	6	\N	\N
722	teste	teste	219	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:12	2025-06-11 09:00:12	6	\N	\N
723	teste	teste	209	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:12	2025-06-11 09:00:12	6	\N	\N
724	teste	teste	191	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:12	2025-06-11 09:00:12	6	\N	\N
725	teste	teste	202	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:13	2025-06-11 09:00:13	6	\N	\N
726	teste	teste	239	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:13	2025-06-11 09:00:13	6	\N	\N
727	teste	teste	170	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:13	2025-06-11 09:00:13	6	\N	\N
728	teste	teste	230	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:14	2025-06-11 09:00:14	6	\N	\N
729	teste	teste	192	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:14	2025-06-11 09:00:14	6	\N	\N
730	teste	teste	203	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:14	2025-06-11 09:00:14	6	\N	\N
731	teste	teste	220	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:14	2025-06-11 09:00:14	6	\N	\N
732	teste	teste	210	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:15	2025-06-11 09:00:15	6	\N	\N
733	teste	teste	240	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:15	2025-06-11 09:00:15	6	\N	\N
734	teste	teste	171	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:15	2025-06-11 09:00:15	6	\N	\N
735	teste	teste	161	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:16	2025-06-11 09:00:16	6	\N	\N
736	teste	teste	241	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:16	2025-06-11 09:00:16	6	\N	\N
737	teste	teste	211	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:16	2025-06-11 09:00:16	6	\N	\N
738	teste	teste	231	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:16	2025-06-11 09:00:16	6	\N	\N
739	teste	teste	162	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:17	2025-06-11 09:00:17	6	\N	\N
740	teste	teste	212	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:17	2025-06-11 09:00:17	6	\N	\N
741	teste	teste	172	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:17	2025-06-11 09:00:17	6	\N	\N
742	teste	teste	222	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:17	2025-06-11 09:00:17	6	\N	\N
743	teste	teste	242	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:17	2025-06-11 09:00:17	6	\N	\N
744	teste	teste	213	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:18	2025-06-11 09:00:18	6	\N	\N
745	teste	teste	163	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:18	2025-06-11 09:00:18	6	\N	\N
746	teste	teste	223	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:18	2025-06-11 09:00:18	6	\N	\N
747	teste	teste	173	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:18	2025-06-11 09:00:18	6	\N	\N
748	teste	teste	233	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:18	2025-06-11 09:00:18	6	\N	\N
749	teste	teste	243	1	\N	no	6849458ecfef4_1749632398.png	1	2025-06-11 09:00:24	2025-06-11 09:00:24	6	\N	\N
750	welcome to luquia	Our app is not intended for users under the age of 18. We do not knowingly collect data from children.	262	1	\N	no	6871f7c17af24_1752299457.png	1	2025-07-12 05:50:57	2025-07-12 05:50:57	7	\N	\N
751	Membership 50off	Membership 50off on premium users resubscription	234	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:37	2025-07-12 10:48:37	8	\N	\N
752	Membership 50off	Membership 50off on premium users resubscription	244	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:38	2025-07-12 10:48:38	8	\N	\N
753	Membership 50off	Membership 50off on premium users resubscription	197	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:38	2025-07-12 10:48:38	8	\N	\N
754	Membership 50off	Membership 50off on premium users resubscription	164	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:38	2025-07-12 10:48:38	8	\N	\N
755	Membership 50off	Membership 50off on premium users resubscription	194	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:38	2025-07-12 10:48:38	8	\N	\N
756	Membership 50off	Membership 50off on premium users resubscription	263	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:39	2025-07-12 10:48:39	8	\N	\N
757	Membership 50off	Membership 50off on premium users resubscription	264	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:39	2025-07-12 10:48:39	8	\N	\N
758	Membership 50off	Membership 50off on premium users resubscription	256	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:39	2025-07-12 10:48:39	8	\N	\N
759	Membership 50off	Membership 50off on premium users resubscription	257	1	\N	no	68723d8594f3d_1752317317.png	1	2025-07-12 10:48:40	2025-07-12 10:48:40	8	\N	\N
760	free Standard membership	free Standard membership today only. Join us and search your matches	244	1	\N	no	687242313773b_1752318513.jpg	1	2025-07-12 11:08:33	2025-07-12 11:08:33	9	\N	\N
761	free Standard membership	free Standard membership today only. Join us and search your matches	245	1	\N	no	687242313773b_1752318513.jpg	1	2025-07-12 11:08:34	2025-07-12 11:08:34	9	\N	\N
762	free Standard membership	free Standard membership today only. Join us and search your matches	263	1	\N	no	687242313773b_1752318513.jpg	1	2025-07-12 11:08:34	2025-07-12 11:08:34	9	\N	\N
763	free Standard membership	free Standard membership today only. Join us and search your matches	264	1	\N	no	687242313773b_1752318513.jpg	1	2025-07-12 11:08:34	2025-07-12 11:08:34	9	\N	\N
764	free Standard membership	free Standard membership today only. Join us and search your matches	257	1	\N	no	687242313773b_1752318513.jpg	1	2025-07-12 11:08:35	2025-07-12 11:08:35	9	\N	\N
765	50off on subscription	50off on subscription. beome a premium member	267	1	\N	no	6873702ac9f74_1752395818.png	1	2025-07-13 08:36:58	2025-07-13 08:36:58	10	\N	\N
766	50 off on premium subscription	50 off on premium subscription. become a member today	262	1	\N	no	6873708d5003a_1752395917.png	1	2025-07-13 08:38:37	2025-07-13 08:38:37	11	\N	\N
767	first user 40off	first user 40off	262	1	\N	no	687370ce5cb3b_1752395982.jpg	1	2025-07-13 08:39:42	2025-07-13 08:39:42	12	\N	\N
768	new test	new test	260	1	\N	no	68738b6b751e1_1752402795.png	1	2025-07-13 10:33:15	2025-07-13 10:33:15	13	\N	\N
769	new test	new test	262	1	\N	no	68738b6b751e1_1752402795.png	1	2025-07-13 10:33:16	2025-07-13 10:33:16	13	\N	\N
770	hi	hi	260	1	\N	no	68738be23f36a_1752402914.png	1	2025-07-13 10:35:14	2025-07-13 10:35:14	14	\N	\N
771	hi	hi	262	1	\N	no	68738be23f36a_1752402914.png	1	2025-07-13 10:35:15	2025-07-13 10:35:15	14	\N	\N
772	Hamid	asfadsfd	265	1	\N	no	6873addb38a33_1752411611.png	1	2025-07-13 13:00:11	2025-07-13 13:00:11	15	\N	\N
773	dsfsdf	dsfsd	265	1	\N	no	6873ae1b6397a_1752411675.png	1	2025-07-13 13:01:15	2025-07-13 13:01:15	16	\N	\N
774	jjdsfsd	dsfksdk	265	1	\N	no	6873ae4641794_1752411718.png	1	2025-07-13 13:01:58	2025-07-13 13:01:58	17	\N	\N
775	hhhhhhhh	jkkkk	265	1	\N	no	6873b29e882a4_1752412830.png	1	2025-07-13 13:20:30	2025-07-13 13:20:30	18	\N	\N
776	hhhhhhjj	jjjjjj	265	1	\N	no	6873b5e728860_1752413671.png	1	2025-07-13 13:34:31	2025-07-13 13:34:31	19	\N	\N
777	50off on premium subscription	50off on premium subscription	274	1	\N	no	687894012e655_1752732673.png	1	2025-07-17 06:11:13	2025-07-17 06:11:13	20	\N	\N
778	50off on premium subscription	50off on premium subscription	273	1	\N	no	687894012e655_1752732673.png	1	2025-07-17 06:11:14	2025-07-17 06:11:14	20	\N	\N
779	dsadsa	sddsa	283	1	\N	no	689dee0e89143_1755180558.jpeg	1	2025-08-14 14:09:18	2025-08-14 14:09:18	21	\N	\N
780	hi	hi	283	1	\N	no	689dee5adf7c9_1755180634.png	1	2025-08-14 14:10:35	2025-08-14 14:10:35	22	\N	\N
781	test notifications	إشعارات الاختبار	257	1	\N	no	695fa7ebc947a_1767876587.png	1	2026-01-08 12:49:47	2026-01-08 12:49:47	23	إشعارات الاختبار	test notifications
782	test notifications	إشعارات الاختبار	229	1	\N	no	695fa7ebc947a_1767876587.png	1	2026-01-08 12:49:49	2026-01-08 12:49:49	23	إشعارات الاختبار	test notifications
783	test notifications	إشعارات الاختبار	337	1	\N	no	695fa7ebc947a_1767876587.png	1	2026-01-08 12:49:49	2026-01-08 12:49:49	23	إشعارات الاختبار	test notifications
\.


--
-- Data for Name: packages; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.packages (id, name, price, status, created_at, updated_at, deleted_at) FROM stdin;
8	Susan Miranda	12	1	2024-12-07 03:32:13	2024-12-07 03:32:13	\N
9	Quincy Nixon	12	0	2024-12-07 03:32:39	2024-12-07 03:32:39	\N
10	Ariel Newton	12	1	2024-12-07 03:35:15	2024-12-07 03:35:15	\N
11	Beatrice Delgado	12	1	2024-12-07 03:35:30	2024-12-07 03:35:30	\N
12	Michael Benson	123	0	2024-12-07 03:35:49	2024-12-07 03:35:49	\N
13	Amir Pittman	67	0	2024-12-07 03:36:04	2024-12-07 03:36:04	\N
14	Test Package	50	0	2024-12-07 15:55:36	2024-12-07 17:56:39	\N
15	Wing Tucker	25	0	2024-12-07 17:57:28	2024-12-07 20:45:17	\N
16	Raju	35	1	2024-12-07 21:25:17	2024-12-07 21:10:03	\N
17	Duncan Colon	45	1	2024-12-07 17:25:54	2024-12-07 17:25:54	\N
18	Wynne Bishop	11111	1	2024-12-07 17:26:17	2024-12-07 17:26:17	\N
19	Malik Stanley	12	0	2024-12-07 18:24:56	2024-12-07 20:45:30	\N
20	Sade Cotton	12	1	2024-12-07 18:25:50	2024-12-07 22:25:50	\N
21	Madonna Tyler	12	0	2024-12-07 18:27:28	2024-12-07 22:27:28	\N
22	Christopher Rowland	12	1	2024-12-07 18:28:41	2024-12-07 20:30:00	\N
23	Neville Kennedy	122	1	2024-12-07 18:30:00	2024-12-16 13:52:11	\N
24	Drew Hoffman	12	1	2024-12-07 18:33:52	2024-12-07 22:33:52	\N
25	April Foster	12	1	2024-12-07 18:34:39	2024-12-07 18:34:39	\N
26	Craig Caldwell	2	1	2024-12-07 19:35:53	2024-12-12 06:49:19	\N
27	Test1q	20	1	2024-12-17 21:01:37	2024-12-19 21:24:31	\N
\.


--
-- Data for Name: packages_addons; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.packages_addons (id, package_id, title, deleted_at, created_at, updated_at) FROM stdin;
3	3	Distinctio Ut qui q	\N	2024-12-05 21:31:38	2024-12-05 21:31:38
4	3	Optio elit id et n	\N	2024-12-05 21:31:38	2024-12-05 21:31:38
5	3	Possimus est amet	\N	2024-12-05 21:31:38	2024-12-05 21:31:38
6	3	Omnis veniam enim a	\N	2024-12-05 21:31:38	2024-12-05 21:31:38
7	3	Quo quia tempora quo	\N	2024-12-05 21:31:38	2024-12-05 21:31:38
8	3	Illo sit nisi animi	\N	2024-12-05 21:31:38	2024-12-05 21:31:38
9	4	Reprehenderit amet	\N	2024-12-05 21:35:25	2024-12-05 21:35:25
10	5	Cumque libero sit v	\N	2024-12-05 21:58:52	2024-12-05 21:58:52
11	6	Ex enim ducimus vol	\N	2024-12-05 22:09:23	2024-12-05 22:09:23
12	7	Consequatur distinct	\N	2024-12-05 22:09:39	2024-12-05 22:09:39
13	8	Aut officiis quos la	\N	2024-12-07 03:32:13	2024-12-07 03:32:13
14	8	Ad enim nostrud even	\N	2024-12-07 03:32:13	2024-12-07 03:32:13
15	9	Ratione aut labore o	\N	2024-12-07 03:32:39	2024-12-07 03:32:39
16	10	Cupiditate perspicia	\N	2024-12-07 03:35:15	2024-12-07 03:35:15
17	11	Labore doloribus inc	\N	2024-12-07 03:35:30	2024-12-07 03:35:30
18	12	Non qui pariatur Eu	\N	2024-12-07 03:35:49	2024-12-07 03:35:49
19	13	Accusamus repellendu	\N	2024-12-07 03:36:04	2024-12-07 03:36:04
21	14	Addon Info 2	\N	2024-12-07 15:55:36	2024-12-07 17:50:20
22	14	Addon Info 3	\N	2024-12-07 15:55:36	2024-12-07 17:50:20
23	14	Addon Info 4	\N	2024-12-07 15:55:36	2024-12-07 17:50:20
25	14	new 2	\N	2024-12-07 17:50:20	2024-12-07 17:55:57
26	14	new 3	\N	2024-12-07 17:50:20	2024-12-07 17:55:57
27	14	new 4	\N	2024-12-07 17:50:20	2024-12-07 17:55:57
34	15	New 4	\N	2024-12-07 18:57:37	2024-12-07 18:57:37
35	16	Omnis est nihil quo	\N	2024-12-07 21:25:17	2024-12-07 21:25:17
36	17	gdfgdfgdf	\N	2024-12-07 17:25:54	2024-12-07 21:04:29
37	18	Reiciendis suscipit	\N	2024-12-07 17:26:17	2024-12-07 17:26:17
38	19	Velit earum quia aut	\N	2024-12-07 22:24:56	2024-12-07 22:24:56
39	20	Dicta aut totam nisi	\N	2024-12-07 22:25:50	2024-12-07 22:25:50
40	21	Aliquip necessitatib	\N	2024-12-07 22:27:28	2024-12-07 22:27:28
41	22	In esse facere quae	\N	2024-12-07 18:28:41	2024-12-07 18:28:41
42	23	Ad provident non en	\N	2024-12-07 18:30:00	2024-12-07 18:30:00
43	24	Voluptas quaerat ut	\N	2024-12-07 22:33:52	2024-12-07 22:33:52
44	25	Ad temporibus possim	\N	2024-12-07 18:34:39	2024-12-07 18:34:39
45	26	Ullam aliquid beatae	\N	2024-12-07 19:35:53	2024-12-07 19:35:53
46	16	newwwwwwwwwwww	\N	2024-12-07 21:09:35	2024-12-07 21:09:35
47	16	Rajuuuuuuuuuuuu	\N	2024-12-07 21:10:03	2024-12-07 21:10:03
48	16	bfd	\N	2024-12-07 21:10:59	2024-12-07 21:10:59
79	27	test	\N	2024-12-17 21:01:37	2024-12-17 21:01:37
\.


--
-- Data for Name: parent_approvals; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.parent_approvals (id, user_id, name, email, token, status, approved_at, rejected_at, created_at, updated_at, gardien_phone_dial_code, gardien_phone_number) FROM stdin;
1	178	Zahid	mudasserzahid48+14@gmail.com	617b24dd66eafbe0	1	2025-05-27 12:47:00	\N	2025-05-27 12:45:54	2025-05-27 12:47:00	\N	\N
2	179	Abinash	abi@gmail.com	535d0f0fd53c974a	1	2025-05-27 14:33:56	\N	2025-05-27 13:25:00	2025-05-27 14:33:56	\N	\N
3	180	Patent	razahamid43@gmail.com	21fc1ea75400bb71	0	\N	\N	2025-05-27 17:39:48	2025-05-27 17:39:48	\N	\N
4	181	Iqbal	razahamid34@gmail.com	d8b5bd3db2a30d64	1	2025-05-27 18:18:57	\N	2025-05-27 18:16:14	2025-05-27 18:18:57	\N	\N
5	182	Ahmed Khan	hibadxba@hotmail.com	24d437747c3b177d	0	\N	\N	2025-05-28 05:04:53	2025-05-28 05:04:53	\N	\N
6	183	Anil	anil@dxbusinessgroup.com	03db9cc2ac0f4b28	0	\N	\N	2025-05-28 06:09:33	2025-05-28 06:09:33	\N	\N
10	189	Hamid	razahamid34@gmail.com	56868306f41081b1	1	2025-05-28 17:41:19	\N	2025-05-28 17:40:24	2025-05-28 17:41:19	\N	\N
11	192	Hamid	razahamid34@gmail.com	fe0d40f71c87c889	1	2025-05-28 17:53:52	\N	2025-05-28 17:53:29	2025-05-28 17:53:52	\N	\N
12	193	Christopher Columbus	hibadxba@hotmail.com	e19c1059373419ab	1	2025-05-29 07:20:15	\N	2025-05-29 07:14:32	2025-05-29 07:20:15	\N	\N
13	198	Hamid Raza	razahamid34@gmail.com	e2a778e54c968f3e	0	\N	\N	2025-05-29 17:29:40	2025-05-29 17:29:40	\N	\N
14	199	Hamid	razahamid34@gmail.com	e61a61b48b670478	0	\N	\N	2025-05-30 10:52:26	2025-05-30 10:52:26	\N	\N
15	199	Hamid	razahamid34@gmail.com	972f9063cbe670c7	0	\N	\N	2025-05-30 11:05:16	2025-05-30 11:05:16	\N	\N
16	199	Hamid	razahamid34@gmail.com	e71afb86c3a84ccf	0	\N	\N	2025-05-30 11:28:35	2025-05-30 11:28:35	\N	\N
17	201	Malik Sufyan	ajeshkumarcd@gmail.com	03888e3aff229682	0	\N	\N	2025-05-30 11:35:24	2025-05-30 11:35:24	\N	\N
18	201	Malik Sufyan	ajeshkumarcd@gmail.com	de07c7d22796ac00	0	\N	\N	2025-05-30 11:35:44	2025-05-30 11:35:44	\N	\N
19	201	Malik Sufyan	ajeshkumarcd@gmail.com	5237ce823be0d7f9	0	\N	\N	2025-05-30 11:37:03	2025-05-30 11:37:03	\N	\N
20	211	Hamid	razahamid34@gmail.com	5f8e6ece83ebbd48	1	2025-05-31 16:45:30	\N	2025-05-31 16:43:19	2025-05-31 16:45:30	\N	\N
21	213	Sara parent	anil@dxbusinessgroup.com	2efc091e2d7d2c57	2	\N	2025-06-03 03:09:41	2025-06-03 03:07:35	2025-06-03 03:09:41	\N	\N
22	214	Sara parents	anil@dxbusinessgroup.com	2ccf58e848f8d152	1	2025-06-03 03:22:45	\N	2025-06-03 03:22:21	2025-06-03 03:22:45	\N	\N
23	216	Ahmed Khan	hibaejaz97+4@gmail.com	fd310f74acb9eb7b	1	2025-06-03 08:36:23	\N	2025-06-03 08:34:59	2025-06-03 08:36:23	\N	\N
24	219	Sara mother	anil@dxbusinessgroup.com	40e43df8b382c3a5	1	2025-06-04 06:58:23	\N	2025-06-04 06:49:44	2025-06-04 06:58:23	\N	\N
25	220	Hamid	razahamid34@gmail.com	29650139cb65cfe9	2	\N	2025-06-04 07:09:48	2025-06-04 07:08:35	2025-06-04 07:09:48	\N	\N
26	221	Mk Khan	hibaejaz97+6@gmail.com	6a50f229315ef168	2	\N	2025-06-04 07:23:51	2025-06-04 07:22:30	2025-06-04 07:23:51	\N	\N
27	222	Zahid	mudasserzahid48@gmail.com	527aad31fd8367ee	1	2025-06-04 07:40:42	\N	2025-06-04 07:39:21	2025-06-04 07:40:42	\N	\N
28	223	MK Khan	hibaejaz97+6@gmail.com	68390ceed3237c42	1	2025-06-04 07:40:55	\N	2025-06-04 07:40:31	2025-06-04 07:40:55	\N	\N
29	224	Hamid	razahamid34@gmail.com	f37e058ff1be9ce9	1	2025-06-04 07:58:15	\N	2025-06-04 07:57:51	2025-06-04 07:58:15	\N	\N
30	225	Khan	hibaejaz97+8@gmail.com	5044fcb191d5ae0d	2	\N	2025-06-04 08:24:13	2025-06-04 08:23:25	2025-06-04 08:24:13	\N	\N
31	227	Hamid	razahamid34@gmail.com	b5dc4cdee73f3999	1	2025-06-04 16:56:03	\N	2025-06-04 16:55:17	2025-06-04 16:56:03	\N	\N
32	228	Farroq Ahmed	hibaejaz97+9@gmail.com	2d1c31943bdbd23a	2	\N	2025-06-05 06:23:29	2025-06-05 06:22:40	2025-06-05 06:23:29	\N	\N
33	229	Sheikh Shah	hibaejaz97+11@gmail.com	5a1ddaefd6b4a7dc	1	2025-06-05 06:26:40	\N	2025-06-05 06:26:13	2025-06-05 06:26:40	\N	\N
34	231	Mohammed	anil@dxbusinessgroup.com	4a056a1ff7b64df4	1	2025-06-05 07:48:49	\N	2025-06-05 07:46:34	2025-06-05 07:48:49	\N	\N
35	232	Hamid	razahamid34@gmail.com	8a671d983320f603	1	2025-06-05 08:07:24	\N	2025-06-05 08:07:00	2025-06-05 08:07:24	\N	\N
36	233	Salma parent	anil@dxbusinessgroup.com	57ec87218fa9bf5c	1	2025-06-05 08:56:35	\N	2025-06-05 08:55:23	2025-06-05 08:56:35	\N	\N
37	234	Sheikh Sahab	hibaejaz97+12@gmail.com	1e76cd04d65b9de8	1	2025-06-05 09:06:49	\N	2025-06-05 09:04:38	2025-06-05 09:06:49	\N	\N
38	243	Alam Khan	hibaejaz97+13@gmail.com	5e321c923877738d	1	2025-06-09 09:17:12	\N	2025-06-09 09:15:38	2025-06-09 09:17:12	\N	\N
39	244	Yusuf Zai pathan	hibaejaz97+15@gmail.com	66bd124d5a4ca9ab	1	2025-06-10 09:21:57	\N	2025-06-10 09:21:00	2025-06-10 09:21:57	\N	\N
40	246	Hala	hibaejaz97+18@gmail.com	b57afbcf32d1fd2f	1	2025-06-11 09:58:55	\N	2025-06-11 09:56:59	2025-06-11 09:58:55	\N	\N
41	256	Anil	anil@dxbusinessgroup.com	f4a0c6249d864a1c	0	\N	\N	2025-07-11 12:03:46	2025-07-11 12:03:46	\N	\N
42	257	Tariq Mehmood	hibaejaz97+16@gmail.com	3b447fb977771d6b	0	\N	\N	2025-07-11 13:38:08	2025-07-11 13:38:08	\N	\N
43	260	Hamid hajaj	razahamid34+102@gmail.com	f8081d1493b4563f	1	2025-07-12 05:20:13	\N	2025-07-11 18:17:24	2025-07-12 05:20:13	\N	\N
44	266	Hamjsjsjs	razahamid34@gmail.com	d279e358a628b8e1	1	2025-07-13 07:27:17	\N	2025-07-13 07:26:45	2025-07-13 07:27:17	\N	\N
45	273	Hashmi Ispaghol	hibaejaz97+25@gmail.com	5d394262cc41c1c9	1	2025-07-16 07:26:41	\N	2025-07-16 07:19:40	2025-07-16 07:26:41	\N	\N
46	277	Halo	hibaejaz97+28@gmail.com	465d993912c8ce46	1	2025-07-17 07:59:16	\N	2025-07-17 07:58:34	2025-07-17 07:59:16	\N	\N
48	281	Maryam	info@luqia.ae	948866e57b6269d9	1	2025-08-14 10:43:48	\N	2025-08-14 10:42:04	2025-08-14 10:43:48	\N	\N
49	282	Sos	info@ellevest.ae	974e009afa90a040	0	\N	\N	2025-08-14 12:47:23	2025-08-14 12:47:23	\N	\N
50	286	Hamid Raza	razahamid34@gmail.com	0eb37dd600d86d6a	1	2025-08-18 11:31:36	\N	2025-08-18 11:30:54	2025-08-18 11:31:36	\N	\N
51	288	Singh Khan	hibaejaz97+29@gmail.com	b0337bc2865e645b	1	2025-08-19 07:27:42	\N	2025-08-19 07:26:53	2025-08-19 07:27:42	\N	\N
52	289	Hamid	razahamid34@gmail.com	d214a9de20be55cb	1	2025-08-19 07:55:06	\N	2025-08-19 07:54:41	2025-08-19 07:55:06	\N	\N
47	279	Ejaz Akhter Latif	hibaejaz97+26@gmail.com	907a322035f1a924	1	2025-08-19 08:20:53	\N	2025-07-21 07:04:55	2025-08-19 08:20:53	\N	\N
53	299	Gulshan	hibaejaz97+45@gmail.com	c10ca8b701e1895c	1	2025-11-10 12:41:52	\N	2025-11-10 12:40:50	2025-11-10 12:41:52	\N	\N
54	300	Sooraj	sooraj.a2solution@gmail.com	ca5162dc3c1ac19f	1	2025-11-11 06:20:50	\N	2025-11-11 05:55:00	2025-11-11 06:20:50	\N	\N
55	301	Goraya		2e68c818e7c5e254	0	\N	\N	2025-11-14 06:40:25	2025-11-14 06:40:25	\N	\N
56	301	Goraya		06045475013529cc	0	\N	\N	2025-11-14 06:40:32	2025-11-14 06:40:32	\N	\N
57	303	Wasi Khan		564c5c69bd4083a4	1	2025-11-15 08:45:16	\N	2025-11-15 08:44:32	2025-11-15 08:45:16	\N	\N
58	311	Ahmed Sami Khan		6c8d79f5f2ec2933	1	2025-11-18 09:34:43	\N	2025-11-18 09:32:50	2025-11-18 09:34:43	\N	\N
59	309	Dsxd		1aad445b5d6e3f4b	0	\N	\N	2025-11-18 10:14:29	2025-11-18 10:14:29	\N	\N
60	314	Fat mama		38f79c6745691cdd	0	\N	\N	2025-11-27 18:19:35	2025-11-27 18:19:35	\N	\N
61	316	Marwa ibrahum		cebced045363ddd5	1	2025-12-11 15:50:42	\N	2025-12-11 15:47:26	2025-12-11 15:50:42	\N	\N
62	317	حمزة علي ال رحمة		fdfb06e57b8233a5	1	2025-12-11 15:59:18	\N	2025-12-11 15:58:44	2025-12-11 15:59:18	\N	\N
63	319	علي اسامه		9dfca29acafeca03	1	2025-12-15 17:14:59	\N	2025-12-15 17:14:02	2025-12-15 17:14:59	\N	\N
64	322	Hamid		adf24fac0938e11e	0	\N	\N	2025-12-22 15:58:14	2025-12-22 15:58:14	\N	\N
65	327	Asad Khan		877ce93a94248d47	0	\N	\N	2025-12-26 11:47:30	2025-12-26 11:47:30	\N	\N
66	328	Asad Khan		e2e9a6e5df3cbc4c	0	\N	\N	2025-12-26 12:21:48	2025-12-26 12:21:48	\N	\N
67	329			6c7d5f939a3a299f	0	\N	\N	2025-12-29 10:30:23	2025-12-29 10:30:23	\N	\N
68	332	Aatif Khan		08b6686e138446d6	1	2025-12-29 17:00:06	\N	2025-12-29 16:57:57	2025-12-29 17:00:06	\N	\N
69	334	Sami khan		714c8e4ce3700b81	1	2025-12-30 08:59:25	\N	2025-12-30 08:57:40	2025-12-30 08:59:25	\N	\N
70	335	Sumayya		ba77966bb1dd2ed7	0	\N	\N	2025-12-30 10:15:06	2025-12-30 10:15:06	\N	\N
71	336	Mirza Asad		dbb5c34b54de5453	1	2025-12-31 06:46:02	\N	2025-12-31 06:45:25	2025-12-31 06:46:02	\N	\N
72	340	Ali alrahma		8c5943427ef5036f	1	2026-01-01 06:33:51	\N	2026-01-01 06:33:15	2026-01-01 06:33:51	\N	\N
\.


--
-- Data for Name: parent_categories; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.parent_categories (id, name, name_ar, status, created_at, updated_at, icon, sort_order) FROM stdin;
1	Cars	سيارات و االليات	1	2025-03-20 15:03:14	2025-04-08 08:06:10	3XsGczmV0bPIJBchBP2rZ3UbYy6Ibx2tYaFrSbIi.png	0
3	Properties	عقارات	1	2025-03-24 11:02:15	2025-04-08 08:07:04	68H9zRj2qD7R710bmnhuksOUWucfZ5J5beJp1eAX.jpg	0
8	Business & Opportunities	فرص و أعمال	1	2025-04-08 06:07:32	2025-04-08 08:07:28	q1IfyK7uPCrJCgub1mG6Nthm1hTgWf3uRMBUA7zp.jpg	0
4	Vacation Offers	عروض االجازة و السياحة	1	2025-03-24 12:03:27	2025-04-08 08:08:30	mAto7kzFGaIbpQnKKwqp4QD5INUNbBePRMx4e0Da.jpg	0
5	Jobs	وظائف	1	2025-04-08 06:02:25	2025-04-08 08:08:52	qGgvIQOooohBRMcI0oVUKSxcUr9YJmBZEcx80sbM.jpg	0
7	Promotions & Discounts	عروض الترويج والتخفيضات	1	2025-04-08 06:05:10	2025-04-08 08:09:29	ta9fx8v3gHGoBWA6gnXvwblUHaNXjcz7pxNh8SyL.jpg	0
6	Services	عروض المطاعم والوجبات	1	2025-04-08 06:04:43	2025-04-08 08:11:46	SR1N0V1slg999YKns53g2I0OxWWK8RSwUgoonP9G.jpg	0
2	Wedding & Event Halls	صاالت االفراح والمناسبات	1	2025-03-20 15:03:45	2025-04-08 08:12:14	uAAMSc7E06PuGRSorOIv2Vxj79Npi3NouKZ46Cv6.jpg	0
10	Restaurant and meal offers	خدمات	1	2025-04-08 08:04:55	2025-04-08 08:14:02	Z5s7Mlk14gHFJ26knZU810w7eOkhlGRKkTCqX0Sr.jpg	0
9	Used Items	سوق المستعمل	1	2025-04-08 06:08:10	2025-04-08 08:14:20	2DAppLrKZ3CaCnfuc0c87YBTLGRRoWkWcMOlN1Rw.jpg	0
\.


--
-- Data for Name: password_reset_tokens; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.password_reset_tokens (email, token, created_at) FROM stdin;
\.


--
-- Data for Name: payment_reports; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.payment_reports (id, transaction_id, payment_status, user_id, ref_id, amount, method_type, vat, wallet_amount_used, created_at, updated_at, ad_id, currency) FROM stdin;
1	416803a42c804ba1745069100	Pending	41	pi_3RFbOCBjsMxFtgBe0sW8jpFr	100.00	1	0.00	0.00	\N	\N	87	\N
2	416803a448121e11745069128	Pending	41	pi_3RFbOdBjsMxFtgBe1oeBehn6	100.00	4	0.00	0.00	\N	\N	87	\N
3	416803a965336cd1745070437	Success	41	pi_3RFbjlBjsMxFtgBe08XDFQn6	100.00	3	0.00	0.00	\N	2025-04-19 13:47:17	88	\N
4	416803d3dfcd1401745081311	Success	41	pi_3RFeZ9BjsMxFtgBe1GosmPne	100.00	1	0.00	0.00	\N	2025-04-19 16:48:59	89	\N
5	416803d6122f4641745081874	Pending	41	pi_3RFeiEBjsMxFtgBe1TV7E2An	100.00	1	0.00	0.00	\N	\N	90	\N
6	416803d63b649d11745081915	Pending	41	pi_3RFeitBjsMxFtgBe19w6ca1g	100.00	1	0.00	0.00	\N	\N	90	\N
7	416803d65d7f8f51745081949	Success	41	pi_3RFejRBjsMxFtgBe0vSGF4k6	100.00	3	0.00	0.00	\N	2025-04-19 16:59:09	90	\N
8	416803e12ac03ea1745084714	Success	41	pi_3RFfS2BjsMxFtgBe1A8E7AQm	100.00	1	0.00	0.00	\N	2025-04-19 17:45:38	121	\N
9	416803e6c0c1f861745086144	Success	41	pi_3RFfp6BjsMxFtgBe0ZGNwqcT	100.00	1	0.00	0.00	\N	2025-04-19 18:09:05	122	\N
10	416803ea79c613b1745087097	Pending	41	pi_3RFg4TBjsMxFtgBe0AZyNr8I	100.00	1	0.00	0.00	\N	\N	125	\N
11	416803ea836e5a01745087107	Pending	41	pi_3RFg4dBjsMxFtgBe0W6dKoGD	100.00	1	0.00	0.00	\N	\N	125	\N
12	416803eaf4797bf1745087220	Pending	41	pi_3RFg6SBjsMxFtgBe1JXrYZeB	100.00	1	0.00	0.00	\N	\N	125	\N
13	416803ee615f64b1745088097	Pending	41	pi_3RFgKbBjsMxFtgBe1ZhmQKXX	100.00	1	0.00	0.00	\N	\N	129	\N
14	416803ee8f62c4f1745088143	Pending	41	pi_3RFgLLBjsMxFtgBe0jexiP4Q	100.00	1	0.00	0.00	\N	\N	129	\N
15	416803ef91924021745088401	Success	41	pi_3RFgPVBjsMxFtgBe0hgwpBxe	100.00	1	0.00	0.00	\N	2025-04-19 18:47:09	131	\N
16	416803f0756b8651745088629	Success	41	pi_3RFgTBBjsMxFtgBe09QdhQnw	100.00	1	0.00	0.00	\N	2025-04-19 18:50:50	132	\N
17	416803f0b7ca9c51745088695	Success	41	pi_3RFgUFBjsMxFtgBe06SqWIJK	100.00	1	0.00	0.00	\N	2025-04-19 18:51:57	132	\N
18	416803f1e1a62001745088993	Success	41	pi_3RFgZ3BjsMxFtgBe0U9PWfrd	100.00	1	0.00	0.00	\N	2025-04-19 18:56:54	134	\N
19	466807388fdc3cf1745303695	Success	46	pi_3RGaPzBjsMxFtgBe0OXB8lv1	100.00	1	0.00	0.00	\N	2025-04-22 06:35:29	182	\N
20	426807443d7c2da1745306685	Success	42	pi_3RGbCDBjsMxFtgBe0daYW4D3	100.00	1	0.00	0.00	\N	2025-04-22 07:25:30	183	\N
21	476808a35814bdf1745396568	Success	47	pi_3RGyZvBjsMxFtgBe1gP1bOQX	100.00	3	0.00	0.00	\N	2025-04-23 08:22:48	184	\N
22	476808a6e47087d1745397476	Success	47	pi_3RGyoaBjsMxFtgBe0Ih2cBRH	200.00	1	0.00	0.00	\N	2025-04-23 08:38:23	185	\N
23	41680a0151221a81745486161	Success	41	pi_3RHLsyBjsMxFtgBe1bE3tNsT	100.00	3	0.00	0.00	\N	2025-04-24 09:16:01	187	\N
24	41680a016b2c8b01745486187	Success	41	pi_3RHLtPBjsMxFtgBe0GXW9afo	100.00	1	0.00	0.00	\N	2025-04-24 09:16:46	187	\N
25	41680a039f707651745486751	Success	41	pi_3RHM2VBjsMxFtgBe1g8IZyTw	100.00	3	0.00	0.00	\N	2025-04-24 09:25:52	187	\N
26	41680a04235d4a31745486883	Success	35	pi_3RHM4dBjsMxFtgBe1EpItEyC	100.00	3	0.00	0.00	\N	2025-04-24 09:28:03	187	\N
27	157683448ae31abd1748256942	Pending	157	1rtHMQRSh0	100.00	1	0.00	0.00	\N	\N	\N	\N
28	157683449de7fa0b1748257246	Success	157	sgIyrzP0tj	100.00	1	0.00	0.00	\N	2025-05-26 11:00:46	\N	\N
29	15768344a399c5771748257337	Success	157	3Ykz2rLGlq	100.00	1	0.00	0.00	\N	2025-05-26 11:02:18	\N	\N
30	16968354e8fe9d121748323983	Success	169	DblUshueJ5	100.00	1	0.00	0.00	\N	2025-05-27 05:33:04	\N	\N
31	171683553780b96e1748325240	Success	171	3ZGfu0Rmv8	100.00	2	0.00	0.00	\N	2025-05-27 05:54:00	\N	\N
32	175683578e84217f1748334824	Success	175	2enSNjvt3H	100.00	2	0.00	0.00	\N	2025-05-27 08:33:44	\N	\N
33	17668357b7d0e5e51748335485	Success	176	K5lAMBSC12	100.00	2	0.00	0.00	\N	2025-05-27 08:44:45	\N	\N
34	1796835bf2959dd61748352809	Success	179	jASgn3xX0i	100.00	1	0.00	0.00	\N	2025-05-27 13:33:29	\N	\N
35	18268369c9b895ad1748409499	Success	182	YoacdtKb8j	60.00	1	0.00	0.00	\N	2025-05-28 05:18:20	\N	\N
36	1936838095817caf1748502872	Success	193	4uIzEvRLhB	50.00	1	0.00	0.00	\N	2025-05-29 07:14:32	\N	\N
37	194683816354cfba1748506165	Success	194	iP1oRCmruW	200.00	1	0.00	0.00	\N	2025-05-29 08:09:25	\N	\N
38	1956838196cbc9b71748506988	Success	195	pdLaTGZBq0	200.00	1	0.00	0.00	\N	2025-05-29 08:23:09	\N	\N
39	19668381caea861b1748507822	Success	196	y5srYLzlaR	200.00	1	0.00	0.00	\N	2025-05-29 08:37:03	\N	\N
40	19768389889ca2c91748539529	Success	197	Cr7dv2FxgL	200.00	2	0.00	0.00	\N	2025-05-29 17:25:30	\N	\N
41	198683899840dfe01748539780	Success	198	s6JqtyVADc	200.00	2	0.00	0.00	\N	2025-05-29 17:29:40	\N	\N
42	19968398de9a980c1748602345	Success	199	aFAmWehnVJ	200.00	2	0.00	0.00	\N	2025-05-30 10:52:26	\N	\N
43	199683990cdce2201748603085	Success	199	3iM769xOqc	200.00	1	0.00	0.00	\N	2025-05-30 11:05:16	\N	\N
44	19968399455eeb9c1748603989	Success	199	CnqOZkvaeB	200.00	1	0.00	0.00	\N	2025-05-30 11:19:58	\N	\N
45	199683994b4e3eb21748604084	Success	199	0nhiQAKx1f	200.00	1	0.00	0.00	\N	2025-05-30 11:21:31	\N	\N
46	200683995929443e1748604306	Success	200	GkVZIA7nRq	100.00	1	0.00	0.00	\N	2025-05-30 11:25:07	\N	\N
47	1996839963ad14f71748604474	Success	199	fjcEqXuxrS	200.00	1	0.00	0.00	\N	2025-05-30 11:28:00	\N	\N
48	199683996594af9a1748604505	Success	199	9wYzLg1yOE	200.00	1	0.00	0.00	\N	2025-05-30 11:28:35	\N	\N
49	201683997fc7b7761748604924	Success	201	BvQLIRrS3a	200.00	1	0.00	0.00	\N	2025-05-30 11:35:24	\N	\N
50	201683998100a4111748604944	Success	201	6Pp75sw8zK	200.00	1	0.00	0.00	\N	2025-05-30 11:35:44	\N	\N
51	2016839985f25fe11748605023	Success	201	5YNpxOP1Bm	200.00	1	0.00	0.00	\N	2025-05-30 11:37:03	\N	\N
52	2026839a4dfb88461748608223	Success	202	6hntvkgFdb	100.00	1	0.00	0.00	\N	2025-05-30 12:30:24	\N	\N
53	2086839be62e2feb1748614754	Success	208	Cs5Nlfj3eB	100.00	1	0.00	0.00	\N	2025-05-30 14:19:15	\N	\N
54	211683b31a6afd251748709798	Success	211	EqM9JnulvN	200.00	2	0.00	0.00	\N	2025-05-31 16:43:19	\N	\N
55	213683e66f6e23e81748920054	Success	213	Z9pzvyg2O0	200.00	1	0.00	0.00	\N	2025-06-03 03:07:35	\N	\N
56	214683e6a6c749871748920940	Success	214	4odqB6Tywn	200.00	1	0.00	0.00	\N	2025-06-03 03:22:21	\N	\N
57	215683e869e4240b1748928158	Success	215	orFAfDmj63	100.00	1	0.00	0.00	\N	2025-06-03 05:22:38	\N	\N
58	216683eb3b1c744a1748939697	Success	216	KPkfpex8ID	200.00	1	0.00	0.00	\N	2025-06-03 08:34:59	\N	\N
59	219683fec87c743a1749019783	Success	219	VAHUDxs0Si	200.00	1	0.00	0.00	\N	2025-06-04 06:49:44	\N	\N
60	220683ff0f320d931749020915	Success	220	SzRHWfdTcb	200.00	2	0.00	0.00	\N	2025-06-04 07:08:35	\N	\N
61	221683ff4366a2241749021750	Success	221	QiWnYRdTpM	200.00	1	0.00	0.00	\N	2025-06-04 07:22:30	\N	\N
62	223683ff86f3d2411749022831	Success	223	YjBnTcClFK	200.00	1	0.00	0.00	\N	2025-06-04 07:40:31	\N	\N
63	224683ffc7ed05401749023870	Success	224	6rUF7epXjh	200.00	2	0.00	0.00	\N	2025-06-04 07:57:51	\N	\N
64	2256840027d254731749025405	Success	225	yIBa2Yn86D	200.00	1	0.00	0.00	\N	2025-06-04 08:23:25	\N	\N
65	228684137b00257f1749104560	Success	228	AYwyt6eFmW	100.00	1	0.00	0.00	\N	2025-06-05 06:22:40	\N	\N
66	229684138857057f1749104773	Success	229	C4H5Ubqgjh	200.00	1	0.00	0.00	\N	2025-06-05 06:26:13	\N	\N
67	23168414b5a465281749109594	Success	231	exVQi0zlfk	200.00	1	0.00	0.00	\N	2025-06-05 07:46:34	\N	\N
68	23368415b7aa7a011749113722	Success	233	FNePu8MAgT	200.00	1	0.00	0.00	\N	2025-06-05 08:55:23	\N	\N
69	23468415da609ee81749114278	Success	234	oqGfaV0TiX	200.00	1	0.00	0.00	\N	2025-06-05 09:04:38	\N	\N
70	23268416c03d6a181749117955	Success	232	KNr4Fm9Bf1	200.00	2	0.00	0.00	\N	2025-06-05 10:05:56	\N	\N
71	2356841784e9e8ca1749121102	Success	235	K2SPG8szcJ	100.00	2	0.00	0.00	\N	2025-06-05 10:58:23	\N	\N
72	23568417860954301749121120	Success	235	ugmf1AEHNC	120.00	2	0.00	0.00	\N	2025-06-05 10:58:41	\N	\N
73	2356841793b60f491749121339	Success	235	T6LbtAlVN7	100.00	2	0.00	0.00	\N	2025-06-05 11:02:19	\N	\N
74	2356841797c319b81749121404	Success	235	bDmIx45rK8	120.00	2	0.00	0.00	\N	2025-06-05 11:03:24	\N	\N
75	23768418777cab331749124983	Success	237	Y1Bq3PgyUT	200.00	1	0.00	0.00	\N	2025-06-05 12:03:04	\N	\N
76	2376841882fcc5671749125167	Success	237	ivwOIm0x2M	200.00	1	0.00	0.00	\N	2025-06-05 12:06:08	\N	\N
77	2376841885e02ece1749125214	Success	237	iKMU3tWwek	200.00	1	0.00	0.00	\N	2025-06-05 12:06:54	\N	\N
78	238684194861a90d1749128326	Success	238	RGBv9zKue2	200.00	1	0.00	0.00	\N	2025-06-05 12:58:46	\N	\N
79	239684262cb9da1a1749181131	Success	239	2dUI4okshE	200.00	1	0.00	0.00	\N	2025-06-06 03:38:52	\N	\N
80	2406842d49661aba1749210262	Success	240	hGmPovqFpn	120.00	1	0.00	0.00	\N	2025-06-06 11:44:22	\N	\N
81	1926842e43ff34da1749214271	Success	192	WaN7xFQBM0	120.00	2	0.00	0.00	\N	2025-06-06 12:51:12	\N	\N
82	1926842e448d51751749214280	Success	192	JbHqtyR8lA	100.00	2	0.00	0.00	\N	2025-06-06 12:51:21	\N	\N
83	24268442b091bd511749297929	Success	242	muvby9aB3M	100.00	1	0.00	0.00	\N	2025-06-07 12:05:29	\N	\N
84	2436846a63a114e91749460538	Success	243	eT2nOCvfh8	175.00	1	0.00	0.00	\N	2025-06-09 09:15:38	\N	\N
85	2446847f8fbc26451749547259	Success	244	ueP2RmTtSC	175.00	1	0.00	0.00	\N	2025-06-10 09:21:00	\N	\N
86	230684939e4ada0a1749629412	Success	230	rduEW3xDRe	120.00	1	0.00	0.00	\N	2025-06-11 08:10:13	\N	\N
87	23068493a03628b91749629443	Success	230	42AvcEW6HC	180.00	2	0.00	0.00	\N	2025-06-11 08:10:43	\N	\N
88	246684952eae30d81749635818	Success	246	m7jre8MknF	175.00	1	0.00	0.00	\N	2025-06-11 09:56:59	\N	\N
89	245684955b3566521749636531	Success	245	q3nM0P8xGB	350.00	1	0.00	0.00	\N	2025-06-11 10:08:51	\N	\N
90	249685fe9200e9bd1751116064	Success	249	q3rxZhbXoO	350.00	1	0.00	0.00	\N	2025-06-28 13:07:44	\N	\N
91	2526870e5d6e5c0b1752229334	Success	252	nthQpPvRX9	350.00	1	0.00	0.00	\N	2025-07-11 10:22:15	\N	\N
92	2546870f48a1cf7c1752233098	Success	254	tdk07ywzDa	350.00	1	0.00	0.00	\N	2025-07-11 11:24:58	\N	\N
93	2556870f94107a451752234305	Success	255	vCSD8Qe1sh	180.00	1	0.00	0.00	\N	2025-07-11 11:45:05	\N	\N
94	258687123e81cb061752245224	Success	258	E8cbP5UeA4	350.00	1	0.00	0.00	\N	2025-07-11 14:47:04	\N	\N
95	2626871f33d739351752298301	Success	262	FTInBkzi6j	180.00	1	0.00	0.00	\N	2025-07-12 05:31:41	\N	\N
96	26368721efe5df7e1752309502	Success	263	v03GbXkK28	350.00	1	0.00	0.00	\N	2025-07-12 08:38:22	\N	\N
97	264687223132210d1752310547	Success	264	f4N13vHnzX	350.00	1	0.00	0.00	\N	2025-07-12 08:55:47	\N	\N
98	26468722433a65d41752310835	Success	264	q8icfbIQh6	350.00	1	0.00	0.00	\N	2025-07-12 09:00:36	\N	\N
99	2646872249b34d9a1752310939	Success	264	Rw92uKNXAQ	350.00	1	0.00	0.00	\N	2025-07-12 09:02:19	\N	\N
100	267687366f0df5901752393456	Success	267	Cu8lo1Oi5n	350.00	1	0.00	0.00	\N	2025-07-13 07:57:37	\N	\N
101	267687368fcee1751752393980	Success	267	9DC3gBKijm	350.00	1	0.00	0.00	\N	2025-07-13 08:06:21	\N	\N
102	267687369312e5c81752394033	Success	267	s7e6rPNkoj	350.00	4	0.00	0.00	\N	2025-07-13 08:07:13	\N	\N
103	2686873942e83c061752405038	Success	268	orgNSQwsH9	350.00	1	0.00	0.00	\N	2025-07-13 11:10:38	\N	\N
104	2696873bbefc52781752415215	Success	269	OTyFsI42le	180.00	1	0.00	0.00	\N	2025-07-13 14:00:16	\N	\N
105	2706873d217379e01752420887	Success	270	NOslqg5vMI	180.00	1	0.00	0.00	\N	2025-07-13 15:34:47	\N	\N
106	2706873d776ab7c31752422262	Success	270	gAkNcI2KFv	350.00	2	0.00	0.00	\N	2025-07-13 15:57:43	\N	\N
107	2716874152e9943f1752438062	Success	271	CJ7LRUfehd	180.00	1	0.00	0.00	\N	2025-07-13 20:21:03	\N	\N
108	27268741f1facc1f1752440607	Success	272	AGT7fPOCEp	350.00	4	0.00	0.00	\N	2025-07-13 21:03:28	\N	\N
109	270687493a6e1eb61752470438	Success	270	O4tKYQHc5l	350.00	1	0.00	0.00	\N	2025-07-14 05:20:39	\N	\N
110	270687493dfc06941752470495	Success	270	c3m8We0OYE	350.00	1	0.00	0.00	\N	2025-07-14 05:21:36	\N	\N
111	270687494600be5b1752470624	Success	270	rVk9jwy7MF	350.00	1	0.00	0.00	\N	2025-07-14 05:23:44	\N	\N
112	2736877528ca95851752650380	Success	273	mP9vxSNeD7	350.00	1	0.00	0.00	\N	2025-07-16 07:19:40	\N	\N
113	2746877561ce93ce1752651292	Success	274	C1S8oZGcwl	350.00	1	0.00	0.00	\N	2025-07-16 07:34:53	\N	\N
114	27568776aca38a021752656586	Success	275	Gc2d7vZV5i	340.00	1	0.00	0.00	\N	2025-07-16 09:03:06	\N	\N
115	2766877c173158061752678771	Success	276	9QNZTWCOM4	340.00	1	0.00	0.00	\N	2025-07-16 15:12:51	\N	\N
116	2776878ad2a1134d1752739114	Success	277	AFHpB4Kl8J	340.00	1	0.00	0.00	\N	2025-07-17 07:58:34	\N	\N
117	2606878c1a5db8cd1752744357	Success	260	wNnDGrLOKC	180.00	1	0.00	0.00	\N	2025-07-17 09:25:58	\N	\N
118	2606878c1ad049e41752744365	Success	260	1jalt2YdfZ	120.00	1	0.00	0.00	\N	2025-07-17 09:26:05	\N	\N
119	2606878c1b38a1c01752744371	Success	260	b5o8lRKZVq	500.00	1	0.00	0.00	\N	2025-07-17 09:26:11	\N	\N
120	279687de6972b3c21753081495	Success	279	t7wNTcRZPK	500.00	1	0.00	0.00	\N	2025-07-21 07:04:55	\N	\N
121	29068ac991ec2fa31756141854	Success	290	KhzlmJIT8H	180.00	4	0.00	0.00	\N	2025-08-25 17:10:54	\N	\N
122	24868d297d682d071758631894	Success	248	E97vrcyFaf	180.00	4	0.00	0.00	\N	2025-09-23 12:51:34	\N	\N
123	2996911dd521c2981762778450	Success	299	qXvF7rkwE8	180.00	1	0.00	0.00	\N	2025-11-10 12:40:50	\N	\N
124	3006913248913d5a1762862217	Success	300	IodYPF7lNM	300.00	2	0.00	0.00	\N	2025-11-11 11:56:57	\N	\N
125	3006913271a231d31762862874	Success	300	15gvUzZLbR	300.00	2	0.00	0.00	\N	2025-11-11 12:07:54	\N	\N
126	3006913275e531a11762862942	Success	300	KtrcsTRh3g	300.00	2	0.00	0.00	\N	2025-11-11 12:09:02	\N	\N
127	3026916e6516cbb21763108433	Success	302	ZhJxwtTM4y	300.00	2	0.00	0.00	\N	2025-11-14 08:20:35	\N	\N
128	303691841cd556e41763197389	Success	303	nt7SGQ5ZqK	300.00	1	0.00	0.00	\N	2025-11-15 09:03:09	\N	\N
129	192691861e2281111763205602	Success	192	6wfHAqmGRv	300.00	1	0.00	0.00	\N	2025-11-15 11:20:02	\N	\N
130	210691af08c48f2c1763373196	Success	210	pi_3SUP7YBjsMxFtgBe1szTCE9S	300.00	2	0.00	0.00	\N	2025-11-17 09:53:16	\N	\N
131	210691af1c5a9a0c1763373509	Pending	210	pi_3SUPCbBjsMxFtgBe1EnAi1IE	300.00	1	0.00	0.00	\N	\N	\N	\N
132	210691af3100f4af1763373840	Pending	210	pi_3SUPHvBjsMxFtgBe1KJvzaRl	300.00	1	0.00	0.00	\N	\N	\N	\N
133	210691af5987a15a1763374488	Pending	210	pi_3SUPSOBjsMxFtgBe0t3jTRGQ_secret_MMsmi4OjEpZ50VoIcRQjMd6X0	300.00	1	0.00	0.00	\N	\N	\N	\N
134	305691b2c0bd8af71763388427	Success	305	pi_3SUT5DBjsMxFtgBe0PIUiPAg_secret_ANl54ENF71aTPi8OpaZwY2VFK	300.00	2	0.00	0.00	\N	2025-11-17 14:07:08	\N	\N
135	306691b308f0bcc21763389583	Success	306	pi_3SUTNqBjsMxFtgBe1elRiyoE_secret_jDDRUggzBFgJoON6tBqpNkVXA	300.00	5	0.00	0.00	\N	2025-11-17 14:26:42	\N	\N
136	303691b3c6f56daf1763392623	Success	303	pi_3SUUAtBjsMxFtgBe0b7KDa54_secret_JA31H9W1gBPMkyxIyHIJ6pMWB	300.00	1	0.00	0.00	\N	2025-11-17 15:17:21	\N	\N
137	307691c0d1b755561763446043	Pending	307	pi_3SUi4VBjsMxFtgBe0QJrHhtq_secret_2y3znHWtgxurpS2hhuMNLdiOV	300.00	1	0.00	0.00	\N	\N	\N	\N
138	307691c0d3b8b5451763446075	Pending	307	pi_3SUi51BjsMxFtgBe1hcGtGsC_secret_JPTAhjC1Xqbdq2x1oRrUfCbuP	300.00	1	0.00	0.00	\N	\N	\N	\N
139	307691c0e612ff8e1763446369	Pending	307	pi_3SUi9kBjsMxFtgBe1ocfG8xF_secret_koWuSZtLyd5UrW5GwnutGKyzd	300.00	1	0.00	0.00	\N	\N	\N	\N
140	307691c10ce064971763446990	Pending	307	pi_3SUiJlBjsMxFtgBe0UMMyvIh_secret_bqIRDlGarXdAZGeCYwV1TmsUb	300.00	1	0.00	0.00	\N	\N	\N	\N
141	307691c1116598181763447062	Pending	307	pi_3SUiKwBjsMxFtgBe1qMoYUgt_secret_NifK7sDcbI5nKXBcKkcx9fQdc	300.00	1	0.00	0.00	\N	\N	\N	\N
142	307691c11dac52e91763447258	Success	307	pi_3SUiO6BjsMxFtgBe1kAhhtMU_secret_WagduLnABLpFiWrX6NcQNuIto	300.00	4	0.00	0.00	\N	2025-11-18 06:27:39	\N	\N
143	307691c15b0e0d071763448240	Pending	307	pi_3SUidwBjsMxFtgBe1emmzqHw_secret_1ISprrgltpF5qZtT9vqiz4O8f	300.00	4	0.00	0.00	\N	\N	\N	\N
144	307691c15bed4a541763448254	Pending	307	pi_3SUieABjsMxFtgBe1XBY1zKG_secret_1FgL9YIXRHIhNOoDjtbdThDQj	300.00	1	0.00	0.00	\N	\N	\N	\N
145	307691c15d3043ad1763448275	Pending	307	pi_3SUieUBjsMxFtgBe0RRQ4R0j_secret_WnZ52DXYV1ijDsUS9gRabMq3F	300.00	4	0.00	0.00	\N	\N	\N	\N
146	307691c15ec1346d1763448300	Success	307	pi_3SUietBjsMxFtgBe0Ix1lG4f_secret_0v0UWJUoR8Zz6eDFi48SL4Lo8	300.00	1	0.00	0.00	\N	2025-11-18 06:45:16	\N	\N
147	3206940433e673ea1765819198	Pending	320	pi_3SefRCBjsMxFtgBe07t1Jmls_secret_ieSfItWhbThYxan1R9JNttWrl	300.00	4	0.00	0.00	\N	\N	\N	\N
148	341695d2acb4e6e81767713483	Pending	341	pi_3SmcEBBjsMxFtgBe1xSXxeSx_secret_iAtXcWWT1cRFaEWSGAl59xocS	300.00	4	0.00	0.00	\N	\N	\N	\N
149	341695d2acfbd50f1767713487	Pending	341	pi_3SmcEFBjsMxFtgBe04brEgnx_secret_qssz70JNk13dXIZddCVSjA0VN	300.00	4	0.00	0.00	\N	\N	\N	\N
\.


--
-- Data for Name: permissions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.permissions (id, name, guard_name, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: personal_access_tokens; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.personal_access_tokens (id, tokenable_type, tokenable_id, name, token, abilities, last_used_at, expires_at, created_at, updated_at) FROM stdin;
3	App\\Models\\User	38	Personal Access Token	3cb842ae875cfa4a56a4a9d184b1a7c4293c34c4ccda17c9287d7de72f2c5531	["*"]	\N	\N	2025-04-10 10:21:06	2025-04-10 10:21:06
4	App\\Models\\User	38	Personal Access Token	2574379c0f946be1617958cb8588cc9d27eabf01d554a425c7e91b3bcace25e4	["*"]	\N	\N	2025-04-10 10:21:06	2025-04-10 10:21:06
5	App\\Models\\User	39	Personal Access Token	8cc6b6c55e4c6a86b3c8f08c33be70f42e2fad5fa50e32334e9b206f021511b2	["*"]	\N	\N	2025-04-10 10:36:22	2025-04-10 10:36:22
6	App\\Models\\User	39	Personal Access Token	db8ab694dd7a7015220f3526075ead6153243fe14a25d8b74d21b8c8c623f852	["*"]	\N	\N	2025-04-10 10:36:22	2025-04-10 10:36:22
7	App\\Models\\User	40	Personal Access Token	32c75fb39d8fa04d38c5df3bdd73d59078670ffa70032529dbd64b61a77ff6d0	["*"]	\N	\N	2025-04-10 10:37:18	2025-04-10 10:37:18
8	App\\Models\\User	40	Personal Access Token	ae2f573723683a146d28f15ee5bfbbe1682a0f1e383cc59360b13a7a8393033b	["*"]	\N	\N	2025-04-10 10:37:18	2025-04-10 10:37:18
9	App\\Models\\User	38	Personal Access Token	7dfdc42f1f602b6b479a53004ad7d0491259b068c54a402a8f1ec6f5aadbf400	["*"]	\N	\N	2025-04-12 07:55:38	2025-04-12 07:55:38
23	App\\Models\\User	44	Personal Access Token	b4d5c0a847c0f325d5df6f580a42ce9ca6f563bfefa91796bbb5b50b69133475	["*"]	\N	\N	2025-04-18 11:02:44	2025-04-18 11:02:44
24	App\\Models\\User	44	Personal Access Token	f5f5aedbfd8553c64418270e26b44db4909708ef3377cbfc5e88b76299562b1e	["*"]	\N	\N	2025-04-18 11:02:44	2025-04-18 11:02:44
29	App\\Models\\User	45	Personal Access Token	23fe903d9773c6a0c9a76f4fdf943c1a3f9cb8ecd144e9c9cb759cacde1f600f	["*"]	\N	\N	2025-04-19 09:33:19	2025-04-19 09:33:19
30	App\\Models\\User	45	Personal Access Token	3bafe847bc219bf48df818e9e329fff2a786aee8bc54bf7e0e54249cae4cda2d	["*"]	\N	\N	2025-04-19 09:33:19	2025-04-19 09:33:19
36	App\\Models\\User	42	Personal Access Token	1a2ef0fdadafea179a4b4bc7f343101d77baaf29a8304c2ace8b33b60d8c9bb2	["*"]	\N	\N	2025-04-21 17:59:26	2025-04-21 17:59:26
37	App\\Models\\User	46	Personal Access Token	0555fff9533cfc6e4511169cc60975b1c014eca114762d648a66b0d1c43c7801	["*"]	\N	\N	2025-04-22 06:21:07	2025-04-22 06:21:07
38	App\\Models\\User	46	Personal Access Token	9684336e94c6850f1dacf6452f4acb2906b70b00630ae158fba7e5a351303ca2	["*"]	\N	\N	2025-04-22 06:21:07	2025-04-22 06:21:07
39	App\\Models\\User	37	Personal Access Token	ad785828f194d9b8287398837ca220eee1170987081626f09a2fe9c9af354b73	["*"]	\N	\N	2025-04-22 11:22:06	2025-04-22 11:22:06
42	App\\Models\\User	43	Personal Access Token	227eaff08537411ebf84a268653b5eee1b68f6a86d646e43d2353d8bed97f85e	["*"]	\N	\N	2025-04-23 06:24:49	2025-04-23 06:24:49
43	App\\Models\\User	47	Personal Access Token	54ed9b3a5e04bf8d2ebde914a9ce3ae7f33e9b159581a18cd666901228bd9593	["*"]	\N	\N	2025-04-23 07:41:22	2025-04-23 07:41:22
44	App\\Models\\User	47	Personal Access Token	1b7fc43dcf563d67eaaf1dd4f37a0ceba83b1b26469432981c7f3483ef024a49	["*"]	\N	\N	2025-04-23 07:41:22	2025-04-23 07:41:22
45	App\\Models\\User	41	Personal Access Token	fddbbdc08b8a08f062721b3646036a0abef8c142b1042b8d64378f355710688b	["*"]	\N	\N	2025-04-24 09:14:19	2025-04-24 09:14:19
46	App\\Models\\User	49	Personal Access Token	9f49c4907be22d0a638a123090d70c765bbb702689e6e1402f93a9c8bd3475d1	["*"]	\N	\N	2025-05-19 13:08:48	2025-05-19 13:08:48
47	App\\Models\\User	49	Personal Access Token	8abb4d1ddd6ff8b66da4c2e57153de5312bfc9499f094e24de8c2c2b9d1ca5a3	["*"]	\N	\N	2025-05-19 13:08:51	2025-05-19 13:08:51
48	App\\Models\\User	50	Personal Access Token	8b935a9c7caa2e570263c8a42ed5e6ee4e9d6a62850dcc178c7b0a2c8b18f8cf	["*"]	\N	\N	2025-05-20 07:06:44	2025-05-20 07:06:44
49	App\\Models\\User	50	Personal Access Token	be470cb92b1aa9e5b871481880a33487fa7ff52ee0f28dd6e96104e4f965e490	["*"]	\N	\N	2025-05-20 07:06:47	2025-05-20 07:06:47
50	App\\Models\\User	51	Personal Access Token	485d3bdb0008b573f951297033b83631d6526e35cc08c39987901c55af69ec10	["*"]	\N	\N	2025-05-20 07:08:20	2025-05-20 07:08:20
51	App\\Models\\User	51	Personal Access Token	869b8e9c9969760147502d6b0263729011f15ec209d2fd2b9931dad0b35d6eb1	["*"]	\N	\N	2025-05-20 07:08:23	2025-05-20 07:08:23
52	App\\Models\\User	52	Personal Access Token	c7139638f5dfaa4f2327338de7ff2a037ca690c7f98d411cc1a503b05ea52a7a	["*"]	\N	\N	2025-05-22 05:30:36	2025-05-22 05:30:36
53	App\\Models\\User	52	Personal Access Token	7a39f43be5cae2e7445838cd402c4f84376560a9e9174baaaeb1e2237c07d13a	["*"]	\N	\N	2025-05-22 05:30:36	2025-05-22 05:30:36
54	App\\Models\\User	53	Personal Access Token	dbe991ca0cb5d75ceb2424c7a86f1db2f921d6d996628b25c00808b56f47cc7d	["*"]	\N	\N	2025-05-22 06:30:08	2025-05-22 06:30:08
55	App\\Models\\User	53	Personal Access Token	d6bce21463de2634eab2f81a3e7a5bd9a391fe9cb20987fb3c3ce94b25805218	["*"]	\N	\N	2025-05-22 06:30:08	2025-05-22 06:30:08
56	App\\Models\\User	154	Personal Access Token	c1b34d5270affbbd68303ace2689873a6dd59ed880e0526217617cdd66b1eb8b	["*"]	\N	\N	2025-05-23 13:54:05	2025-05-23 13:54:05
57	App\\Models\\User	154	Personal Access Token	2454fc86b60c08d678fba1c08432960e21a6ad597bf2d4e39beb445386680c6c	["*"]	\N	\N	2025-05-23 13:54:05	2025-05-23 13:54:05
58	App\\Models\\User	155	Personal Access Token	707ec91fb4785a35ad674e58d804f57c992b1e74d0535cdef579bd2322340dc2	["*"]	\N	\N	2025-05-23 18:20:44	2025-05-23 18:20:44
59	App\\Models\\User	155	Personal Access Token	c5d52829dc092bf9b2c73fc3ec4d1c5bbff46a0b63160e831558c7cc5d16a912	["*"]	\N	\N	2025-05-23 18:20:44	2025-05-23 18:20:44
60	App\\Models\\User	156	Personal Access Token	4ba711ee417086ef37072ef604fde686ea147bc78ffecd0770d459b58f22c755	["*"]	\N	\N	2025-05-23 18:24:04	2025-05-23 18:24:04
61	App\\Models\\User	156	Personal Access Token	963cf269d3bbbd8972db0a932500c22065ff69b2dbddde2b431ae63cedbb1b9f	["*"]	\N	\N	2025-05-23 18:24:04	2025-05-23 18:24:04
62	App\\Models\\User	157	Personal Access Token	12e7651db251999f0ac732d0dc07f136ea35264397ecb7711e92ad095022ced6	["*"]	\N	\N	2025-05-23 21:35:48	2025-05-23 21:35:48
63	App\\Models\\User	157	Personal Access Token	37934dc921d5b1f42c9cb2107db38459a41bf657733d42092812382fc8af2b79	["*"]	\N	\N	2025-05-23 21:35:48	2025-05-23 21:35:48
64	App\\Models\\User	158	Personal Access Token	b9c64551bc0f0baab6a3031b8c171f4a291136fdcdc8952ca9a5961e3ba5c65f	["*"]	\N	\N	2025-05-24 07:45:47	2025-05-24 07:45:47
65	App\\Models\\User	158	Personal Access Token	8316ebbd3fc03a093001507442b63adffe25fceb452d91faaa0e5d667f0e5ae5	["*"]	\N	\N	2025-05-24 07:45:47	2025-05-24 07:45:47
66	App\\Models\\User	161	Personal Access Token	d5377a8797577d06a4e5649b0a4c678ad7112bad0afe010db795f1697df70410	["*"]	\N	\N	2025-05-26 09:53:26	2025-05-26 09:53:26
67	App\\Models\\User	161	Personal Access Token	fd48e6c0d55c4c598413fd07478428268a43aae6a0de944e649252ae597651a0	["*"]	\N	\N	2025-05-26 09:53:26	2025-05-26 09:53:26
68	App\\Models\\User	162	Personal Access Token	017e265af95937aeb18c86c1242c8a4a2d6bbe0093c42af94c875bbeec77aa64	["*"]	\N	\N	2025-05-26 20:26:37	2025-05-26 20:26:37
69	App\\Models\\User	163	Personal Access Token	380737ec6d21430e94a67c072a479104a27bb5588a97549d0a17c6ed424085b4	["*"]	\N	\N	2025-05-26 22:28:07	2025-05-26 22:28:07
70	App\\Models\\User	163	Personal Access Token	2bb25f0eb4deac22cf32898fb10968291b58c45d095a3a5c2da58a1bbe178771	["*"]	\N	\N	2025-05-26 22:28:17	2025-05-26 22:28:17
71	App\\Models\\User	164	Personal Access Token	064fff7edac61012044b4dd8bb8c4a94004210f20a2d2ebdcbe70e8150b347b6	["*"]	\N	\N	2025-05-27 04:42:09	2025-05-27 04:42:09
72	App\\Models\\User	165	Personal Access Token	6e58839f8323885aaaec8b451ce2f2480458a5bc94040de77b2d22691c8b3a8b	["*"]	\N	\N	2025-05-27 04:52:40	2025-05-27 04:52:40
73	App\\Models\\User	165	Personal Access Token	aa6576090946151ce40f9b8449523c6a2c37c8cf605abab926ec8418dec40d22	["*"]	\N	\N	2025-05-27 04:54:25	2025-05-27 04:54:25
74	App\\Models\\User	165	Personal Access Token	4d99c51df924e40769bcb0ab80e637790986a69c1ebe3038e85669aaf5a1ef1c	["*"]	\N	\N	2025-05-27 04:54:29	2025-05-27 04:54:29
75	App\\Models\\User	166	Personal Access Token	57ede02136aecc35d1935506c287c40c65831afc28f4e2843e607a8fffdbf893	["*"]	\N	\N	2025-05-27 05:03:03	2025-05-27 05:03:03
76	App\\Models\\User	166	Personal Access Token	fcfb7a50009b069c7b571af87a6e4e6531c64ec3385078cead134480652105d2	["*"]	\N	\N	2025-05-27 05:03:07	2025-05-27 05:03:07
77	App\\Models\\User	168	Personal Access Token	795cc7cf24ff2c2261c72c56972595d4dec1a037bcd7235f492bb2dd705ce3c5	["*"]	\N	\N	2025-05-27 05:09:50	2025-05-27 05:09:50
78	App\\Models\\User	168	Personal Access Token	73a505e0d00336092696e0638faa99b5952f7eecea1288b49e8dcf7a788da5d1	["*"]	\N	\N	2025-05-27 05:09:54	2025-05-27 05:09:54
79	App\\Models\\User	169	Personal Access Token	b8dd8146e6cd2cd9ba419a0deb4bace5786938b61c2a27e77450c6af91ba0a34	["*"]	\N	\N	2025-05-27 05:15:33	2025-05-27 05:15:33
80	App\\Models\\User	169	Personal Access Token	c36f493a3882db6d96644cb4097a5746b36249c0214c51d1917c8750569e3ccd	["*"]	\N	\N	2025-05-27 05:15:37	2025-05-27 05:15:37
81	App\\Models\\User	170	Personal Access Token	67775e019c496aa97455cf1029eed6f1b927910b260db06bc65570075dcef710	["*"]	\N	\N	2025-05-27 05:42:18	2025-05-27 05:42:18
82	App\\Models\\User	170	Personal Access Token	fd348f3d209c35e9fbbdc986bc096a26fb9c6c7713b52828fd5eeda60291e750	["*"]	\N	\N	2025-05-27 05:42:22	2025-05-27 05:42:22
83	App\\Models\\User	171	Personal Access Token	948273f834eedb1d0532e51f18e3a7484921aaa935d4a6093d7a951c3479a428	["*"]	\N	\N	2025-05-27 05:53:43	2025-05-27 05:53:43
84	App\\Models\\User	171	Personal Access Token	9585e5b905e7cdfb0eb5e99665e60d4ce2c46a4fa9376529c81fb526c36d1056	["*"]	\N	\N	2025-05-27 05:53:47	2025-05-27 05:53:47
85	App\\Models\\User	172	Personal Access Token	dbda96b6d3fee95832bc29baa697e7a00f8b67226916654937635b174c78e784	["*"]	\N	\N	2025-05-27 06:46:12	2025-05-27 06:46:12
86	App\\Models\\User	172	Personal Access Token	272007ad572d820328d8c9d65d1499a5726fce5e20773f8abbfa1b75b89ed0eb	["*"]	\N	\N	2025-05-27 06:46:16	2025-05-27 06:46:16
87	App\\Models\\User	173	Personal Access Token	42da7dcf974cb71cc09fd88d1146a9812722f8b9b0e53f3fcfdb263d628cda71	["*"]	\N	\N	2025-05-27 07:02:34	2025-05-27 07:02:34
88	App\\Models\\User	173	Personal Access Token	633a1267603f98ef4bcedefd0bab05eb8f0912befda4b454cbe1b03f9c00bb6b	["*"]	\N	\N	2025-05-27 07:02:38	2025-05-27 07:02:38
89	App\\Models\\User	174	Personal Access Token	a283702786a137531a5589524e70a01bb9491dffcf19e35ba64cd9f4c415c29f	["*"]	\N	\N	2025-05-27 08:15:06	2025-05-27 08:15:06
90	App\\Models\\User	174	Personal Access Token	e0b71a409786e521789b13fa5e9141f6960ae2ee0a555e958bcc67ff710df9d2	["*"]	\N	\N	2025-05-27 08:15:10	2025-05-27 08:15:10
91	App\\Models\\User	175	Personal Access Token	08e65e2f2eb7de2cda6349d34c0d8f328b39445fba4392339d58a6886b1ae132	["*"]	\N	\N	2025-05-27 08:31:31	2025-05-27 08:31:31
92	App\\Models\\User	175	Personal Access Token	04211fd8f966b0f35c3529b619eae808e60e98a0f48835cf8af72554c0b7cb72	["*"]	\N	\N	2025-05-27 08:31:36	2025-05-27 08:31:36
93	App\\Models\\User	176	Personal Access Token	9914d7c6f39b5c0f603f75b369353795cecd61b747a214b55e50a76417194b97	["*"]	\N	\N	2025-05-27 08:44:19	2025-05-27 08:44:19
94	App\\Models\\User	176	Personal Access Token	955789b1f0a175afb5f7ac498d17bf7a8a6b904482c93fd24e19d15c0bb75b98	["*"]	\N	\N	2025-05-27 08:44:23	2025-05-27 08:44:23
95	App\\Models\\User	177	Personal Access Token	d8cf0064f551dfe6ed0b3811f023c371ad01b0bcf7d2cefb59ca587bfede4eda	["*"]	\N	\N	2025-05-27 12:23:10	2025-05-27 12:23:10
96	App\\Models\\User	177	Personal Access Token	46be1f95dcc59a924d563eb0217a6bd78b8b71b16e1a4b9310f13393bbe7fc2e	["*"]	\N	\N	2025-05-27 12:23:14	2025-05-27 12:23:14
97	App\\Models\\User	178	Personal Access Token	a4f8da4e8ddea8aa71b7fe323b9baea96a824ee912235c8e7a15be2dd6c2e1aa	["*"]	\N	\N	2025-05-27 12:45:50	2025-05-27 12:45:50
98	App\\Models\\User	178	Personal Access Token	94f6931e64b594e7fae18fea45ac982599a165b49b129037ee48ed3b6d03e6ba	["*"]	\N	\N	2025-05-27 12:45:57	2025-05-27 12:45:57
99	App\\Models\\User	179	Personal Access Token	11346566042c884ff0d7379a7f68d7f71e33bbcea56b05abedf5998a48335c04	["*"]	\N	\N	2025-05-27 13:24:56	2025-05-27 13:24:56
100	App\\Models\\User	179	Personal Access Token	35c34898c426e68f71c7213823074a2306364b65021ce91b2eecefe7d6c8da8d	["*"]	\N	\N	2025-05-27 13:25:03	2025-05-27 13:25:03
101	App\\Models\\User	180	Personal Access Token	3d0def24ccefe02b5d12390082369e36f4cc43c79b6fe1914381baebf419af8f	["*"]	\N	\N	2025-05-27 17:39:44	2025-05-27 17:39:44
102	App\\Models\\User	180	Personal Access Token	687d6c50e8f71185590f80d12d005bf4fd84006a8e2cb850208480bde8a2714a	["*"]	\N	\N	2025-05-27 17:39:51	2025-05-27 17:39:51
103	App\\Models\\User	181	Personal Access Token	e8765ac396a90c4b6740cfb08aca3f61ad00250f4d0c6aeae05e7ce839451caa	["*"]	\N	\N	2025-05-27 18:16:10	2025-05-27 18:16:10
104	App\\Models\\User	181	Personal Access Token	dba4463c1ef772d702379e653b833c2b448a458bb53eb3ed2ba8beff2ada3476	["*"]	\N	\N	2025-05-27 18:16:18	2025-05-27 18:16:18
105	App\\Models\\User	182	Personal Access Token	fea88666503885dcabdb01202ae42f84c8e67c58c64f516a6be8c770cb3b47ec	["*"]	\N	\N	2025-05-28 05:04:49	2025-05-28 05:04:49
106	App\\Models\\User	182	Personal Access Token	f5f76faeb315262baec9dc78f32004d4e474c9938049320efc8aaa9b97319744	["*"]	\N	\N	2025-05-28 05:04:56	2025-05-28 05:04:56
107	App\\Models\\User	183	Personal Access Token	8ea57cbf3c60ab6bd034e6b8278b224c8afb228ad65ecf5b14aa9684cdb6cae8	["*"]	\N	\N	2025-05-28 06:09:29	2025-05-28 06:09:29
108	App\\Models\\User	183	Personal Access Token	ec0523becd61c3f1bbde65a877f041597dae7acdfc29b60b227ae7e7021f36fd	["*"]	\N	\N	2025-05-28 06:09:37	2025-05-28 06:09:37
109	App\\Models\\User	184	Personal Access Token	06ebcf80b47836011530e4f731ebdbcbc279655dd83c78c0e1e1d12c1316da01	["*"]	\N	\N	2025-05-28 06:47:16	2025-05-28 06:47:16
110	App\\Models\\User	184	Personal Access Token	718e80675d31afadc51b81f4b15ecbfb00337f2e226f5100007d9a98dacb1390	["*"]	\N	\N	2025-05-28 06:47:42	2025-05-28 06:47:42
111	App\\Models\\User	184	Personal Access Token	be57af2174ab142657222a4af2ff71ebb5b28e7c622bcc9ee59da96c262b93c9	["*"]	\N	\N	2025-05-28 06:48:05	2025-05-28 06:48:05
112	App\\Models\\User	91	Personal Access Token	efe28249c10038ea7bc501f8a40d0e41aec1025bc72744c8cd926341a12ce152	["*"]	\N	\N	2025-05-28 09:45:04	2025-05-28 09:45:04
113	App\\Models\\User	185	Personal Access Token	2ddfdbf8dc6136fa2443e5d429418893bb96eba62e1e592489aef2b0cfee9ec6	["*"]	\N	\N	2025-05-28 09:59:03	2025-05-28 09:59:03
114	App\\Models\\User	185	Personal Access Token	adfd2d4d886fb6fd41dcefd64bcde8753139640511b026ebe9c8beaaff97e6e7	["*"]	\N	\N	2025-05-28 09:59:07	2025-05-28 09:59:07
115	App\\Models\\User	186	Personal Access Token	34c0f469511f3744560f41b27a26e45805fd4d8e45998cafd81b164a79a72ea4	["*"]	\N	\N	2025-05-28 10:03:47	2025-05-28 10:03:47
116	App\\Models\\User	186	Personal Access Token	81d502b1ac50ff2e749f7e83b96a4dd9ac7902d29d7efd83be45963c1490f00f	["*"]	\N	\N	2025-05-28 10:03:51	2025-05-28 10:03:51
117	App\\Models\\User	187	Personal Access Token	1ee6cf737adc76f418da1bdfad40305de1dbc2f96d232ea074c4804b60cdc136	["*"]	\N	\N	2025-05-28 17:28:00	2025-05-28 17:28:00
118	App\\Models\\User	187	Personal Access Token	d3b985ebaef2745f858ebe2f3a31d95c68e5800f06097100960e580edf2380bb	["*"]	\N	\N	2025-05-28 17:28:05	2025-05-28 17:28:05
119	App\\Models\\User	188	Personal Access Token	d64677f3f7b3640ebdc959c8667cb28170328f5ba87ac6f4a94bb1383bb3888b	["*"]	\N	\N	2025-05-28 17:36:48	2025-05-28 17:36:48
120	App\\Models\\User	188	Personal Access Token	ee7ccb9bcd159bb0ea8bc36652f765135d477beb908973d88023e5ce9b4844db	["*"]	\N	\N	2025-05-28 17:36:52	2025-05-28 17:36:52
121	App\\Models\\User	189	Personal Access Token	77422946f22ec6de0088e51c2aaa8f62834171cb5c1a51ec26eaa56a46aa61ef	["*"]	\N	\N	2025-05-28 17:39:51	2025-05-28 17:39:51
122	App\\Models\\User	189	Personal Access Token	a5085175e44904c01d5c1d5346fe91d12a427299d4ef39e95c3e9ab071641641	["*"]	\N	\N	2025-05-28 17:39:55	2025-05-28 17:39:55
123	App\\Models\\User	190	Personal Access Token	e02d61c5feafa0539316784466ecf8455e78b1c985476eea31c48a83f212bae5	["*"]	\N	\N	2025-05-28 17:43:31	2025-05-28 17:43:31
124	App\\Models\\User	190	Personal Access Token	931ef45ac1b99305a1d9a93707708d852eb7e57c60c356fab09c2982c43f5c04	["*"]	\N	\N	2025-05-28 17:43:35	2025-05-28 17:43:35
125	App\\Models\\User	191	Personal Access Token	eb571827b83af84b7768c2c88e3c4699ac2702119306988af930d4f7569a833b	["*"]	\N	\N	2025-05-28 17:51:05	2025-05-28 17:51:05
126	App\\Models\\User	191	Personal Access Token	19daebf028a169027212e5d8f0fadb46be4c9e5491c7d741eb071d6f69945722	["*"]	\N	\N	2025-05-28 17:51:09	2025-05-28 17:51:09
127	App\\Models\\User	192	Personal Access Token	014c841d7d91702b9657c667895e52f930f4942ce75f1291a2ae6abd51855c83	["*"]	\N	\N	2025-05-28 17:53:13	2025-05-28 17:53:13
128	App\\Models\\User	192	Personal Access Token	13f0a28263dac3057cc002f6079ba7b1c48d4049ec4d63163190510329fcc3e6	["*"]	\N	\N	2025-05-28 17:53:18	2025-05-28 17:53:18
129	App\\Models\\User	193	Personal Access Token	212598d417f098140efef83de2877b8c8c84283b8ff5782bda0f6f5e761bf71f	["*"]	\N	\N	2025-05-29 07:13:26	2025-05-29 07:13:26
130	App\\Models\\User	193	Personal Access Token	456e79019d70d449702f3850fa647a4bbb5d581e03986d494e88d35069a65d07	["*"]	\N	\N	2025-05-29 07:13:30	2025-05-29 07:13:30
131	App\\Models\\User	194	Personal Access Token	394bbc004a04a71c4c054b98d492ea016896b4befda9053c84f70d2de32b7e19	["*"]	\N	\N	2025-05-29 08:07:31	2025-05-29 08:07:31
132	App\\Models\\User	194	Personal Access Token	f768b89b2ac75a561d64c365f9c0cb77e5c4222884755a14d38445f655d80098	["*"]	\N	\N	2025-05-29 08:07:35	2025-05-29 08:07:35
133	App\\Models\\User	195	Personal Access Token	afb4c0192b8e6fe35232461bb5a610579185ed4ce3814e9a1ff7582da10b2825	["*"]	\N	\N	2025-05-29 08:17:16	2025-05-29 08:17:16
134	App\\Models\\User	195	Personal Access Token	b015b15d84c2b9f8d7b116653f474d3fcea2d0f0ae014267fa1d8a499b64daca	["*"]	\N	\N	2025-05-29 08:17:20	2025-05-29 08:17:20
135	App\\Models\\User	196	Personal Access Token	a58a8dc6471ccd88f7523616b92ff1a3b970e010c1f6f1d1bf41515738404340	["*"]	\N	\N	2025-05-29 08:36:27	2025-05-29 08:36:27
136	App\\Models\\User	196	Personal Access Token	93a96d5be6f865f5f25615afaf764be984744962daf39747bd5ffbfa3f524218	["*"]	\N	\N	2025-05-29 08:36:32	2025-05-29 08:36:32
137	App\\Models\\User	197	Personal Access Token	aa2bd11d79c70b18e62129203b7f6e400c389a3cfea7d08264d9ca1bf3fe30b4	["*"]	\N	\N	2025-05-29 17:23:31	2025-05-29 17:23:31
138	App\\Models\\User	197	Personal Access Token	225f1e40da9ca8fce68408c65cee11753c6a8a2713ae9d38ae1cd5d31d18e202	["*"]	\N	\N	2025-05-29 17:23:34	2025-05-29 17:23:34
139	App\\Models\\User	198	Personal Access Token	b5cd9f506a20030489472db5122957debcc2f118c8db9b72919b5cef9f6c6eff	["*"]	\N	\N	2025-05-29 17:28:49	2025-05-29 17:28:49
140	App\\Models\\User	198	Personal Access Token	7553e43adf821f7b6c7c3b22b8949246c5c7e2b2e7fb7a207882904173b8f296	["*"]	\N	\N	2025-05-29 17:28:52	2025-05-29 17:28:52
141	App\\Models\\User	199	Personal Access Token	c314be3b9d4a9e63535d367b1f2d8f7654336f718193ac5867ee8b91c4a0c673	["*"]	\N	\N	2025-05-30 10:52:09	2025-05-30 10:52:09
142	App\\Models\\User	199	Personal Access Token	9eafa152177f83126315945689e55d5440c3515b0a7625265c3ec6cde1475e6e	["*"]	\N	\N	2025-05-30 10:52:12	2025-05-30 10:52:12
143	App\\Models\\User	200	Personal Access Token	5a64dd3da27d63cf13904917c2f1f4a5362017e65aa4d775893efd72bae14087	["*"]	\N	\N	2025-05-30 11:24:09	2025-05-30 11:24:09
144	App\\Models\\User	200	Personal Access Token	aeb8e31ea9dcf1a73408d2fa35ea9f02eed10fb1a534672c219ab7ca21020ce4	["*"]	\N	\N	2025-05-30 11:24:12	2025-05-30 11:24:12
145	App\\Models\\User	201	Personal Access Token	69b18a1fa89c6dd1884bfde002483df728a73e767a7aa618d2b4a505776b56a8	["*"]	\N	\N	2025-05-30 11:34:19	2025-05-30 11:34:19
146	App\\Models\\User	201	Personal Access Token	a94cf14a20ca297580a9620faa2273ee8892333d49349aac7e74989416832a39	["*"]	\N	\N	2025-05-30 11:34:22	2025-05-30 11:34:22
147	App\\Models\\User	202	Personal Access Token	d6c8f6170ba2fda81e3d43a4972e4463bda99b95bd82abe8e8fa40bd795113d2	["*"]	\N	\N	2025-05-30 12:28:12	2025-05-30 12:28:12
148	App\\Models\\User	202	Personal Access Token	1ef6fa818afd142acd6abfa1529354ea2bf4ba6c9e3dfd5814877d390d5e1302	["*"]	\N	\N	2025-05-30 12:28:15	2025-05-30 12:28:15
149	App\\Models\\User	203	Personal Access Token	c179f230a34c002503ce1e0c71967213cac0f791429a49a24f60cdbf0f416445	["*"]	\N	\N	2025-05-30 12:31:18	2025-05-30 12:31:18
150	App\\Models\\User	203	Personal Access Token	057bb71ce386081ecbe63228570bb12380057422193ea108a63a8fc2fa4f8632	["*"]	\N	\N	2025-05-30 12:31:20	2025-05-30 12:31:20
151	App\\Models\\User	204	Personal Access Token	9185d11dd3bb5872901fbf6fccc0257666816e309654b7d2a88260ce27314cb7	["*"]	\N	\N	2025-05-30 13:37:10	2025-05-30 13:37:10
152	App\\Models\\User	204	Personal Access Token	4bb53179d9c6d1bc3272dcc0efa2ba95198cc23b55246b59ef69110312712c47	["*"]	\N	\N	2025-05-30 13:42:22	2025-05-30 13:42:22
153	App\\Models\\User	204	Personal Access Token	693ec84ad949f41664eeef179db267175029e1a40047dfa9fb1c111dd129e2cf	["*"]	\N	\N	2025-05-30 13:42:24	2025-05-30 13:42:24
154	App\\Models\\User	205	Personal Access Token	b5cf6ac74739da5a0955bb7712b3f8742f30abfa7959ec2f094157ed996d3b03	["*"]	\N	\N	2025-05-30 14:00:15	2025-05-30 14:00:15
155	App\\Models\\User	205	Personal Access Token	ae421555b9cd6ac403f2dc887bd4c90906c464c70dda956d87199bcc7c23b7bd	["*"]	\N	\N	2025-05-30 14:00:17	2025-05-30 14:00:17
156	App\\Models\\User	206	Personal Access Token	31284616d1ac0a2621f786c1b47d67650013bbfdd733e8cad56f82f0ba700025	["*"]	\N	\N	2025-05-30 14:02:36	2025-05-30 14:02:36
157	App\\Models\\User	207	Personal Access Token	9d9d6eb90d76c1b1ed93064ce39595d35bb16ec185e1bcf9431a1c0756133da8	["*"]	\N	\N	2025-05-30 14:05:10	2025-05-30 14:05:10
158	App\\Models\\User	208	Personal Access Token	e75539f95e4d5b70132dc01444642551be91ca9707da9d64f4c69c786b342635	["*"]	\N	\N	2025-05-30 14:18:33	2025-05-30 14:18:33
159	App\\Models\\User	208	Personal Access Token	2bf39b1c68d951c2993654c40dbeeee30ffa22d286c035735ffafc1f7952df54	["*"]	\N	\N	2025-05-30 14:18:36	2025-05-30 14:18:36
160	App\\Models\\User	209	Personal Access Token	568859d7c1571e9f0c318a9fcc49e33afd9a34cd6795f0bfe9ede1b291fe2279	["*"]	\N	\N	2025-05-31 09:08:40	2025-05-31 09:08:40
161	App\\Models\\User	209	Personal Access Token	fda5e9e0feb6cd628c0c76bbeab7cb702aa52af4be5922e98c02dd6a9280092b	["*"]	\N	\N	2025-05-31 09:08:45	2025-05-31 09:08:45
162	App\\Models\\User	210	Personal Access Token	b2bf44bdc640c17b2d32dd85f2202bcfd8ce97552fcba653b32a4567de645486	["*"]	\N	\N	2025-05-31 15:02:31	2025-05-31 15:02:31
163	App\\Models\\User	210	Personal Access Token	f7653f637a02575237e8af3fa1ba62c7630af63511a96141d7cd78e4614e12eb	["*"]	\N	\N	2025-05-31 15:02:36	2025-05-31 15:02:36
164	App\\Models\\User	211	Personal Access Token	fb0e60d6854fd90f9f255d959e6c12eb9b3c27f67a5252aa826034267b32df95	["*"]	\N	\N	2025-05-31 16:42:24	2025-05-31 16:42:24
165	App\\Models\\User	211	Personal Access Token	aa03c31b60b427feb17142a4fb55efe2370a566fe6c350614b3b6f2a5a07532f	["*"]	\N	\N	2025-05-31 16:42:29	2025-05-31 16:42:29
166	App\\Models\\User	212	Personal Access Token	efa5bb183bf722fa0bc56f88895fa22858da32c0dbe6150fc6c4d92a713f484d	["*"]	\N	\N	2025-06-01 17:22:19	2025-06-01 17:22:19
167	App\\Models\\User	212	Personal Access Token	35ef1a9a6d0e64ef0ba8cfd536114917b7376967a977539fe5c42e3d9f70e32d	["*"]	\N	\N	2025-06-01 17:22:24	2025-06-01 17:22:24
168	App\\Models\\User	213	Personal Access Token	072a67e51e3adfec3a5c9fd47066b2d8d051994b55c8a0c6923d61d679251b83	["*"]	\N	\N	2025-06-03 03:03:02	2025-06-03 03:03:02
169	App\\Models\\User	213	Personal Access Token	f13bfe0e1152a7053ede790cb122ea4a37c564ae888e69b54136169669529b1f	["*"]	\N	\N	2025-06-03 03:03:06	2025-06-03 03:03:06
170	App\\Models\\User	214	Personal Access Token	61cce38608b626b3cefae22c61de68dca0b79c6c3ea3d563faae36a35e1dfcab	["*"]	\N	\N	2025-06-03 03:21:26	2025-06-03 03:21:26
171	App\\Models\\User	214	Personal Access Token	7c454085faae36c4c92d04635ea33c67440abe7d7ba385b00205f62b4a4b76a6	["*"]	\N	\N	2025-06-03 03:21:31	2025-06-03 03:21:31
172	App\\Models\\User	215	Personal Access Token	a1ae6371fb4407a5a4d60b589e86c0bb69e8a92a17c7c53986cf76332df0b54f	["*"]	\N	\N	2025-06-03 05:21:54	2025-06-03 05:21:54
173	App\\Models\\User	215	Personal Access Token	7c7057e1d2ff3405e1a515c2ae111e1d5dd3b3a71b6114f35359f182d29d1058	["*"]	\N	\N	2025-06-03 05:21:58	2025-06-03 05:21:58
174	App\\Models\\User	216	Personal Access Token	d61edaa214be834db1cec8ce37b4c650bba035a5dd3a22403080b843d6a394ce	["*"]	\N	\N	2025-06-03 08:33:39	2025-06-03 08:33:39
175	App\\Models\\User	216	Personal Access Token	cad5832fe8c103d5acf22f1d5410cc73f392da822f36e616daea7deafc91e4f9	["*"]	\N	\N	2025-06-03 08:33:43	2025-06-03 08:33:43
176	App\\Models\\User	217	Personal Access Token	c487fda6697957963a95b062164f1b849d37d1ed16c10d4a290edadeed5bd516	["*"]	\N	\N	2025-06-03 13:20:23	2025-06-03 13:20:23
177	App\\Models\\User	217	Personal Access Token	dcb96635340e0120988785b01bc4508408037bdc97a2fd733b2dd0f3c5fcfa27	["*"]	\N	\N	2025-06-03 13:20:28	2025-06-03 13:20:28
178	App\\Models\\User	218	Personal Access Token	3a3e158ca3f212b45c2f18bfa2bdf961bd053251171a8e8548b9d1d9876eeada	["*"]	\N	\N	2025-06-03 13:25:31	2025-06-03 13:25:31
179	App\\Models\\User	218	Personal Access Token	bc249b91f2baa0f0f8e74b8da4ae4ca5be59059d669d7effc3cb0b1a626dce2c	["*"]	\N	\N	2025-06-03 13:25:36	2025-06-03 13:25:36
180	App\\Models\\User	219	Personal Access Token	02ad048aeb95f8953e30a3bbc8301d381a0de172fb303786e1a3e0ab2941419b	["*"]	\N	\N	2025-06-04 06:45:50	2025-06-04 06:45:50
181	App\\Models\\User	219	Personal Access Token	d5c3e79073f3474fb12744222f7d8bc0733f799b7381650fcc98eccea6d3799c	["*"]	\N	\N	2025-06-04 06:45:55	2025-06-04 06:45:55
182	App\\Models\\User	220	Personal Access Token	3ae352b151ee54850bdcf67a2b3c6bdf22bfb8f896096f16b9dad7d5e378a8ed	["*"]	\N	\N	2025-06-04 07:07:31	2025-06-04 07:07:31
183	App\\Models\\User	220	Personal Access Token	89ad097d3fb70900fcae15a3c582eb33708385c08ec790fed4c05d5ccede2f82	["*"]	\N	\N	2025-06-04 07:07:35	2025-06-04 07:07:35
184	App\\Models\\User	221	Personal Access Token	c258ea92ec75cc875860c73f71288110516ac68307151796212dc88e34a9cacb	["*"]	\N	\N	2025-06-04 07:21:52	2025-06-04 07:21:52
185	App\\Models\\User	221	Personal Access Token	71947f8492ec7409620e097fe0f1a0e12e603394436a14f01577b585d14cf0bf	["*"]	\N	\N	2025-06-04 07:21:57	2025-06-04 07:21:57
186	App\\Models\\User	222	Personal Access Token	fa3ee5a929b35e3ab0e745e9d89ac5a7fcb2ac42c2ef74bd6540873c5ac642ee	["*"]	\N	\N	2025-06-04 07:39:03	2025-06-04 07:39:03
187	App\\Models\\User	222	Personal Access Token	70c5de27bba9643170d9ebc90cc945808c4c5ce35c8a2ac686fde28d3ec903ec	["*"]	\N	\N	2025-06-04 07:39:07	2025-06-04 07:39:07
188	App\\Models\\User	223	Personal Access Token	c9c31b1d0ed7491da582ba24e3160421585df7791262fccb18b3d57e3a10eaae	["*"]	\N	\N	2025-06-04 07:39:50	2025-06-04 07:39:50
189	App\\Models\\User	223	Personal Access Token	a0a5a3cad91dc0e7758ef4c6b21cc954170fb21e9271c057a27de1ed6f79c81e	["*"]	\N	\N	2025-06-04 07:39:54	2025-06-04 07:39:54
190	App\\Models\\User	224	Personal Access Token	9797fd97611f4c7e35313b3d62bcd93f5ef1a226b979ba9c74fce350ea34921f	["*"]	\N	\N	2025-06-04 07:57:14	2025-06-04 07:57:14
191	App\\Models\\User	224	Personal Access Token	ba1fe450c109ac19b0b3e30faa73b21014e352830f86b3d73ff9648f1e3819a2	["*"]	\N	\N	2025-06-04 07:57:18	2025-06-04 07:57:18
192	App\\Models\\User	225	Personal Access Token	e17883b6baadbf180e6311c78f6bd5b31a89814841031f45db72f0cccab690c7	["*"]	\N	\N	2025-06-04 08:22:58	2025-06-04 08:22:58
193	App\\Models\\User	225	Personal Access Token	9802d286226449ecf28a03943a570238ce77e9c9be4c042cd0c3a520895ee6ea	["*"]	\N	\N	2025-06-04 08:23:02	2025-06-04 08:23:02
194	App\\Models\\User	226	Personal Access Token	b29ebc9598b316844ff510dc2a7cc1b8a2d9ab5a4e76b5b2cdc934f295990620	["*"]	\N	\N	2025-06-04 12:13:01	2025-06-04 12:13:01
195	App\\Models\\User	226	Personal Access Token	5121ebcf9704967ea9442c535a6cf2c010ea7205883dfce92b99f0787e1b80b5	["*"]	\N	\N	2025-06-04 12:13:07	2025-06-04 12:13:07
196	App\\Models\\User	227	Personal Access Token	d33dd3a6a85682080eb5d89e8c36fe70056c0f017812c5c06cfa245e2cf6002e	["*"]	\N	\N	2025-06-04 16:55:03	2025-06-04 16:55:03
197	App\\Models\\User	227	Personal Access Token	a3778af7e31024657f0488a906ec9fd2e6f6e7e61945114454bfd10ffa54e587	["*"]	\N	\N	2025-06-04 16:55:07	2025-06-04 16:55:07
198	App\\Models\\User	228	Personal Access Token	6c1b4391b37f7eac7e3a64a4db3dd223bbf0a5ee335fdc2533bf32ed54a5bbff	["*"]	\N	\N	2025-06-05 06:21:47	2025-06-05 06:21:47
199	App\\Models\\User	228	Personal Access Token	3d24a3d840c865f55933272e3c7b7fd892ecf1483e83db344978b67dd5345e0e	["*"]	\N	\N	2025-06-05 06:21:51	2025-06-05 06:21:51
200	App\\Models\\User	229	Personal Access Token	4584c670b22e4b7ead0f90c525e0e2e63db30e0826dbc461757f14116a474061	["*"]	\N	\N	2025-06-05 06:25:14	2025-06-05 06:25:14
201	App\\Models\\User	229	Personal Access Token	fe9d126dc11737bc7fd9dc14d97e233a91e4acd7fabcd794dea8a59cc363a791	["*"]	\N	\N	2025-06-05 06:25:18	2025-06-05 06:25:18
202	App\\Models\\User	230	Personal Access Token	55b8a305f44d77d205104ddf8e302f25bf6385c612c3e501e87d3893ce71984d	["*"]	\N	\N	2025-06-05 07:01:06	2025-06-05 07:01:06
203	App\\Models\\User	230	Personal Access Token	063e28b6cfa6732b9b2091252adf56b12d5c7f6c6610e9ef133a3e2f9f8ae5c4	["*"]	\N	\N	2025-06-05 07:01:11	2025-06-05 07:01:11
204	App\\Models\\User	231	Personal Access Token	a0234d2316098279f8eeef21d943c318b9e7acf6fea46cb8a86a8f662d17dccd	["*"]	\N	\N	2025-06-05 07:45:09	2025-06-05 07:45:09
205	App\\Models\\User	231	Personal Access Token	c81f891cb88bab315f25e47bc77193c461f5d5a6d8f5dd70d2452690caa2eefe	["*"]	\N	\N	2025-06-05 07:45:13	2025-06-05 07:45:13
206	App\\Models\\User	232	Personal Access Token	ef1af684bd14cdcfbe811e96cf96de4145132c72e0607368c55fae57cc15480d	["*"]	\N	\N	2025-06-05 08:06:47	2025-06-05 08:06:47
207	App\\Models\\User	232	Personal Access Token	94f3f291da04d60641cf3dc75ee3be128166a55121664f9381344b5898f07c74	["*"]	\N	\N	2025-06-05 08:06:52	2025-06-05 08:06:52
208	App\\Models\\User	233	Personal Access Token	136f2c7700f6d13510672f7c419b91778f76b686000349eb37fbf4499580ce3b	["*"]	\N	\N	2025-06-05 08:52:49	2025-06-05 08:52:49
209	App\\Models\\User	233	Personal Access Token	b1b4f9e1da3fd4d3263869c90a76a476e8d52789d0745f4fbd13223f0f0a7171	["*"]	\N	\N	2025-06-05 08:52:54	2025-06-05 08:52:54
210	App\\Models\\User	234	Personal Access Token	04e7c2fe99a1f6a45f60e90983f290dd29ba5aaecc289979b8b42d1db3848892	["*"]	\N	\N	2025-06-05 09:02:52	2025-06-05 09:02:52
211	App\\Models\\User	234	Personal Access Token	eac0a1a870a281d3c5a78bae9ce96b833e74930c9788bacf422ca3820c94bfed	["*"]	\N	\N	2025-06-05 09:02:56	2025-06-05 09:02:56
212	App\\Models\\User	236	Personal Access Token	4f1161c34ccaeaa0a943241843ee61e98ce38efb2cf47623041b146d28745129	["*"]	\N	\N	2025-06-05 10:21:01	2025-06-05 10:21:01
213	App\\Models\\User	236	Personal Access Token	5cab1c416c51b8ec5f89b8a6563b38249555a29ba788c8f3db6714d5a6e6162a	["*"]	\N	\N	2025-06-05 10:21:06	2025-06-05 10:21:06
214	App\\Models\\User	235	Personal Access Token	719975d165ba11bd81f706845d01fb0dd71552f83ef9a4cbe1674722c8a28925	["*"]	\N	\N	2025-06-05 10:30:24	2025-06-05 10:30:24
215	App\\Models\\User	235	Personal Access Token	9e63417c15656c43283c2525fac52063954160886a47013410ec44e22ba690f0	["*"]	\N	\N	2025-06-05 10:30:28	2025-06-05 10:30:28
216	App\\Models\\User	237	Personal Access Token	5c2f0cdc87f4a3fdd622329bf65827c89c2f1c99a99306fb0a0e6c4d49789d93	["*"]	\N	\N	2025-06-05 12:01:21	2025-06-05 12:01:21
217	App\\Models\\User	237	Personal Access Token	b39eb5a3a07f6c90288dcfaa95e993930dda859e114d78d2aeb477c81d022521	["*"]	\N	\N	2025-06-05 12:01:25	2025-06-05 12:01:25
218	App\\Models\\User	238	Personal Access Token	06a15d8a7851aa0cbbfb5412907bc9776246cadc9ecfd440a75bb83a9debc4e2	["*"]	\N	\N	2025-06-05 12:56:26	2025-06-05 12:56:26
219	App\\Models\\User	238	Personal Access Token	1ad79745c4eaa9634be33f1ec82e8f11e1a1ce30bdbf2693c836f432128ecd36	["*"]	\N	\N	2025-06-05 12:56:31	2025-06-05 12:56:31
220	App\\Models\\User	239	Personal Access Token	03909d4820d4989c05ccd805618d7e7e3171d64f46d55cf87910c8fc95fcdc30	["*"]	\N	\N	2025-06-06 03:32:30	2025-06-06 03:32:30
221	App\\Models\\User	239	Personal Access Token	dd89a5116e78ec94973fe826a1860cd38a04ef2ad05d2b55ac44609197193a13	["*"]	\N	\N	2025-06-06 03:32:35	2025-06-06 03:32:35
222	App\\Models\\User	210	Personal Access Token	46e02c1ea29c3f8abe45aee8ff8aed343ab310c9e20266de4f0ede68f491acf9	["*"]	\N	\N	2025-06-06 06:46:28	2025-06-06 06:46:28
223	App\\Models\\User	212	Personal Access Token	00d4cab39a3da06e37fdbe5f528d4e5b20b9a52f58dab957c2df1423bbf0dd76	["*"]	\N	\N	2025-06-06 06:47:49	2025-06-06 06:47:49
224	App\\Models\\User	239	Personal Access Token	68c97973eaf79195632b7ae04fd675f5bce17cfe2b98cd9ed41a5313d6b30b37	["*"]	\N	\N	2025-06-06 07:10:55	2025-06-06 07:10:55
225	App\\Models\\User	192	Personal Access Token	0fe36f668649c85d5772ffb4095ee0ac1bf5ade12f9d964aa217e82a85f53ce3	["*"]	\N	\N	2025-06-06 07:19:14	2025-06-06 07:19:14
226	App\\Models\\User	233	Personal Access Token	a17db8bc9a5bfe027dafde8c9079cae72ecbc38bb3fbab1e90ceef83d748090e	["*"]	\N	\N	2025-06-06 08:18:31	2025-06-06 08:18:31
227	App\\Models\\User	240	Personal Access Token	2dd387f20b83fb203086bb27abe54babecf1ec4d4ec3cb1db0aa058a3c9bfbf2	["*"]	\N	\N	2025-06-06 11:35:23	2025-06-06 11:35:23
228	App\\Models\\User	240	Personal Access Token	43505bdd555236c730415cdb2cdf89471b07d9bc1995d2c4aa2b3f7ab2906f08	["*"]	\N	\N	2025-06-06 11:35:27	2025-06-06 11:35:27
229	App\\Models\\User	239	Personal Access Token	d464ef6a9f605b5d39c3d52fcf5b984abe80aae946dbad70d75e4f24444ef8f4	["*"]	\N	\N	2025-06-06 12:19:31	2025-06-06 12:19:31
230	App\\Models\\User	210	Personal Access Token	48dcf9ef15d9e7795daf854543ceff45f313d1c09a119de797d4c2df7f20f4b6	["*"]	\N	\N	2025-06-06 12:25:00	2025-06-06 12:25:00
231	App\\Models\\User	238	Personal Access Token	1107159cbc381e39dd64bcf28c9a0caef6f6f32a2709e3b5e6a17b4db15da153	["*"]	\N	\N	2025-06-06 13:04:38	2025-06-06 13:04:38
232	App\\Models\\User	210	Personal Access Token	7bf691d8d754439805d8f29772048590e8a521396a308d5f5485d04314e3fae7	["*"]	\N	\N	2025-06-06 13:10:06	2025-06-06 13:10:06
233	App\\Models\\User	241	Personal Access Token	60c52cea47e06434c564a81c19cfd97a424e9ba96dfef7afc11b9a2f6735105c	["*"]	\N	\N	2025-06-06 13:57:11	2025-06-06 13:57:11
234	App\\Models\\User	241	Personal Access Token	4fceb45e7f55e40d8e9b290f9887a9299042cdc31acff2c37a5deb39f96b8571	["*"]	\N	\N	2025-06-06 13:57:15	2025-06-06 13:57:15
235	App\\Models\\User	241	Personal Access Token	6f692ce69bc0184df8ddeca66f04012d3a3939cdd51cac230d3fb6e8d87bb5f4	["*"]	\N	\N	2025-06-06 14:22:31	2025-06-06 14:22:31
236	App\\Models\\User	241	Personal Access Token	3feb6126b58919698d3d79d1eae69823956a3703ca05211fe9362155f160fcec	["*"]	\N	\N	2025-06-06 14:34:47	2025-06-06 14:34:47
237	App\\Models\\User	211	Personal Access Token	4346597e568294a114771e0098c58dca9908c02f4e09aae17d1656cdbbe704fd	["*"]	\N	\N	2025-06-06 17:53:01	2025-06-06 17:53:01
238	App\\Models\\User	242	Personal Access Token	e765b9561e0d7ad8637dda2dba2c9e56138c06abc157e28bac20511c74e0d56b	["*"]	\N	\N	2025-06-07 12:04:36	2025-06-07 12:04:36
239	App\\Models\\User	242	Personal Access Token	cf50c473f026842ae22bc8eeed8b4fbe2413e28b50164dc92f7ef11888267a01	["*"]	\N	\N	2025-06-07 12:04:40	2025-06-07 12:04:40
240	App\\Models\\User	234	Personal Access Token	5a8325b656e47fc46720c32c05eb45f49be89e5a8a37087da2e0955495b2a65d	["*"]	\N	\N	2025-06-09 08:38:54	2025-06-09 08:38:54
241	App\\Models\\User	243	Personal Access Token	a0def35ab66a3b7211fb971e475a5b8a1570f480329ed02bc91ab2205eae6520	["*"]	\N	\N	2025-06-09 09:13:24	2025-06-09 09:13:24
242	App\\Models\\User	243	Personal Access Token	4ee7113507d04e24eb10758b433fb9eaa180048f0a1fa6bca2d69aec8c15932e	["*"]	\N	\N	2025-06-09 09:13:29	2025-06-09 09:13:29
243	App\\Models\\User	243	Personal Access Token	a0c2e7cedcf5541486e573a7ec3475cad7805569854b036767bb46246b8c9bcb	["*"]	\N	\N	2025-06-09 09:16:15	2025-06-09 09:16:15
244	App\\Models\\User	215	Personal Access Token	16f100e7d39ab73fba0d58fc46080e73b4d726748924a0c9af3c3737940efe52	["*"]	\N	\N	2025-06-09 09:49:57	2025-06-09 09:49:57
245	App\\Models\\User	243	Personal Access Token	68402d20877f54c2a9c9da28e5979dfe3628851fee39a8e2f888ef44a4683b6b	["*"]	\N	\N	2025-06-09 09:52:01	2025-06-09 09:52:01
246	App\\Models\\User	215	Personal Access Token	02d1557f78233785cd33f9e884564e0cd0bb990fa553811f7a04d811a60c0736	["*"]	\N	\N	2025-06-09 09:56:01	2025-06-09 09:56:01
247	App\\Models\\User	243	Personal Access Token	032ea1298d8b870822a65dcae8bb40947172f1089a24b1d51ed2cf6dca88b61f	["*"]	\N	\N	2025-06-09 09:57:56	2025-06-09 09:57:56
248	App\\Models\\User	215	Personal Access Token	955e0b3744c8fe99855d8fa4b585b507511a8c5b2c23193770c0b47911b0d3ca	["*"]	\N	\N	2025-06-09 10:04:20	2025-06-09 10:04:20
249	App\\Models\\User	243	Personal Access Token	904b92e490336a750b5f28acfa41ddd0254b1cbdb29c6e1baf4031d724856603	["*"]	\N	\N	2025-06-09 10:26:22	2025-06-09 10:26:22
250	App\\Models\\User	215	Personal Access Token	0f1d3989c1bedee0e31ccbc1a7a4530d69e93be1acd648b049cf6137cd9125c7	["*"]	\N	\N	2025-06-09 10:30:17	2025-06-09 10:30:17
251	App\\Models\\User	243	Personal Access Token	48b7399c60d6c642d4e4b1b73437d76e95b6d7992fc0477ebee5a38877e06ff2	["*"]	\N	\N	2025-06-09 10:33:23	2025-06-09 10:33:23
252	App\\Models\\User	211	Personal Access Token	558b32965123627f7d4b5a871836994a06452cef82a2f25edb545fc708fe8558	["*"]	\N	\N	2025-06-10 05:46:20	2025-06-10 05:46:20
253	App\\Models\\User	244	Personal Access Token	52f7bc562744f818ec4162a305ccf6e721d23ea5a340aa06bdad7d52813a311a	["*"]	\N	\N	2025-06-10 09:19:28	2025-06-10 09:19:28
254	App\\Models\\User	244	Personal Access Token	40fa6bdc675c3d5401142b4d881cfee75131c931315f88dd83822e07b160a45c	["*"]	\N	\N	2025-06-10 09:19:33	2025-06-10 09:19:33
255	App\\Models\\User	215	Personal Access Token	7c545f373e38f1780f500f18d5616dde1c914f2d83589b22fde1bea943e52a33	["*"]	\N	\N	2025-06-10 13:08:47	2025-06-10 13:08:47
256	App\\Models\\User	230	Personal Access Token	b6f96ff5a34759c17cd281e7417f5e7893e16bca2c11dfa55a2fdd90e26709b0	["*"]	\N	\N	2025-06-11 08:00:51	2025-06-11 08:00:51
257	App\\Models\\User	245	Personal Access Token	e0da363122cbb2421299d51fa1adb1bd6e4f7dadd32d5ddaabcc56cfc8cbd163	["*"]	\N	\N	2025-06-11 09:55:14	2025-06-11 09:55:14
258	App\\Models\\User	245	Personal Access Token	7c188c6b02c77a174b5b9ea3fa011c070c107ccc3dfb3c6d45cd325fdeb5eab6	["*"]	\N	\N	2025-06-11 09:55:20	2025-06-11 09:55:20
259	App\\Models\\User	246	Personal Access Token	7499989b236a7f72dbb7058c1caa338206b4de19fe886617571ce49eb8277c21	["*"]	\N	\N	2025-06-11 09:55:34	2025-06-11 09:55:34
260	App\\Models\\User	246	Personal Access Token	763a795634202e536866f70f7a24f8a89c1afe6f3a1d7f7ac7199da199426e0c	["*"]	\N	\N	2025-06-11 09:55:38	2025-06-11 09:55:38
261	App\\Models\\User	246	Personal Access Token	2860d6cdb2328b6048445ccbb0043332e4bae9b240e2c1efb57e091395cece52	["*"]	\N	\N	2025-06-11 10:02:58	2025-06-11 10:02:58
262	App\\Models\\User	247	Personal Access Token	a06249b31538abf427c44871b38caeb5581ff20e610f1e6a6864b13f16922660	["*"]	\N	\N	2025-06-23 21:05:53	2025-06-23 21:05:53
263	App\\Models\\User	247	Personal Access Token	6f0d7ba7d808956c7102d557ad48d41263d66085455ddda6b0567bc1744d4dd1	["*"]	\N	\N	2025-06-23 21:05:57	2025-06-23 21:05:57
264	App\\Models\\User	248	Personal Access Token	96baf757552a46c0f6da949a541e1209662563efd9cefef0da027eed16e3c84e	["*"]	\N	\N	2025-06-27 14:51:05	2025-06-27 14:51:05
265	App\\Models\\User	248	Personal Access Token	56a962fe671fc5098192cc6569467b7a85a4087b11ff2592535257c5b041f7ee	["*"]	\N	\N	2025-06-27 14:51:08	2025-06-27 14:51:08
266	App\\Models\\User	247	Personal Access Token	5b2519a6c4fc83ec7c1be4916310270427d8fe0f070066b9f734e3c70e3b1110	["*"]	\N	\N	2025-06-27 16:11:17	2025-06-27 16:11:17
267	App\\Models\\User	247	Personal Access Token	d71b5d6d9e254a74062e5750bc281fa5fc154a7cf3c47f9f7017a7bbbde5508f	["*"]	\N	\N	2025-06-27 18:47:30	2025-06-27 18:47:30
268	App\\Models\\User	247	Personal Access Token	7e5bb1711948c40f31a4d2b51e6020e826dd010b69cc6e4f7b2711cfdb53dc1d	["*"]	\N	\N	2025-06-27 19:20:27	2025-06-27 19:20:27
269	App\\Models\\User	247	Personal Access Token	7fc85881164783f7a3fdc92cdd5cb0e81e9b237e6a9b48ac0cc3471e87dfefd2	["*"]	\N	\N	2025-06-27 19:21:20	2025-06-27 19:21:20
270	App\\Models\\User	247	Personal Access Token	72c5d4406c9928d750b704d3da68f33decc13798b0f2266cc3df055772510942	["*"]	\N	\N	2025-06-27 19:28:51	2025-06-27 19:28:51
271	App\\Models\\User	247	Personal Access Token	f15fe98d59286310471af236b6933ba7f4ab31b17fbf61f1b27d30d212a9e07e	["*"]	\N	\N	2025-06-27 19:35:22	2025-06-27 19:35:22
272	App\\Models\\User	247	Personal Access Token	d360406403c8d128ea9b07b27b2fb995c143e08d0793a37e03f44f2a166d3f98	["*"]	\N	\N	2025-06-27 20:04:02	2025-06-27 20:04:02
273	App\\Models\\User	195	Personal Access Token	57ee28cc825036f0cb820bce8cb745e714402b2e1abadc9a6e509d8a9d5ed40a	["*"]	\N	\N	2025-06-28 07:44:44	2025-06-28 07:44:44
274	App\\Models\\User	249	Personal Access Token	1651c9a2fe2e2b06ed0d88704ee1c9a5f32a13e014bd9c1845557022220bb9dc	["*"]	\N	\N	2025-06-28 13:01:59	2025-06-28 13:01:59
275	App\\Models\\User	249	Personal Access Token	3f54675dd27e705a19871b4db29ce0ae3cbc9ac3912bfba5869766c31a061739	["*"]	\N	\N	2025-06-28 13:02:01	2025-06-28 13:02:01
276	App\\Models\\User	247	Personal Access Token	503192ae147a17e60c6da59d9d8bba8707ecdfc68ee1f15c879b76a39135fb89	["*"]	\N	\N	2025-07-04 19:35:50	2025-07-04 19:35:50
277	App\\Models\\User	250	Personal Access Token	dd691904456c177a8a444276ce3a92c32d68f7a0f3736a466db912220f225470	["*"]	\N	\N	2025-07-09 07:16:57	2025-07-09 07:16:57
278	App\\Models\\User	250	Personal Access Token	0397bc17836c7ccbfea8aabc846a6182e9a7ee6a00f01b3c21b3f5427f10e426	["*"]	\N	\N	2025-07-09 07:17:01	2025-07-09 07:17:01
279	App\\Models\\User	251	Personal Access Token	ee043f5ef851a0ba3e8e8374e9fc8608e357cf0f3eef7a9cc9167341968ad98b	["*"]	\N	\N	2025-07-09 10:44:36	2025-07-09 10:44:36
280	App\\Models\\User	251	Personal Access Token	a16ad17027269fde84b6d96e264755356492647d5e474f167b45fa76284340fb	["*"]	\N	\N	2025-07-09 10:44:39	2025-07-09 10:44:39
281	App\\Models\\User	251	Personal Access Token	e4e9e4561d7ba74945bf3062287707bb528722388f0dc3e5f4c3e3a801fcc96b	["*"]	\N	\N	2025-07-09 10:45:45	2025-07-09 10:45:45
282	App\\Models\\User	251	Personal Access Token	8574efdf5d17ac9cbd2bbc2abc2de6f129726f8ebd42bed1f1abe90eb781facf	["*"]	\N	\N	2025-07-09 17:53:24	2025-07-09 17:53:24
283	App\\Models\\User	251	Personal Access Token	ef30ef64f519ca2295032b6c29ec813ca81ee68585ade18d772d8fb3e5ec142b	["*"]	\N	\N	2025-07-09 19:04:09	2025-07-09 19:04:09
284	App\\Models\\User	251	Personal Access Token	8e360a9e764d38e32089678f9df56b47c425a46ccb06f52f71f1a5e0aa456c7a	["*"]	\N	\N	2025-07-09 19:05:33	2025-07-09 19:05:33
285	App\\Models\\User	252	Personal Access Token	fd94cab5ae5a0c64e2f21804024987f36ed9945ba23f035f4e3ff6b2aef159a3	["*"]	\N	\N	2025-07-10 06:19:03	2025-07-10 06:19:03
286	App\\Models\\User	252	Personal Access Token	6b6c892d88564c28cff85ba5daa8ddec94ee5b2ec1a8d60a6770b50ae9ce7307	["*"]	\N	\N	2025-07-10 06:19:06	2025-07-10 06:19:06
287	App\\Models\\User	251	Personal Access Token	d56bb7fc9a9c5e97fa903abf1ddb7ff996c2330bda037f86493bb9c6aac33479	["*"]	\N	\N	2025-07-10 08:25:29	2025-07-10 08:25:29
288	App\\Models\\User	224	Personal Access Token	917636859a720b6e0aa844020d70344bb6a14789c8eeb91a2a3cece44a95a493	["*"]	\N	\N	2025-07-10 12:08:30	2025-07-10 12:08:30
289	App\\Models\\User	253	Personal Access Token	18a4ba2ec5a7e41f22bd1afa43a9df7b062f18d5c99de279485ea7f39a742865	["*"]	\N	\N	2025-07-10 14:34:32	2025-07-10 14:34:32
290	App\\Models\\User	253	Personal Access Token	8497cf46ef3deb6b0e363db9d8f0b78241444f0e9a88aab7726055c3cbc06bea	["*"]	\N	\N	2025-07-10 14:34:35	2025-07-10 14:34:35
291	App\\Models\\User	245	Personal Access Token	5b8036a94912c94d2068eb4aa60fca957b6d49b2a713a92cb8b63aadc086e45e	["*"]	\N	\N	2025-07-10 19:08:26	2025-07-10 19:08:26
292	App\\Models\\User	216	Personal Access Token	146ace9b0ff2bef9cb97fddd9b28a237cf7baa8abde7a0d75fe55aaa9b09830e	["*"]	\N	\N	2025-07-10 19:19:55	2025-07-10 19:19:55
293	App\\Models\\User	252	Personal Access Token	34a855b5745b2dec95766fba6d594eb85a82175e13a0a2e28e49054843bc3a3b	["*"]	\N	\N	2025-07-10 20:44:12	2025-07-10 20:44:12
294	App\\Models\\User	253	Personal Access Token	1811633b3d66665c470a7c991179dad6b4f773ca1b27f5b28bb9b71e303df9d7	["*"]	\N	\N	2025-07-11 04:05:40	2025-07-11 04:05:40
295	App\\Models\\User	252	Personal Access Token	333130084384934e6b039c3396b385898e1537c7b30c930006ba933a8307a9c5	["*"]	\N	\N	2025-07-11 05:54:51	2025-07-11 05:54:51
296	App\\Models\\User	251	Personal Access Token	ddecfd4d92e0b9f45237788ef25715d4ed174b3b675d510ac3aa59571e929c23	["*"]	\N	\N	2025-07-11 06:00:10	2025-07-11 06:00:10
297	App\\Models\\User	224	Personal Access Token	a56f145cc9c664ab9a1cd7ee656aaf4aade42a19fe0f84dc6b08a4022ade6891	["*"]	\N	\N	2025-07-11 06:01:18	2025-07-11 06:01:18
298	App\\Models\\User	252	Personal Access Token	a8520d1f183a858a613a78cf6a63bca81e0e1fc2bb44b95c5e0ee3ec51afc832	["*"]	\N	\N	2025-07-11 06:03:13	2025-07-11 06:03:13
299	App\\Models\\User	252	Personal Access Token	5f438a8ccc0ff1b967c6fd1e3aedbc23345b98a54645cd99ab45b946fe1fdf5c	["*"]	\N	\N	2025-07-11 06:57:03	2025-07-11 06:57:03
300	App\\Models\\User	245	Personal Access Token	28881b6bac47a04f5861e44b80116b429f0c889758889df590a7526b3b9c0744	["*"]	\N	\N	2025-07-11 07:58:16	2025-07-11 07:58:16
301	App\\Models\\User	252	Personal Access Token	15abad66ea880d41fdbe1ea29eb90830b4c637dc714e99add1b582f7d4236ea0	["*"]	\N	\N	2025-07-11 10:36:01	2025-07-11 10:36:01
302	App\\Models\\User	254	Personal Access Token	5636a70c3a42afa6e17846739f10501b2ac8603f032759dd1595ffafcd631caa	["*"]	\N	\N	2025-07-11 11:23:07	2025-07-11 11:23:07
303	App\\Models\\User	254	Personal Access Token	2c3d97396aa7fd6611943473b24633ef8d6ebb9b94a7a0355723d6eaf0f96a82	["*"]	\N	\N	2025-07-11 11:23:10	2025-07-11 11:23:10
304	App\\Models\\User	255	Personal Access Token	280ed4b3a311c8643a278ec4ef5c4d95739ec954ef23a7ea809fc6c0615785ec	["*"]	\N	\N	2025-07-11 11:44:15	2025-07-11 11:44:15
305	App\\Models\\User	255	Personal Access Token	ce4b8658d09864de3fb5297cbf83e6d50ae45beb9b4c8832098993ac502002d2	["*"]	\N	\N	2025-07-11 11:44:18	2025-07-11 11:44:18
306	App\\Models\\User	255	Personal Access Token	7798464a104b6dbbf73e4d1544c40904229232916f9b253d14ad768392c3f09c	["*"]	\N	\N	2025-07-11 11:49:55	2025-07-11 11:49:55
307	App\\Models\\User	255	Personal Access Token	5ddd6e99ad7720b0a6953f9b4060efcfe4c4dca99d0e70e6a28463852a1c473d	["*"]	\N	\N	2025-07-11 11:54:10	2025-07-11 11:54:10
308	App\\Models\\User	256	Personal Access Token	c4bdc9cf5ede89f0f4dbbccdf9db1947aaf85b6c729427e9aad6c2d6bd7dcb15	["*"]	\N	\N	2025-07-11 12:03:07	2025-07-11 12:03:07
309	App\\Models\\User	256	Personal Access Token	6d68ef627c50d2deea30a48397fba5dce12e6348cab38e260c86b13a74d44a83	["*"]	\N	\N	2025-07-11 12:03:10	2025-07-11 12:03:10
310	App\\Models\\User	253	Personal Access Token	189eacd309360fe8ac427d61e782e8371d3b58046ff0cba4f430b897a550e1a9	["*"]	\N	\N	2025-07-11 12:17:35	2025-07-11 12:17:35
311	App\\Models\\User	224	Personal Access Token	09890b3ec994ceb48ea4aaad64f382f25f5310191e33d27a13bb64cdbead08c8	["*"]	\N	\N	2025-07-11 12:48:58	2025-07-11 12:48:58
312	App\\Models\\User	256	Personal Access Token	126748abbe2fb05fdb005b0f544fedea8227ba3bb97a1e0503f5b5f4e00221c3	["*"]	\N	\N	2025-07-11 13:23:26	2025-07-11 13:23:26
313	App\\Models\\User	257	Personal Access Token	c4ee65e9cfdbf5b76d4090624a54a63620a46e306a4960d75f69719c28fa3200	["*"]	\N	\N	2025-07-11 13:37:02	2025-07-11 13:37:02
314	App\\Models\\User	257	Personal Access Token	75f9005d43025c5687a90d3b9d60dc299602227f14494cefdb161683b3ce138b	["*"]	\N	\N	2025-07-11 13:37:07	2025-07-11 13:37:07
315	App\\Models\\User	257	Personal Access Token	19710a0aa85b12263e418a3b827a657a92c4bcfabdc41ae57597d4b6d12efbae	["*"]	\N	\N	2025-07-11 13:44:20	2025-07-11 13:44:20
316	App\\Models\\User	257	Personal Access Token	50890a5dde1b2ec33e53f8f7736a67e67a0eb011c4a8a890404ef45ed6fd894d	["*"]	\N	\N	2025-07-11 14:15:56	2025-07-11 14:15:56
317	App\\Models\\User	251	Personal Access Token	ff0607a66acd5f61e635d5e1990d60676228295a5d8348f18f2d050f89ea4f4d	["*"]	\N	\N	2025-07-11 14:28:08	2025-07-11 14:28:08
318	App\\Models\\User	193	Personal Access Token	7680ad09647a6924d274c44d603cf17211f24943577bdae14a695d2bf5b1b123	["*"]	\N	\N	2025-07-11 14:31:07	2025-07-11 14:31:07
319	App\\Models\\User	258	Personal Access Token	8557647a76a2c122709a174c8eec315a022d5656498f969e183de3d8b572fdc2	["*"]	\N	\N	2025-07-11 14:43:04	2025-07-11 14:43:04
320	App\\Models\\User	258	Personal Access Token	240e87e593981fdb48c5c3db57ea21187e2de5674e86f1bd8fe134304e5ecf16	["*"]	\N	\N	2025-07-11 14:43:11	2025-07-11 14:43:11
321	App\\Models\\User	245	Personal Access Token	0a8679ccf431ad68898a470751bda8f4a707ba7fc153fcbe54129cf71bcbb552	["*"]	\N	\N	2025-07-11 14:58:21	2025-07-11 14:58:21
322	App\\Models\\User	245	Personal Access Token	583e3fa1b11cc7ebbc488d583348df2bb2ef926a7974d11415d6b2235aa997ae	["*"]	\N	\N	2025-07-11 15:00:13	2025-07-11 15:00:13
323	App\\Models\\User	244	Personal Access Token	e6ace260f815619c85b678801a81efc77bd40f79642178d6c6c35fdaaedb234e	["*"]	\N	\N	2025-07-11 15:01:42	2025-07-11 15:01:42
324	App\\Models\\User	245	Personal Access Token	91de1129e76baf5895f35c84d30a1a972f7f5145e15882e6a438063423a7cf40	["*"]	\N	\N	2025-07-11 15:02:24	2025-07-11 15:02:24
325	App\\Models\\User	259	Personal Access Token	84462924497f74d8da17748a1e8057a1b4a4a78295a84c6bbaada4aa26310528	["*"]	\N	\N	2025-07-11 15:06:09	2025-07-11 15:06:09
326	App\\Models\\User	259	Personal Access Token	cf8343b1c3f04319df9852e72aaa14985cc001d12bdf094005629467fa93a8c1	["*"]	\N	\N	2025-07-11 15:06:14	2025-07-11 15:06:14
327	App\\Models\\User	260	Personal Access Token	dc544d056ac0a3e5b40505cebbd9c22a17d530bb2740f1c661fa7b95989c7862	["*"]	\N	\N	2025-07-11 15:09:28	2025-07-11 15:09:28
328	App\\Models\\User	260	Personal Access Token	2f20e740cb4b3e521b69c7042a9f82fc55e1f4c07af750e413c9fd4b9b2ef03a	["*"]	\N	\N	2025-07-11 15:09:28	2025-07-11 15:09:28
329	App\\Models\\User	260	Personal Access Token	2eb3af15fe35db17c3d06c7715ae9c29307c60f4c131600beac7d3691428a06b	["*"]	\N	\N	2025-07-11 15:09:33	2025-07-11 15:09:33
330	App\\Models\\User	260	Personal Access Token	c106acfef80672a3baa2cad7b50ec1cc5f216544db6a9df33e80f50105273c99	["*"]	\N	\N	2025-07-11 15:09:33	2025-07-11 15:09:33
331	App\\Models\\User	261	Personal Access Token	b8754a5650cc89236cb85efed7acdaebb4815f1b4e0c94a93687531d6006a328	["*"]	\N	\N	2025-07-11 15:11:30	2025-07-11 15:11:30
332	App\\Models\\User	261	Personal Access Token	1cff246d84abeacdafb7fc4137b1671679d046da7195eb0d9298db0a230d525c	["*"]	\N	\N	2025-07-11 15:11:34	2025-07-11 15:11:34
333	App\\Models\\User	257	Personal Access Token	56e6fc9966a5ebb1c51106d0d207e17a67ab403fcc0c4b2f9b49f0fbc8d74167	["*"]	\N	\N	2025-07-11 15:13:40	2025-07-11 15:13:40
334	App\\Models\\User	260	Personal Access Token	9784290e6e37caeaed3f12b08f8abed6835dd4ec3db8d9f9326ecd858cc9fe96	["*"]	\N	\N	2025-07-11 18:17:20	2025-07-11 18:17:20
335	App\\Models\\User	261	Personal Access Token	33791c986522ecc6231d5a3d1aacac8a0623cb0d96dd862e8092066232ef1f86	["*"]	\N	\N	2025-07-11 18:18:10	2025-07-11 18:18:10
336	App\\Models\\User	261	Personal Access Token	3261c82475baa6c1692a9b4915e4dce1ddde9d4dee830664d079c218ca201dd7	["*"]	\N	\N	2025-07-11 19:28:36	2025-07-11 19:28:36
337	App\\Models\\User	261	Personal Access Token	a62b5763c867c2d789af978a1e830048846dfdaf373f6194609ebd967017fd41	["*"]	\N	\N	2025-07-12 05:09:57	2025-07-12 05:09:57
338	App\\Models\\User	253	Personal Access Token	a27c8e9d217eedc4a999d83121ab0ffdada4e60c11899c7963b77bc241310c5c	["*"]	\N	\N	2025-07-12 05:12:54	2025-07-12 05:12:54
339	App\\Models\\User	260	Personal Access Token	289be6b8ce469818787800105bdc951b8518ba221dfd9af740f9ce7c03336a0d	["*"]	\N	\N	2025-07-12 05:19:26	2025-07-12 05:19:26
340	App\\Models\\User	258	Personal Access Token	2daee2ff3fa70bac5ee864512896c08c6e51f74eb0c71e273ae88017f8da3cdf	["*"]	\N	\N	2025-07-12 05:22:13	2025-07-12 05:22:13
341	App\\Models\\User	262	Personal Access Token	2fe52a6315ccc69699dfecf1bb1704bd7ee04f22878cc58083f03e841fba62d5	["*"]	\N	\N	2025-07-12 05:30:57	2025-07-12 05:30:57
342	App\\Models\\User	262	Personal Access Token	684d19e2e0af97778b9ce0963fbde92df2a6d85f372d3e03ed30cfab8d429022	["*"]	\N	\N	2025-07-12 05:31:02	2025-07-12 05:31:02
343	App\\Models\\User	258	Personal Access Token	a10043465e1259dbad711d08a942ac4d3f4c3c5ab2d2ea463ad3d904f3d28285	["*"]	\N	\N	2025-07-12 06:05:28	2025-07-12 06:05:28
344	App\\Models\\User	260	Personal Access Token	aee49258973d0ddad9309a17796b30c1e70910dda388c8165919c920d6c43561	["*"]	\N	\N	2025-07-12 06:06:40	2025-07-12 06:06:40
345	App\\Models\\User	245	Personal Access Token	34a7f882df1cc92cce196d585fcb0dbffc45b50a280579bba4e7ead57d0d4048	["*"]	\N	\N	2025-07-12 06:15:52	2025-07-12 06:15:52
346	App\\Models\\User	216	Personal Access Token	618d298012ce6a4a613ba0837439eaeac5a3f53eadd7938af9ddc666c9dab65e	["*"]	\N	\N	2025-07-12 06:19:41	2025-07-12 06:19:41
347	App\\Models\\User	257	Personal Access Token	07ecb75d22965690b5b4a1a9466b26960bf770fa6e71b345987e28b1a3827bdc	["*"]	\N	\N	2025-07-12 06:38:07	2025-07-12 06:38:07
348	App\\Models\\User	258	Personal Access Token	be6631eed3dfe3b79c173aa2bd0669096422656681ddc7349373b2540697c3e6	["*"]	\N	\N	2025-07-12 06:48:11	2025-07-12 06:48:11
349	App\\Models\\User	258	Personal Access Token	542c28611fed6dda0aa3a8946aaf32835847621b3b885b4e6ff413c68494915e	["*"]	\N	\N	2025-07-12 07:14:19	2025-07-12 07:14:19
350	App\\Models\\User	258	Personal Access Token	fcdb2c0d1dd702d4e313797bd2a62d17edddda658a3eb86592a65efbcd0cf1c7	["*"]	\N	\N	2025-07-12 07:26:12	2025-07-12 07:26:12
351	App\\Models\\User	258	Personal Access Token	8b0bc5c9a3353aa1a35b57174bdbb9a9d26f9ce2fd2140d92216217d71773863	["*"]	\N	\N	2025-07-12 07:29:28	2025-07-12 07:29:28
352	App\\Models\\User	258	Personal Access Token	3fc42b8dffd20540d0ea2041d67458dadd532e2a8f955f3587bc249e575ed831	["*"]	\N	\N	2025-07-12 07:35:05	2025-07-12 07:35:05
353	App\\Models\\User	258	Personal Access Token	7ae2d0adfe190b299a7d19d51730903b823e3044b06b786666a97e9a8cae0a69	["*"]	\N	\N	2025-07-12 08:26:53	2025-07-12 08:26:53
354	App\\Models\\User	263	Personal Access Token	186c164d88b62786d6dd865102e6b1109d7c4f3e939e9b16015a9de504770cf9	["*"]	\N	\N	2025-07-12 08:26:57	2025-07-12 08:26:57
355	App\\Models\\User	263	Personal Access Token	3ee65d9624043e029056085a948475c08fccc95f0269b3f57e1a376ab6e3ce8a	["*"]	\N	\N	2025-07-12 08:27:02	2025-07-12 08:27:02
356	App\\Models\\User	264	Personal Access Token	b21322f15874276db998e76d8d95377a52300e001fc17f7f6adaa240a4601aff	["*"]	\N	\N	2025-07-12 08:54:57	2025-07-12 08:54:57
357	App\\Models\\User	264	Personal Access Token	e85e65c0a7414d69c2467643d25c8c73deac05c48231dc4ae7e907394392afcb	["*"]	\N	\N	2025-07-12 08:55:02	2025-07-12 08:55:02
358	App\\Models\\User	265	Personal Access Token	dd295516e54b9837d19eff1ffe9284cbabacaad3f527f2870260f5751f146ce4	["*"]	\N	\N	2025-07-12 08:55:36	2025-07-12 08:55:36
359	App\\Models\\User	265	Personal Access Token	e3b38cc9b115b4df595afd6143851dcd3d9296f19d79b1b41839c4a061aa7067	["*"]	\N	\N	2025-07-12 08:55:41	2025-07-12 08:55:41
360	App\\Models\\User	263	Personal Access Token	dcbed025c3627dd27503664d25872d9ac7c81ed340bdb680b654173c9fc85a42	["*"]	\N	\N	2025-07-12 09:24:04	2025-07-12 09:24:04
361	App\\Models\\User	264	Personal Access Token	f0a61b31d23c58f4c6f8eb476c01b04f4bed838b48924c53cc96f22e6de16e72	["*"]	\N	\N	2025-07-12 09:46:20	2025-07-12 09:46:20
362	App\\Models\\User	264	Personal Access Token	891afb7f3174ef40047ddda60b64afccb9f3df2b37ee12e99c2d12c5c486affe	["*"]	\N	\N	2025-07-12 09:58:15	2025-07-12 09:58:15
363	App\\Models\\User	244	Personal Access Token	cc8e154a1dd34605bd9e4a43013f8740c2066f748cd59a455fc1306e4c75746d	["*"]	\N	\N	2025-07-12 09:58:51	2025-07-12 09:58:51
364	App\\Models\\User	263	Personal Access Token	48f7b44c514e22329018199751815e79514673d5fc4dcd8a96e9d7ddfec26327	["*"]	\N	\N	2025-07-12 10:31:31	2025-07-12 10:31:31
365	App\\Models\\User	258	Personal Access Token	132a744f07eb8048047619c18f2b6291db2b4ca2eace1f2a102acbace213c9cc	["*"]	\N	\N	2025-07-12 10:32:22	2025-07-12 10:32:22
366	App\\Models\\User	263	Personal Access Token	e94205f8707fe17e9620b2820e3a77f6d785f71db391c13822892d7643213dd1	["*"]	\N	\N	2025-07-12 11:03:20	2025-07-12 11:03:20
367	App\\Models\\User	258	Personal Access Token	e0dd0bc72a49c162da30836d0e1441deb883ae85f3daf6a7d8f6f1d7d1e64326	["*"]	\N	\N	2025-07-12 12:01:51	2025-07-12 12:01:51
368	App\\Models\\User	261	Personal Access Token	5742082a9c9f98eeaa51b1de866ef5a8fe4fd51b81f2767028cbde4fb10c07fe	["*"]	\N	\N	2025-07-12 12:03:11	2025-07-12 12:03:11
369	App\\Models\\User	260	Personal Access Token	3ee712efed3c00f51de03dfa3db4095050ac5d06420ee0a19495c3be99934fd4	["*"]	\N	\N	2025-07-12 12:03:56	2025-07-12 12:03:56
370	App\\Models\\User	265	Personal Access Token	dbe89c6632132fcde685cc965d4ec2bfe20fd904168cd22c3ae46e8ef0eee3b8	["*"]	\N	\N	2025-07-12 12:05:55	2025-07-12 12:05:55
371	App\\Models\\User	211	Personal Access Token	fa28cd591df03ab297607eff2f0a216b565828497242373d0ef531cea5e0a4f0	["*"]	\N	\N	2025-07-12 12:08:24	2025-07-12 12:08:24
372	App\\Models\\User	260	Personal Access Token	499d58951175c61f149647ab412d641d09c5382d6eafb1ca75538291085febf0	["*"]	\N	\N	2025-07-12 12:13:18	2025-07-12 12:13:18
373	App\\Models\\User	197	Personal Access Token	8d88e0a36235585262e1b61e269fa333e9cecfac043e5af6ae99fb7618a0cf98	["*"]	\N	\N	2025-07-12 12:20:14	2025-07-12 12:20:14
374	App\\Models\\User	260	Personal Access Token	d6f89b2401ca1f321a0ddb1fa21b4eee6cdac05d5bcd5626444bb8220668e964	["*"]	\N	\N	2025-07-12 12:30:15	2025-07-12 12:30:15
375	App\\Models\\User	260	Personal Access Token	607806135cd7cad5b51a9b9d1c31ad30156211c63dbcef19fbaa427f49336204	["*"]	\N	\N	2025-07-12 12:33:04	2025-07-12 12:33:04
376	App\\Models\\User	260	Personal Access Token	41320a09b1aee99176957a95d5f19e49268586f122f689617a16f417c973083e	["*"]	\N	\N	2025-07-12 12:34:36	2025-07-12 12:34:36
377	App\\Models\\User	260	Personal Access Token	86b90d25c51a9b52db93d787704d6d00e0e11f0e241eef59d1ea954b604f7693	["*"]	\N	\N	2025-07-12 12:36:22	2025-07-12 12:36:22
378	App\\Models\\User	260	Personal Access Token	a2e9ef6c3894af0a11815d7d356c5130748c18e9cd139502124d1f165f3cc83f	["*"]	\N	\N	2025-07-12 12:48:13	2025-07-12 12:48:13
379	App\\Models\\User	260	Personal Access Token	5e827c6e3aaf2d897f09bade9dd1454b8436f3f09188c0a7d8238e5965c6524b	["*"]	\N	\N	2025-07-12 13:02:24	2025-07-12 13:02:24
380	App\\Models\\User	260	Personal Access Token	9ba81f147537ec09c3188d5b0cc131a2ddd117c6ab48361d0535acc214b63ff7	["*"]	\N	\N	2025-07-12 13:17:20	2025-07-12 13:17:20
381	App\\Models\\User	260	Personal Access Token	47a648f6a05eaf6a24577f50c8f9e125dc219b5937ed988ef5b52f20dbd2fdf3	["*"]	\N	\N	2025-07-12 13:34:05	2025-07-12 13:34:05
382	App\\Models\\User	260	Personal Access Token	2ee07d0a471b5cb40253c997b9fd9775fc5f34da78fe25a502a70b76e2103fea	["*"]	\N	\N	2025-07-12 13:46:20	2025-07-12 13:46:20
383	App\\Models\\User	260	Personal Access Token	6bbe177db437d21983286076e1f92baecfc19e989ee1a866494ac1b09e6ab873	["*"]	\N	\N	2025-07-12 13:59:48	2025-07-12 13:59:48
384	App\\Models\\User	49	Personal Access Token	6bab963b06eeb6d723ea3c41c323d9d63950e66d3a8aa329aedae1779fa1c4b5	["*"]	\N	\N	2025-07-12 14:40:46	2025-07-12 14:40:46
385	App\\Models\\User	245	Personal Access Token	c7eb2b0290935162ac6769072d93ad50b1c5aace6a59164bbff87f1e7d127b86	["*"]	\N	\N	2025-07-13 02:12:09	2025-07-13 02:12:09
386	App\\Models\\User	260	Personal Access Token	8a158f71d1e8bbd58b0d65a751a5a221bf159638f3aff4121b67a4f44a42dd9d	["*"]	\N	\N	2025-07-13 02:51:20	2025-07-13 02:51:20
387	App\\Models\\User	266	Personal Access Token	6aa2e0c195f69f306e30d27107f8c7cc1faabb55ef3fa8153c35c21d4e3a1bb4	["*"]	\N	\N	2025-07-13 07:26:29	2025-07-13 07:26:29
388	App\\Models\\User	266	Personal Access Token	6fa7599054ed47598a0b106acac4c855cef59688837e2f99b6d1ffdeaf6121f6	["*"]	\N	\N	2025-07-13 07:26:33	2025-07-13 07:26:33
389	App\\Models\\User	263	Personal Access Token	c510469f85864dfdf724cfc3ba5275414eca74518fd50a540d9f84c271458c0b	["*"]	\N	\N	2025-07-13 07:38:54	2025-07-13 07:38:54
390	App\\Models\\User	264	Personal Access Token	2d54e6157bc8315e7d2614a860d9b375aba55332fb3c9b26f72a49300e839e45	["*"]	\N	\N	2025-07-13 07:43:50	2025-07-13 07:43:50
391	App\\Models\\User	267	Personal Access Token	8175e150e9bd51f5b5ecb3f666c443d9618bf504c231650539a9434f83f2f053	["*"]	\N	\N	2025-07-13 07:55:42	2025-07-13 07:55:42
392	App\\Models\\User	267	Personal Access Token	f33b81959e92f8a39415fe2231789337a29e9bd11c5781a19102d3b29ddc5065	["*"]	\N	\N	2025-07-13 07:55:48	2025-07-13 07:55:48
393	App\\Models\\User	267	Personal Access Token	6a47bd43d4dfb1ce8c852d2242e816fd03611f23b661fddfc90f7af691f9f7d3	["*"]	\N	\N	2025-07-13 08:24:33	2025-07-13 08:24:33
394	App\\Models\\User	262	Personal Access Token	60b1da937ca0df99831fbb92744dcea0cb754619f225f35f18b6e0e8e3e5176e	["*"]	\N	\N	2025-07-13 08:30:50	2025-07-13 08:30:50
395	App\\Models\\User	262	Personal Access Token	0c4a10771628b8c03a818098d75ab552dc6613feedbd6263e986000d7e0d1a61	["*"]	\N	\N	2025-07-13 10:27:28	2025-07-13 10:27:28
396	App\\Models\\User	260	Personal Access Token	e6cd33a0c841bd60eac58bf75744f4660cc03fe192ac9dc5d02c6c65bcb9d2bb	["*"]	\N	\N	2025-07-13 10:28:14	2025-07-13 10:28:14
397	App\\Models\\User	260	Personal Access Token	730e5b2adfabffca318c3b3fee96f02764877ea63315909dc4049bc5a5a30825	["*"]	\N	\N	2025-07-13 10:34:11	2025-07-13 10:34:11
398	App\\Models\\User	267	Personal Access Token	60a5e051a066594ac470d3b3a6f7b2da8441f114ffad3c752949c4fc38a8f850	["*"]	\N	\N	2025-07-13 10:56:26	2025-07-13 10:56:26
399	App\\Models\\User	263	Personal Access Token	9ea1d90c399561662c6837ae73bda084386ccfae7b7f61293b293b53c98cc509	["*"]	\N	\N	2025-07-13 11:02:20	2025-07-13 11:02:20
400	App\\Models\\User	268	Personal Access Token	38123c021d1f65e68d1fa5f75dbd31f6d2836bf96c832b72e3c1ac71726bddf7	["*"]	\N	\N	2025-07-13 11:10:11	2025-07-13 11:10:11
401	App\\Models\\User	268	Personal Access Token	ef6317aa53decff9863ff3843618513b9569c4fd04bc7f23846f083f45f001d1	["*"]	\N	\N	2025-07-13 11:10:16	2025-07-13 11:10:16
402	App\\Models\\User	268	Personal Access Token	c15bde4625b26a43758bc8c2da9a5ac9145236540e78e2a8f48ef1dd421dca21	["*"]	\N	\N	2025-07-13 11:13:17	2025-07-13 11:13:17
403	App\\Models\\User	268	Personal Access Token	f920e64da627179afa6c7c7ad706de5fe74c04dcae5d09b53310721c4b1bef0f	["*"]	\N	\N	2025-07-13 11:19:28	2025-07-13 11:19:28
404	App\\Models\\User	260	Personal Access Token	6784fa05ec5ddc8e5935dee882dd4b1b09f6ddccc437eb2134c208c41b670da1	["*"]	\N	\N	2025-07-13 11:25:37	2025-07-13 11:25:37
405	App\\Models\\User	265	Personal Access Token	22ad08b5a4308fcf6ef3e71320d0d820b73144fd44c19c53ed9ea231f0700abc	["*"]	\N	\N	2025-07-13 11:26:19	2025-07-13 11:26:19
406	App\\Models\\User	268	Personal Access Token	7a3cf324a84b5c7b89b3957d70793c0a02d8f876b62fff682a422f0c33f78ec7	["*"]	\N	\N	2025-07-13 11:31:43	2025-07-13 11:31:43
407	App\\Models\\User	260	Personal Access Token	55c87cd469b5696f1efc4ebd67e54e6412ff9f53262453c6fab0df318a8d98e5	["*"]	\N	\N	2025-07-13 11:32:45	2025-07-13 11:32:45
408	App\\Models\\User	268	Personal Access Token	681d9e1b8f7e17a482a76c3da6bdd167a38e4554d2620d495f8977b30f79bc62	["*"]	\N	\N	2025-07-13 11:33:46	2025-07-13 11:33:46
409	App\\Models\\User	197	Personal Access Token	4b8f252d7487802ebd1c9607c8e1b697ef223c9fe52894b756bf27606e4aef36	["*"]	\N	\N	2025-07-13 11:43:48	2025-07-13 11:43:48
410	App\\Models\\User	268	Personal Access Token	84f273ebfdd3c421ecae75b4e8dc72a95d43e0d55f06d38eda5d785ba29e09e3	["*"]	\N	\N	2025-07-13 12:01:50	2025-07-13 12:01:50
411	App\\Models\\User	260	Personal Access Token	268d78f182e5b60e8a8f1ee7d7af3e225c715e6951e9dc0896e57ba1c5ff0220	["*"]	\N	\N	2025-07-13 12:08:45	2025-07-13 12:08:45
412	App\\Models\\User	265	Personal Access Token	74849dcc351053bf2e4a951165c4ae276eb5a1d11d22c4790ce7ece92b1b9fa7	["*"]	\N	\N	2025-07-13 12:53:08	2025-07-13 12:53:08
413	App\\Models\\User	211	Personal Access Token	7bfbc35e09d76e73fc6613b46802ab58794d112c19e7576f626d9da6444663fe	["*"]	\N	\N	2025-07-13 12:54:53	2025-07-13 12:54:53
414	App\\Models\\User	269	Personal Access Token	d74e14c130ff369ee4e748e5addd11df5153fc4ccbb8e5582ece18066cc12303	["*"]	\N	\N	2025-07-13 13:59:37	2025-07-13 13:59:37
415	App\\Models\\User	269	Personal Access Token	bc18bd173610c6dd2ce1e920e5718e1f0108b2bf4c9b26fb8e5b6191b652476e	["*"]	\N	\N	2025-07-13 13:59:41	2025-07-13 13:59:41
416	App\\Models\\User	211	Personal Access Token	b524d9d84feb26a3264aa73e1be7ad278e7216ab83fe6a64983ca58d4e83a4e6	["*"]	\N	\N	2025-07-13 14:02:49	2025-07-13 14:02:49
417	App\\Models\\User	270	Personal Access Token	5f29a5ae0a1db81f35e51684db383691bce7e61ed8d46a1360a015c824d1360f	["*"]	\N	\N	2025-07-13 15:22:32	2025-07-13 15:22:32
418	App\\Models\\User	270	Personal Access Token	a3e09d2339db18586d5be54660ea9e31e81eadfd7bedc8a28438271b395c19db	["*"]	\N	\N	2025-07-13 15:22:36	2025-07-13 15:22:36
419	App\\Models\\User	268	Personal Access Token	5602dd705a19885978d206ab2a4b7e0c6a4fa39f20118c3b8a6d3f25fb51fbb1	["*"]	\N	\N	2025-07-13 15:57:34	2025-07-13 15:57:34
420	App\\Models\\User	262	Personal Access Token	1b289b7b0c58dd9cfeee0e3a8866d5fd00d382ad32e2a23067330b8d89cdd79d	["*"]	\N	\N	2025-07-13 19:20:42	2025-07-13 19:20:42
421	App\\Models\\User	271	Personal Access Token	e6808481426c62faecbccbe1d63eb11c526da471d486d5005d1f700937a788ef	["*"]	\N	\N	2025-07-13 20:16:01	2025-07-13 20:16:01
422	App\\Models\\User	271	Personal Access Token	1f0866a36fde2ffbd87f4e8475d58b0f0416b5fc17ca9df565e6f9a77755f5ef	["*"]	\N	\N	2025-07-13 20:16:06	2025-07-13 20:16:06
423	App\\Models\\User	272	Personal Access Token	cefd9e0a97b977dc413651b4f429e0aece527616df9c1ac456e19c7c5fa63e6f	["*"]	\N	\N	2025-07-13 21:01:37	2025-07-13 21:01:37
424	App\\Models\\User	272	Personal Access Token	b1138e862c2590cdfde999ed2f5c013e1ecca26629f6ccbd8bb31fb87740f741	["*"]	\N	\N	2025-07-13 21:01:42	2025-07-13 21:01:42
425	App\\Models\\User	268	Personal Access Token	b969205f043ab35812066b701e2e9494cff1e1afd19d4689a168463e18d66797	["*"]	\N	\N	2025-07-13 21:07:48	2025-07-13 21:07:48
426	App\\Models\\User	268	Personal Access Token	8632f3fe7e1ff2297e9fa0571cba62cfa4bee0a073ac22c690705b6090ab91d8	["*"]	\N	\N	2025-07-13 21:19:13	2025-07-13 21:19:13
427	App\\Models\\User	268	Personal Access Token	2b5b994afa68a61a346be524af4731c6a08cd0ff0c1ce61463200030283898f7	["*"]	\N	\N	2025-07-14 04:45:27	2025-07-14 04:45:27
428	App\\Models\\User	260	Personal Access Token	f22dd28291680f4df420c4c3319da6163d07f6efeb146c692af6ce82bb1ce21d	["*"]	\N	\N	2025-07-14 05:54:00	2025-07-14 05:54:00
429	App\\Models\\User	260	Personal Access Token	0ed5853c9995595429553b805870ebe4ff9880008737c2861a7698c3d9954f18	["*"]	\N	\N	2025-07-14 14:05:57	2025-07-14 14:05:57
430	App\\Models\\User	262	Personal Access Token	2c58cfcba12d4a3b8311a81889fe81bea9a03a3c4ddba2fd122ca3ae43e4d1ea	["*"]	\N	\N	2025-07-15 03:34:02	2025-07-15 03:34:02
431	App\\Models\\User	273	Personal Access Token	9e75db2d267c64e16b5a5686b887b0212e6b7c471536e0a234ebf45cd5a91d90	["*"]	\N	\N	2025-07-16 07:15:59	2025-07-16 07:15:59
432	App\\Models\\User	273	Personal Access Token	124d7867c981baa125118e3f5901001c3ae7aa821756f0c76f128803d75ff564	["*"]	\N	\N	2025-07-16 07:16:05	2025-07-16 07:16:05
433	App\\Models\\User	274	Personal Access Token	fc10b0783f362309778f1f560537fa9fd9407a49d76b7a3de2b84f162dc2a552	["*"]	\N	\N	2025-07-16 07:33:30	2025-07-16 07:33:30
434	App\\Models\\User	274	Personal Access Token	669f8421b7c053cf40450a9e7350c021f23dbae44fdce4691d10eda930eaaf42	["*"]	\N	\N	2025-07-16 07:33:35	2025-07-16 07:33:35
435	App\\Models\\User	273	Personal Access Token	8f93da4548e508263d51e740e61dc4652b6498c581d76757cea0cdc3d9478c64	["*"]	\N	\N	2025-07-16 08:15:48	2025-07-16 08:15:48
436	App\\Models\\User	273	Personal Access Token	52825203b9c82ecf05ebad4501c8b969ab625038a183d6b6c7ebc811bfa880c1	["*"]	\N	\N	2025-07-16 08:18:44	2025-07-16 08:18:44
437	App\\Models\\User	275	Personal Access Token	20dcd801aa8a7f999a366ddea9cd30f80e2180ecd93ac8d3f2a52e7cf48d962a	["*"]	\N	\N	2025-07-16 09:02:22	2025-07-16 09:02:22
438	App\\Models\\User	275	Personal Access Token	a80a63d42c07b293d257e45e9186070f25d401d1d80b8dd6b07b5cb10fed5ac8	["*"]	\N	\N	2025-07-16 09:02:29	2025-07-16 09:02:29
439	App\\Models\\User	262	Personal Access Token	ff143f114f077f44ba7671bcc7699e3c94f4fe8d7f97876c40ae5c248fadad74	["*"]	\N	\N	2025-07-16 09:05:09	2025-07-16 09:05:09
440	App\\Models\\User	273	Personal Access Token	6d9ccadce1a67172ca5cecf10ebfa7852f988568f2c7fafd116417971c013dd5	["*"]	\N	\N	2025-07-16 09:13:25	2025-07-16 09:13:25
441	App\\Models\\User	260	Personal Access Token	878e6d89d7d3df3aaf19405bee52bc83cffc0bd509eb8bcf25dd17e5661fb4d3	["*"]	\N	\N	2025-07-16 09:41:52	2025-07-16 09:41:52
442	App\\Models\\User	273	Personal Access Token	e52a0565900fa5adafe0df4489a460814bba84e544f2a15eee6e4a7d8be1204a	["*"]	\N	\N	2025-07-16 10:00:57	2025-07-16 10:00:57
443	App\\Models\\User	273	Personal Access Token	8cfe3384e380d71e64bceb9fd49bce083c307103f40aa136bf2ef10b0aacf2b4	["*"]	\N	\N	2025-07-16 12:58:09	2025-07-16 12:58:09
444	App\\Models\\User	274	Personal Access Token	94d7a0f0e13dc2016ee2f9f549040e0c66fc1c5be2a08f552766f1773f62525e	["*"]	\N	\N	2025-07-16 13:04:49	2025-07-16 13:04:49
445	App\\Models\\User	274	Personal Access Token	d327f428f63a88711c88feb8414220e3080d77b475dc5af1a7ecce24bbdcc7ec	["*"]	\N	\N	2025-07-16 13:05:38	2025-07-16 13:05:38
446	App\\Models\\User	260	Personal Access Token	faa4014169b99f59945a9d4eed745dd2eaddc29dd8a9283e0eda9c6b422db7a6	["*"]	\N	\N	2025-07-16 13:15:37	2025-07-16 13:15:37
447	App\\Models\\User	262	Personal Access Token	56061faeab279033f185ea3f0b1dab243756a57bb8772c0beb64583711d196f8	["*"]	\N	\N	2025-07-16 13:18:45	2025-07-16 13:18:45
448	App\\Models\\User	274	Personal Access Token	7e0be8c56762f4740d7ef68f62c026993ce4278bd0b32ed32a790d744547716e	["*"]	\N	\N	2025-07-16 14:08:10	2025-07-16 14:08:10
449	App\\Models\\User	274	Personal Access Token	f45a0ef16be74a25e8d15075fd07a607e8bcb3c6e4ba29d6fe6d327659352098	["*"]	\N	\N	2025-07-16 14:16:37	2025-07-16 14:16:37
450	App\\Models\\User	260	Personal Access Token	3f87bde87dfc9e36f67d668da6bd3a8921df46f9c933e29851998786ebc04e76	["*"]	\N	\N	2025-07-16 14:19:21	2025-07-16 14:19:21
451	App\\Models\\User	273	Personal Access Token	1cd40f132d5a60a0ab5852afa3f23dc74808ca859da21765723f29b7c6b73005	["*"]	\N	\N	2025-07-16 14:20:15	2025-07-16 14:20:15
452	App\\Models\\User	276	Personal Access Token	9e9e6f0a192550c66c94d174cc6b0af9237f92d3ab3a6ada2aa880fe74776d36	["*"]	\N	\N	2025-07-16 15:07:13	2025-07-16 15:07:13
453	App\\Models\\User	276	Personal Access Token	5f90a98c059103c0604aec35cb47533858f4bcf2860c452ec35010b0da0ebd78	["*"]	\N	\N	2025-07-16 15:07:20	2025-07-16 15:07:20
454	App\\Models\\User	274	Personal Access Token	dc61ad81b94ffaa6d40d891e2d0ff85b9cbc86f6ba2d902b53704c7c29ab4bb9	["*"]	\N	\N	2025-07-17 05:50:04	2025-07-17 05:50:04
455	App\\Models\\User	273	Personal Access Token	b63bb242c5eb1d011a2cf927f51c67569f81b045c30683fd846ca61f123978eb	["*"]	\N	\N	2025-07-17 06:04:48	2025-07-17 06:04:48
456	App\\Models\\User	277	Personal Access Token	3b0da1a3b1b1821b6fffcdef5625e0752e64605016be93b7509ec3065e672d6c	["*"]	\N	\N	2025-07-17 07:57:53	2025-07-17 07:57:53
457	App\\Models\\User	277	Personal Access Token	5db2caa769a5e732ca73c333c01d8b747f0ac190fbada1a5505c9a5b3de7036e	["*"]	\N	\N	2025-07-17 07:57:59	2025-07-17 07:57:59
458	App\\Models\\User	277	Personal Access Token	d7086e6261d670184d631a34e0d349a9ffde2f56555610696c692da9d8154e05	["*"]	\N	\N	2025-07-17 08:00:25	2025-07-17 08:00:25
459	App\\Models\\User	260	Personal Access Token	46f67be13e2034b81e7c00e4f507e68be1ca9b0b0bdf20026e47f99b97e9c35c	["*"]	\N	\N	2025-07-17 09:25:41	2025-07-17 09:25:41
460	App\\Models\\User	278	Personal Access Token	87e071a244cd4ec1250959b5e294a9b2cf5d648690b6b42d369aaa74628dc499	["*"]	\N	\N	2025-07-19 08:27:48	2025-07-19 08:27:48
461	App\\Models\\User	278	Personal Access Token	dc688e40e073519497c39c784b74ab7fd96c7d5730e3093429b1d8c36aadd288	["*"]	\N	\N	2025-07-19 08:27:55	2025-07-19 08:27:55
462	App\\Models\\User	279	Personal Access Token	5ebccd388859ca12a85800b0f8f0d75bbabff9204b1a16cdb5e678816a8d3eaa	["*"]	\N	\N	2025-07-21 07:03:39	2025-07-21 07:03:39
463	App\\Models\\User	279	Personal Access Token	efa4f2da3e2b5b95b3a577166f6259b875462e1d69ec0bcabbc9b12b27be1658	["*"]	\N	\N	2025-07-21 07:03:45	2025-07-21 07:03:45
464	App\\Models\\User	246	Personal Access Token	f5520085354cbd53230ec0c47ca6eb395861a04728c6b74fae43de608df97106	["*"]	\N	\N	2025-08-13 13:45:20	2025-08-13 13:45:20
465	App\\Models\\User	280	Personal Access Token	e5c4c781be12657871d37f3c72f67be375b6167a80ac5d8c90392a7bad591169	["*"]	\N	\N	2025-08-13 13:55:14	2025-08-13 13:55:14
466	App\\Models\\User	280	Personal Access Token	700c3fef0248fac0aed608ba53bdbf8e01052f4490fdadfda37e82b15bcb3784	["*"]	\N	\N	2025-08-13 13:55:20	2025-08-13 13:55:20
467	App\\Models\\User	246	Personal Access Token	83864125c2cade8938c1dabd0ea28ed51f5db618e89013988bb73839f5f64919	["*"]	\N	\N	2025-08-13 14:53:50	2025-08-13 14:53:50
468	App\\Models\\User	246	Personal Access Token	5c605a53e8f0c7cda28735ada542e6607969535c3a19c9786211a9841cf3c497	["*"]	\N	\N	2025-08-13 17:51:33	2025-08-13 17:51:33
469	App\\Models\\User	246	Personal Access Token	1a4565b76db2fc98b53366f48d8c0751bf786dfaaba1b7eca241a17832561767	["*"]	\N	\N	2025-08-14 09:34:51	2025-08-14 09:34:51
470	App\\Models\\User	281	Personal Access Token	62c28d9be124b835cd0b3670af4d2c060904694378a322b62ca5535856e1f98b	["*"]	\N	\N	2025-08-14 10:41:14	2025-08-14 10:41:14
471	App\\Models\\User	281	Personal Access Token	01bf7f3389761de29511fa764bd5071bb8b0e1dc58b3b1f51dae896df4148408	["*"]	\N	\N	2025-08-14 10:41:20	2025-08-14 10:41:20
472	App\\Models\\User	281	Personal Access Token	818c03d44ac8df1448be75872b9de52a946aa98e8f165e295d3c38e8134eb309	["*"]	\N	\N	2025-08-14 10:42:39	2025-08-14 10:42:39
473	App\\Models\\User	282	Personal Access Token	9f11e68425d16d1968cf24bd9e1f3e8e81875889fccfbebffdabfe919e7852ef	["*"]	\N	\N	2025-08-14 12:36:49	2025-08-14 12:36:49
474	App\\Models\\User	282	Personal Access Token	41f2af835ead519740f11e1220da9c82d2cee940911fa6b98b6b0d61fed46f97	["*"]	\N	\N	2025-08-14 12:36:55	2025-08-14 12:36:55
475	App\\Models\\User	283	Personal Access Token	7c0cc2a83f1bab92a35abe0f38839655012221efb11f2bf58b357b26895560a4	["*"]	\N	\N	2025-08-14 13:09:59	2025-08-14 13:09:59
476	App\\Models\\User	283	Personal Access Token	1e0ae2155ba9011876f42bcf3e23e0643e95d66eb68fa180cbf49eeddc1c0330	["*"]	\N	\N	2025-08-14 13:10:05	2025-08-14 13:10:05
477	App\\Models\\User	216	Personal Access Token	4bdd7c2e64f04682ef7da8ab2272c4060df32272c8ab2ba0fea8ff4dc9ffc50f	["*"]	\N	\N	2025-08-14 13:32:41	2025-08-14 13:32:41
478	App\\Models\\User	257	Personal Access Token	4faa9821c42fdc6c3510df4f19604201a893f3d4d1703a3fcc039baa6dddb246	["*"]	\N	\N	2025-08-14 13:33:30	2025-08-14 13:33:30
479	App\\Models\\User	276	Personal Access Token	43ad80440cda0cf1a0512b02aa94e819dc4a7c41b4d37827d9ee67993eb8b1a8	["*"]	\N	\N	2025-08-14 13:35:37	2025-08-14 13:35:37
480	App\\Models\\User	243	Personal Access Token	29de7611903fcc497a44f86e5bc7c5edeb3d1230cdf6dea4f7a3e8f79ca8e887	["*"]	\N	\N	2025-08-14 14:04:02	2025-08-14 14:04:02
481	App\\Models\\User	284	Personal Access Token	aea8d28f4dae37c6d84c3ad145c94b01ba1ada8070777fcff5bd2a60e233c48a	["*"]	\N	\N	2025-08-17 13:15:49	2025-08-17 13:15:49
482	App\\Models\\User	284	Personal Access Token	c6a617bf7c8aa8c79c3ef10038a65ab4592b7f86f8434adef48a5f36b889d413	["*"]	\N	\N	2025-08-17 13:15:56	2025-08-17 13:15:56
483	App\\Models\\User	285	Personal Access Token	66931ba30fa9318f087c8dced0e1ac5435dfd1047638cd4107b6e576a69cd206	["*"]	\N	\N	2025-08-18 07:59:43	2025-08-18 07:59:43
484	App\\Models\\User	285	Personal Access Token	4b0f905c6dd45ae9ae98923004763252fe7766095e4e66e9d32a5c9c10a79e48	["*"]	\N	\N	2025-08-18 07:59:49	2025-08-18 07:59:49
485	App\\Models\\User	286	Personal Access Token	729622556f8a9080b35f47eb229dc4179c0fcc2940b82cbd83bc9d006abb95e1	["*"]	\N	\N	2025-08-18 11:29:00	2025-08-18 11:29:00
486	App\\Models\\User	286	Personal Access Token	3a141c4f4629fb61fd2a83b417088b5049445f6b221782ec65fec621225f283c	["*"]	\N	\N	2025-08-18 11:29:07	2025-08-18 11:29:07
487	App\\Models\\User	273	Personal Access Token	694b2730508d539864955c015465b580b10e190bd10be6000c91f9089c8c5150	["*"]	\N	\N	2025-08-18 11:55:36	2025-08-18 11:55:36
488	App\\Models\\User	287	Personal Access Token	a77b69551f2d7276974c509a69855b1ea0e530b39ba4d2faefb84a7240b4db95	["*"]	\N	\N	2025-08-18 13:07:46	2025-08-18 13:07:46
489	App\\Models\\User	287	Personal Access Token	5f303dfc29b44abb6e5b73bef9ba90add381a74eefc207aefbabeca821bd5dba	["*"]	\N	\N	2025-08-18 13:07:52	2025-08-18 13:07:52
490	App\\Models\\User	288	Personal Access Token	f8825cdbcb82d91b341427097b10b5232421de620b87a3583afe90589aae7ba4	["*"]	\N	\N	2025-08-19 07:24:53	2025-08-19 07:24:53
491	App\\Models\\User	288	Personal Access Token	8513ff2b4cf3585c89f035801a0d6148ebf788ac578916d748508de8a64dd151	["*"]	\N	\N	2025-08-19 07:24:59	2025-08-19 07:24:59
492	App\\Models\\User	288	Personal Access Token	012921b9a9498f558bbb4e471add24189aede1b8c9f71622112c6e3d4dd4760a	["*"]	\N	\N	2025-08-19 07:26:20	2025-08-19 07:26:20
493	App\\Models\\User	288	Personal Access Token	94643b46dc35dff5bc2992871c869ae31b62c32446c3686296a0a8b018095e4f	["*"]	\N	\N	2025-08-19 07:27:27	2025-08-19 07:27:27
494	App\\Models\\User	288	Personal Access Token	cb9e2e432912518f040af0553b2e0e8538d1b8f52c138c34696953db4f9e36b4	["*"]	\N	\N	2025-08-19 07:41:43	2025-08-19 07:41:43
495	App\\Models\\User	288	Personal Access Token	a4deadf12fa990724586317ea55e7e54ef0693af54c4a9bbd44d30faffc69896	["*"]	\N	\N	2025-08-19 07:47:24	2025-08-19 07:47:24
496	App\\Models\\User	289	Personal Access Token	6c32846f51410ccd62c50874ed0aaf6d1a150f951dd80bb7153cda15fad63c1d	["*"]	\N	\N	2025-08-19 07:54:28	2025-08-19 07:54:28
497	App\\Models\\User	289	Personal Access Token	1c4a673a84638a215970f5dbe8572318405e4b7e11ae73c91e9714c031474ac5	["*"]	\N	\N	2025-08-19 07:54:35	2025-08-19 07:54:35
498	App\\Models\\User	289	Personal Access Token	384d72161235d92c4076bd17bbbcd90173a5fcd7624f7aad89c2b10eefa1757a	["*"]	\N	\N	2025-08-19 07:59:29	2025-08-19 07:59:29
499	App\\Models\\User	288	Personal Access Token	8c62f398cdeb40135c1df0a4984229f47c48ebe241a11db9fb42ac5e5ca3d1e9	["*"]	\N	\N	2025-08-19 08:04:52	2025-08-19 08:04:52
500	App\\Models\\User	279	Personal Access Token	329db6ae741b2901fd9f99783abae90fe59debb66eb58cd51699267de66c4b42	["*"]	\N	\N	2025-08-19 08:19:23	2025-08-19 08:19:23
501	App\\Models\\User	290	Personal Access Token	889bcc61b8db6f907d2b830b385130da44eab0ec8704cf4e71c5fbaf22f546b3	["*"]	\N	\N	2025-08-25 17:06:59	2025-08-25 17:06:59
502	App\\Models\\User	290	Personal Access Token	a85767c0edb3f86cced23676e1ccc98731473299a29290fd0c3694a73816faef	["*"]	\N	\N	2025-08-25 17:07:07	2025-08-25 17:07:07
503	App\\Models\\User	291	Personal Access Token	f9e5b0b140679af238da74492d17888cda2f942f3a23a672b0b124fa8c885e2c	["*"]	\N	\N	2025-09-04 18:26:46	2025-09-04 18:26:46
504	App\\Models\\User	291	Personal Access Token	22918663603eae87f700f8245421933d608ea03f242c4324b651cc685a9fd4dd	["*"]	\N	\N	2025-09-04 18:26:51	2025-09-04 18:26:51
505	App\\Models\\User	248	Personal Access Token	214ccfb90d74f04581e5d936731573bcf4665c216e16f6ef37b09cccb295aca7	["*"]	\N	\N	2025-09-23 12:53:58	2025-09-23 12:53:58
506	App\\Models\\User	292	Personal Access Token	3dbdec2ca3d63262d86081dd388dcb7a4b1e0f9a53e63debdd401be9f89c7075	["*"]	\N	\N	2025-09-23 12:56:47	2025-09-23 12:56:47
507	App\\Models\\User	292	Personal Access Token	9250f9590d2e55b3c2aaa34971725d763a037012e901751e7dca2d03622da8e7	["*"]	\N	\N	2025-09-23 12:56:54	2025-09-23 12:56:54
508	App\\Models\\User	293	Personal Access Token	c8c6a22c1b1ee346d5884f613c32130ba89f029de6532623e7cf5e2195fbc102	["*"]	\N	\N	2025-09-23 18:17:12	2025-09-23 18:17:12
509	App\\Models\\User	293	Personal Access Token	49a62c9931ac8c03b9384042c40c30ecb08b1656158b1996b78376f41a092cad	["*"]	\N	\N	2025-09-23 18:17:18	2025-09-23 18:17:18
510	App\\Models\\User	294	Personal Access Token	1abc118dfe0a5d43026c2e79610ef7e00d31c3090b90e159736b0debc34b4fc7	["*"]	\N	\N	2025-09-24 07:47:54	2025-09-24 07:47:54
511	App\\Models\\User	294	Personal Access Token	523aba8661685e768628ab0fac34038ea79fd496369c070ec38e8894566c2103	["*"]	\N	\N	2025-09-24 07:48:02	2025-09-24 07:48:02
512	App\\Models\\User	295	Personal Access Token	453605d35b555248a819f827a9895f566a14d5aad0d3a94c63b9db03e0773a4a	["*"]	\N	\N	2025-09-24 11:14:17	2025-09-24 11:14:17
513	App\\Models\\User	295	Personal Access Token	be1b28b13e15f721f390bd4ea771a264180fe4c4bb924e82bf1a45c278d8a729	["*"]	\N	\N	2025-09-24 11:14:23	2025-09-24 11:14:23
514	App\\Models\\User	296	Personal Access Token	aa4ecd2a5a38c1d030f6c63843863b9538ff74defd0cdfa468c839d84ccc6e80	["*"]	\N	\N	2025-09-24 14:24:01	2025-09-24 14:24:01
515	App\\Models\\User	296	Personal Access Token	6d6cd7b1662074ed0303cd83c13ee55a1271833a725759ce8ca118831c4e8ae5	["*"]	\N	\N	2025-09-24 14:24:07	2025-09-24 14:24:07
516	App\\Models\\User	297	Personal Access Token	87eebd02eadac533278705b5a377dc96e7ab751dac2c1e2c9d590b0bf5b4aa6e	["*"]	\N	\N	2025-09-24 17:38:12	2025-09-24 17:38:12
517	App\\Models\\User	297	Personal Access Token	620352455c32804a2c2136d6defca51de43d9b31f555834c7a075e30aeb8ed70	["*"]	\N	\N	2025-09-24 17:38:18	2025-09-24 17:38:18
518	App\\Models\\User	298	Personal Access Token	914179e8c472c0ebdd283dd842d8228464d540a0664f53469f8c4ad2546d5a33	["*"]	\N	\N	2025-09-25 05:57:17	2025-09-25 05:57:17
519	App\\Models\\User	298	Personal Access Token	f008f9977f66dee31245d23245c04ff78d9ff774903fb6552c8a345a5e66ed82	["*"]	\N	\N	2025-09-25 05:57:23	2025-09-25 05:57:23
520	App\\Models\\User	299	Personal Access Token	bb1de56a836211d38015ecef2de474be99e914190f95b662ccc3e5976fea87b1	["*"]	\N	\N	2025-11-10 12:39:42	2025-11-10 12:39:42
521	App\\Models\\User	299	Personal Access Token	33a3ffea7ec9ec9d7f224caaeacd465914155b202e1e8e13bfdd80314939684f	["*"]	\N	\N	2025-11-10 12:39:49	2025-11-10 12:39:49
522	App\\Models\\User	228	Personal Access Token	85a12f39e90a3c9761abfa43155aa5d22ffcd49cf09c70b76b9d9dd38db86df4	["*"]	\N	\N	2025-11-10 13:01:57	2025-11-10 13:01:57
523	App\\Models\\User	229	Personal Access Token	20f69d83740fc70402c63b338254fea80a26879c138d70df2ef380b80269a5d8	["*"]	\N	\N	2025-11-10 13:02:31	2025-11-10 13:02:31
524	App\\Models\\User	243	Personal Access Token	d9558d49db486c403946689a1d76201a476de476ba8669292739a4f6bb4a5721	["*"]	\N	\N	2025-11-10 13:03:46	2025-11-10 13:03:46
525	App\\Models\\User	300	Personal Access Token	7fbe3546b8f46eb187b85934095fb686409fd34042e61990bb453ec2b62fafc5	["*"]	\N	\N	2025-11-11 05:48:31	2025-11-11 05:48:31
526	App\\Models\\User	300	Personal Access Token	eeffa56b6d4818a2a1249f058f2c1fb2cfe1936bb207c0a06bdab7d8c0d2cb0d	["*"]	\N	\N	2025-11-11 05:48:37	2025-11-11 05:48:37
527	App\\Models\\User	300	Personal Access Token	466dc26609a649d1faa4e3543fc15ebf23d9b0e97cd7538896192340dcc885c3	["*"]	\N	\N	2025-11-11 05:55:46	2025-11-11 05:55:46
528	App\\Models\\User	300	Personal Access Token	4163f54f6ad14c6e4f5a379e77d4f70c5bd80decfa7e33e34737af42b3ec0f16	["*"]	\N	\N	2025-11-11 06:09:11	2025-11-11 06:09:11
529	App\\Models\\User	299	Personal Access Token	dbd5ed6a68a5666cb3b8fbc3ce1c8d354c2c274ec043242b11833373799a864e	["*"]	\N	\N	2025-11-11 12:12:25	2025-11-11 12:12:25
530	App\\Models\\User	294	Personal Access Token	d058e59c9097a6a8791a386dcd32e38123b29a309a73c3a6f339f1e8ddfefdad	["*"]	\N	\N	2025-11-14 04:45:36	2025-11-14 04:45:36
531	App\\Models\\User	301	Personal Access Token	f74fdc62b7d42f74acd0473760fd25a86fd5392e57e0e8172971d8142f126ef7	["*"]	\N	\N	2025-11-14 06:25:36	2025-11-14 06:25:36
532	App\\Models\\User	301	Personal Access Token	d71e988696b5fd6c89c5ab23a6addee70eba96695ced6e8ac2dd7497d68e96d1	["*"]	\N	\N	2025-11-14 06:25:42	2025-11-14 06:25:42
533	App\\Models\\User	301	Personal Access Token	04511e01553cf033fa53ab34015e1c15c92d9efd227dbf22509a4c033a4ea968	["*"]	\N	\N	2025-11-14 06:46:23	2025-11-14 06:46:23
534	App\\Models\\User	302	Personal Access Token	e17849f805423b808a5f35b6f1f071ad761c5bc21021664ababb98f6b421d920	["*"]	\N	\N	2025-11-14 07:46:19	2025-11-14 07:46:19
535	App\\Models\\User	302	Personal Access Token	8c4cfea09de4b3ca57e036c202875238e30534aa3641b118f0b8a14dc17fe1ac	["*"]	\N	\N	2025-11-14 07:46:21	2025-11-14 07:46:21
536	App\\Models\\User	210	Personal Access Token	63d08798a4c61e52ce9eed38529d67f4d7e755752e3d0e8fa9bbb8c5526ce5a8	["*"]	\N	\N	2025-11-14 15:35:37	2025-11-14 15:35:37
537	App\\Models\\User	301	Personal Access Token	fb21cccf8561f39a08832d028c00b4ec56456c12eb062ff701b811964d450c7f	["*"]	\N	\N	2025-11-14 18:27:30	2025-11-14 18:27:30
538	App\\Models\\User	210	Personal Access Token	5ef9ae4a1fb724c6e6ad7a077f9687dbf0bdb04a741072d37b063ecd863077ce	["*"]	\N	\N	2025-11-14 18:27:56	2025-11-14 18:27:56
539	App\\Models\\User	192	Personal Access Token	d3cc539c9a46be28241f2ede25c9c0d150132ced78e805d4fda2a25e6dbdaee2	["*"]	\N	\N	2025-11-14 18:29:53	2025-11-14 18:29:53
540	App\\Models\\User	210	Personal Access Token	23293ce4e0dc47dca791325e5d4c82ce67cf0c9c85e1742ae0006cae28f3fa9d	["*"]	\N	\N	2025-11-14 18:37:49	2025-11-14 18:37:49
541	App\\Models\\User	192	Personal Access Token	104249ba50b8af9aad580a63bd2795c2986bd7714fe06971ee7d116f65d79e58	["*"]	\N	\N	2025-11-14 18:41:03	2025-11-14 18:41:03
542	App\\Models\\User	303	Personal Access Token	664873179cd2a1cd879d4ddb041839d71ac63d28a4ebcb3d24ad5cb2021f37df	["*"]	\N	\N	2025-11-15 08:43:09	2025-11-15 08:43:09
543	App\\Models\\User	303	Personal Access Token	38c3e37d59adcf79babde6a15832800120896546bd846f6d61a87edc5f04108d	["*"]	\N	\N	2025-11-15 08:43:11	2025-11-15 08:43:11
544	App\\Models\\User	210	Personal Access Token	f03849d5d2c9f7a9ab1944a173c3153afb56adb53ea63a45d58cbf83fb77b58b	["*"]	\N	\N	2025-11-15 09:27:01	2025-11-15 09:27:01
545	App\\Models\\User	304	Personal Access Token	c8825eae29c8844fa9dda7f5ddc0793dc261c5dda185adb207ba470006c18a48	["*"]	\N	\N	2025-11-15 11:51:06	2025-11-15 11:51:06
546	App\\Models\\User	304	Personal Access Token	465ee89b9fbaa9c5366887c2f377f7698fb3341a7e7cff7a3dcd318825c25d4f	["*"]	\N	\N	2025-11-15 11:51:09	2025-11-15 11:51:09
547	App\\Models\\User	267	Personal Access Token	24fa98f552643b7c0d8390d612667fd2d49ca83257414329fbf4d35dbbd532a6	["*"]	\N	\N	2025-11-17 05:36:39	2025-11-17 05:36:39
548	App\\Models\\User	267	Personal Access Token	fa9203cbef9e55e1823276e95d2ceb1ceecde6fdf85c49f0f3bb08d7399cf317	["*"]	\N	\N	2025-11-17 06:48:15	2025-11-17 06:48:15
549	App\\Models\\User	299	Personal Access Token	dee6b90a5d836e91f95e1572952930d57936c012f21a77f5eec6504fed2dc389	["*"]	\N	\N	2025-11-17 08:04:25	2025-11-17 08:04:25
550	App\\Models\\User	305	Personal Access Token	24ea7bbb21912834a1840345b69a9bf82d1d4c06ebbb5842019cd1361603d492	["*"]	\N	\N	2025-11-17 14:06:24	2025-11-17 14:06:24
551	App\\Models\\User	305	Personal Access Token	8d787b2bf39cc2ddea49802bdc6c8ac1973eb85769b74dc12c2364534a97b12a	["*"]	\N	\N	2025-11-17 14:06:26	2025-11-17 14:06:26
552	App\\Models\\User	305	Personal Access Token	93ab6801ed747cae4010b686135b2e1141841f4229c576b1ccf480884273c335	["*"]	\N	\N	2025-11-17 14:16:30	2025-11-17 14:16:30
553	App\\Models\\User	306	Personal Access Token	3b77b03c358b1fb56d8ac10cfbc8ab6ad95ed2a1b2ffdcf52769f3854c8418f0	["*"]	\N	\N	2025-11-17 14:24:00	2025-11-17 14:24:00
554	App\\Models\\User	306	Personal Access Token	bf4243087b6f628e5e612a405d4966488e293bbdd476d3b95cbbc6ed4bc935f8	["*"]	\N	\N	2025-11-17 14:24:01	2025-11-17 14:24:01
555	App\\Models\\User	303	Personal Access Token	b054de4f3ab3a9265fa18345e7b5705c6da45705b6d822eddf5d69aabbe199f9	["*"]	\N	\N	2025-11-17 14:49:23	2025-11-17 14:49:23
556	App\\Models\\User	272	Personal Access Token	d5dd66f7aa44cd54e2079c3e0a794ed062e095a6faa92434ec2e88013a85fa2d	["*"]	\N	\N	2025-11-17 14:52:36	2025-11-17 14:52:36
557	App\\Models\\User	264	Personal Access Token	194f6dc9968c87f862b4998264c952ecfdc5b0686c62349b4fe362aba1a29e01	["*"]	\N	\N	2025-11-17 15:07:58	2025-11-17 15:07:58
558	App\\Models\\User	305	Personal Access Token	7a5b28c39f2be0b5640e53c484f323593a3b749ce754a854b0e11f4dc2e4b0ee	["*"]	\N	\N	2025-11-17 15:28:18	2025-11-17 15:28:18
559	App\\Models\\User	192	Personal Access Token	e445675372f988052b61457e976bee66cca26b2c980519820535d3181cc56da1	["*"]	\N	\N	2025-11-17 15:30:02	2025-11-17 15:30:02
560	App\\Models\\User	307	Personal Access Token	907da30fc2a64150734957a745b8d84815d75d846d9fe648040feeb6ef7836df	["*"]	\N	\N	2025-11-18 06:06:58	2025-11-18 06:06:58
561	App\\Models\\User	307	Personal Access Token	6bcb51c65e893b699fc77e897ddb9da684e5b2d8051ff7011ec3737a6e81258d	["*"]	\N	\N	2025-11-18 06:07:01	2025-11-18 06:07:01
562	App\\Models\\User	308	Personal Access Token	0b5981ea80bcdf17202f37d997601d99b648241858ace1efff3c527f4e3cea88	["*"]	\N	\N	2025-11-18 06:19:43	2025-11-18 06:19:43
563	App\\Models\\User	308	Personal Access Token	a8aea1ff4b44affd9af2f66c48792143caae43ad301a005b6f9788654b0c61c8	["*"]	\N	\N	2025-11-18 06:19:45	2025-11-18 06:19:45
564	App\\Models\\User	309	Personal Access Token	e078f36e501c954e160af80ded7917777b130b1f3216182032ec9d1859a7af88	["*"]	\N	\N	2025-11-18 06:22:51	2025-11-18 06:22:51
565	App\\Models\\User	309	Personal Access Token	fbd649c8c75f926b25216eb700d30f259f25677d235fdcf05222a210c2be413b	["*"]	\N	\N	2025-11-18 06:22:53	2025-11-18 06:22:53
566	App\\Models\\User	310	Personal Access Token	60a4eac013294fa1b455db911bd2141a191b4dbf4072246fd29dbff2ec7ab689	["*"]	\N	\N	2025-11-18 09:18:56	2025-11-18 09:18:56
567	App\\Models\\User	310	Personal Access Token	9bcb6f0b369f631ccf1f0bd18bf0e88321ba1989bc3a5e3539415d2f6a0d0396	["*"]	\N	\N	2025-11-18 09:18:59	2025-11-18 09:18:59
568	App\\Models\\User	310	Personal Access Token	b68660278bd3ef020f217f745cfb78f7ed064881f7fdab599ccae180742444a7	["*"]	\N	\N	2025-11-18 09:29:40	2025-11-18 09:29:40
569	App\\Models\\User	311	Personal Access Token	c16fa88fe454518d47387c9c44eb90d9bc0e8ad99d4fa38d2b0d2f3aad7724c0	["*"]	\N	\N	2025-11-18 09:32:24	2025-11-18 09:32:24
570	App\\Models\\User	311	Personal Access Token	5967d3cef3e35677affadc62d3a740c20c7c394ef7a311df5f0efa8e5652d499	["*"]	\N	\N	2025-11-18 09:32:26	2025-11-18 09:32:26
571	App\\Models\\User	311	Personal Access Token	c55988572a8ab3e6b09c4fe6f5d52d793f2b5380fdf26026f886584eeb26647d	["*"]	\N	\N	2025-11-18 09:34:35	2025-11-18 09:34:35
572	App\\Models\\User	294	Personal Access Token	9ceaf9136ddac81dc4f4ca594037f63af335b2993a88a9c74caa1b8bedb7c665	["*"]	\N	\N	2025-11-18 10:53:03	2025-11-18 10:53:03
573	App\\Models\\User	312	Personal Access Token	f4daf948938d538ee1fba59c3384e97cbf9cd7eebcccf2f8e85c7b3b84940841	["*"]	\N	\N	2025-11-19 06:30:29	2025-11-19 06:30:29
574	App\\Models\\User	312	Personal Access Token	b262ebcfcfda826971b5560f81a04ccba0be4edb3be773ce29bcff302955ec9d	["*"]	\N	\N	2025-11-19 06:30:31	2025-11-19 06:30:31
575	App\\Models\\User	192	Personal Access Token	4adf0cc148930548f357f9b82f16aa96cc164ea10e9966710a266ae3d7ce9f29	["*"]	\N	\N	2025-11-21 18:22:10	2025-11-21 18:22:10
576	App\\Models\\User	313	Personal Access Token	66c63a4da5f17188ddc7040e8c9c1ee106e1a7da6425c3743fc1b2ccef95f8da	["*"]	\N	\N	2025-11-24 11:11:41	2025-11-24 11:11:41
577	App\\Models\\User	313	Personal Access Token	b200d1232a1d5c44e7afd3eb71ea378a78bc8c949254c6e2307daf0bb748a176	["*"]	\N	\N	2025-11-24 11:11:43	2025-11-24 11:11:43
578	App\\Models\\User	314	Personal Access Token	7104bf19f2787b54f17285810ff88995604194c54bc4d915185e9dca00bf297c	["*"]	\N	\N	2025-11-27 18:18:36	2025-11-27 18:18:36
579	App\\Models\\User	314	Personal Access Token	adc3801f06c3df3f1226e9eea3162776f7ac6aa04734ec8225366d12fe1860d0	["*"]	\N	\N	2025-11-27 18:18:39	2025-11-27 18:18:39
580	App\\Models\\User	315	Personal Access Token	edd8fc7c276aa43d82f43db382a647b49500aafbba841c8cb678fda8bb24b125	["*"]	\N	\N	2025-11-27 18:24:24	2025-11-27 18:24:24
581	App\\Models\\User	315	Personal Access Token	d818db925ca2d0431bfa75942a63ed0299b11a288080554081f43213ad2c7d8c	["*"]	\N	\N	2025-11-27 18:24:26	2025-11-27 18:24:26
582	App\\Models\\User	192	Personal Access Token	5e9d443696431fe687f93d3647847bd4a80bc306470a5df321877b660b81e313	["*"]	\N	\N	2025-12-10 04:53:33	2025-12-10 04:53:33
583	App\\Models\\User	192	Personal Access Token	d799608598b0f363f143392ceb0fea4114ffa9995be146ab3eff43e6dafe7ffd	["*"]	\N	\N	2025-12-11 15:36:13	2025-12-11 15:36:13
584	App\\Models\\User	316	Personal Access Token	4c98a41e2cb5cef5d1d75309cd306bbab8e36b365d1cbf8fb3c8efaa3fd1a01b	["*"]	\N	\N	2025-12-11 15:46:57	2025-12-11 15:46:57
585	App\\Models\\User	316	Personal Access Token	675011139ab6286741535c80559c11ca5c668eaaf3e7c509c07a6be9a0fcd274	["*"]	\N	\N	2025-12-11 15:46:59	2025-12-11 15:46:59
586	App\\Models\\User	316	Personal Access Token	77466eb0e09b18ff9c4fc06852aa6efdaecdd89f8a7afcd90cba7356770cac92	["*"]	\N	\N	2025-12-11 15:53:20	2025-12-11 15:53:20
587	App\\Models\\User	317	Personal Access Token	24259722a36acf276adc980536fb3b6c7bb3a226b0df2e9a781a1170c614263c	["*"]	\N	\N	2025-12-11 15:56:21	2025-12-11 15:56:21
588	App\\Models\\User	317	Personal Access Token	ef9385430ff5308f87efef19c740a11779b39e350fdc7f4fb93b31987ffdf379	["*"]	\N	\N	2025-12-11 15:56:23	2025-12-11 15:56:23
589	App\\Models\\User	280	Personal Access Token	41c07375402bdb25ec634d641f6703f577c89c3b2ca2b2c898164bf94276ac30	["*"]	\N	\N	2025-12-11 15:57:31	2025-12-11 15:57:31
590	App\\Models\\User	317	Personal Access Token	8057f8307bcf886915d5566c162a2dadcf7632de692a3988d93dc03ab4ed18ad	["*"]	\N	\N	2025-12-11 15:59:54	2025-12-11 15:59:54
591	App\\Models\\User	318	Personal Access Token	2f434fbddaef5c33249e8d0b157bf846b1eb7e293fe3b90d9bc46f505634f3c3	["*"]	\N	\N	2025-12-15 16:41:08	2025-12-15 16:41:08
592	App\\Models\\User	318	Personal Access Token	9779aa9b9fb42da529e953da35447863b16505c426002eebb9152fa72092a490	["*"]	\N	\N	2025-12-15 16:41:11	2025-12-15 16:41:11
593	App\\Models\\User	319	Personal Access Token	42572b62139b19988b14bec66d5bd198e8b63828ba801c961d40c4c98d140e99	["*"]	\N	\N	2025-12-15 17:11:03	2025-12-15 17:11:03
594	App\\Models\\User	319	Personal Access Token	4b5274bd0a0fc6d34879c81700d4470dbe9dba39dc50b0b5e3ab201bac18659c	["*"]	\N	\N	2025-12-15 17:11:06	2025-12-15 17:11:06
595	App\\Models\\User	320	Personal Access Token	b2a84ecdf6ed45b30f38001e30de5749c8a75e56ad58cc54e4cc9b45b65b8b13	["*"]	\N	\N	2025-12-15 17:18:52	2025-12-15 17:18:52
596	App\\Models\\User	320	Personal Access Token	865b2158a182b6ca38cadc1c8da88ab8bbf5030ed76989c354c5ed8717480ccc	["*"]	\N	\N	2025-12-15 17:18:54	2025-12-15 17:18:54
597	App\\Models\\User	321	Personal Access Token	b74ec2fb014e8240c4d687ae75d37f1bb528cd858c119cdcc2ae101adb80b186	["*"]	\N	\N	2025-12-15 17:51:21	2025-12-15 17:51:21
598	App\\Models\\User	321	Personal Access Token	35aaa784102b6c4b934f0aaa1bfa18dfd9d7603d0f974b037e05fa5059198998	["*"]	\N	\N	2025-12-15 17:51:23	2025-12-15 17:51:23
599	App\\Models\\User	267	Personal Access Token	614f144980d52157d981dc7996c8b9ff30254c344fb78777bbdc36d241ce1ca8	["*"]	\N	\N	2025-12-18 10:33:07	2025-12-18 10:33:07
600	App\\Models\\User	322	Personal Access Token	156c899d571f4e19138ff9cfb0bd6d9b80f819d028da2e8f65d5dc49a5d7734a	["*"]	\N	\N	2025-12-22 15:54:58	2025-12-22 15:54:58
601	App\\Models\\User	322	Personal Access Token	8c8aa249b1d144eb6aef29f1ebae7cfedeae06b80129ee0e642351ca7fbfc3ef	["*"]	\N	\N	2025-12-22 15:55:00	2025-12-22 15:55:00
602	App\\Models\\User	323	Personal Access Token	807d048599d553d0c1240f7a142f50e445d8940222fa1c6956da3e8913865ca9	["*"]	\N	\N	2025-12-22 16:04:50	2025-12-22 16:04:50
603	App\\Models\\User	323	Personal Access Token	04dcc236ef7e122c13fdf4ae76a46d6b229deed82d8e95d1137e7f6c324efe79	["*"]	\N	\N	2025-12-22 16:04:52	2025-12-22 16:04:52
604	App\\Models\\User	324	Personal Access Token	5230ee82c660d1728bfa738f59e7460448d9c00a67eb8071ffa73549c100c438	["*"]	\N	\N	2025-12-22 16:13:31	2025-12-22 16:13:31
605	App\\Models\\User	324	Personal Access Token	6546f460e698dad8a7a8836501a9da94cf2cdaef189bb6008a4d51ddbe4e5819	["*"]	\N	\N	2025-12-22 16:13:33	2025-12-22 16:13:33
606	App\\Models\\User	325	Personal Access Token	02e91e4c09a6883e2e4620104047a5084520fcad20fb58c0298c4fabf860c432	["*"]	\N	\N	2025-12-22 17:11:20	2025-12-22 17:11:20
607	App\\Models\\User	325	Personal Access Token	06a04c8e9b186b775f2feda3a9c1a68825888d3452013f58895fc0ad66c69d37	["*"]	\N	\N	2025-12-22 17:11:22	2025-12-22 17:11:22
608	App\\Models\\User	326	Personal Access Token	23263baddcdbec67227eb82af662cfab698ddaccd903a63b6611f752871696b3	["*"]	\N	\N	2025-12-23 13:28:22	2025-12-23 13:28:22
609	App\\Models\\User	326	Personal Access Token	c0f114cc3cbe4af36c1d22a6929067da12696eda1231931635e0a2992390c7f4	["*"]	\N	\N	2025-12-23 13:28:24	2025-12-23 13:28:24
610	App\\Models\\User	303	Personal Access Token	eb39abbc5b1c14268a5ce50f8b7cd24e375d9ca7dfc6f7e7241307a1702be42e	["*"]	\N	\N	2025-12-26 07:43:29	2025-12-26 07:43:29
611	App\\Models\\User	327	Personal Access Token	f4c4fc6ef6fc83b8ca9e4aa10df6c45b865be84932abdcb7085dd0e526aed74c	["*"]	\N	\N	2025-12-26 11:46:40	2025-12-26 11:46:40
612	App\\Models\\User	327	Personal Access Token	1c833b5a22a6ecf7bcc3b89d0a97989465b6674743cc1929332262421459beb3	["*"]	\N	\N	2025-12-26 11:46:43	2025-12-26 11:46:43
613	App\\Models\\User	328	Personal Access Token	09153ba4536d61bdc4380db0c6741364b0425a21eb56ca764137b1f46084554a	["*"]	\N	\N	2025-12-26 12:21:39	2025-12-26 12:21:39
614	App\\Models\\User	328	Personal Access Token	bb67c9d4912bcfbfb57ff0b8c14fd1725ffcc884576139ddd5bebf1fc28e0fd8	["*"]	\N	\N	2025-12-26 12:21:41	2025-12-26 12:21:41
615	App\\Models\\User	329	Personal Access Token	3773903193f85d9d04cae82b6a6ec1e2f051d85f5eaed9be3e710a46ea69b26e	["*"]	\N	\N	2025-12-29 10:29:40	2025-12-29 10:29:40
616	App\\Models\\User	329	Personal Access Token	773e03168e4b62e908d5086b6f81729fa7831c0dbc498901fb3167b69c2fd274	["*"]	\N	\N	2025-12-29 10:29:42	2025-12-29 10:29:42
617	App\\Models\\User	329	Personal Access Token	137cba03d12526cf2c8dd3376e14b096478462f04df766a8ec8a31e6a4bcb5ab	["*"]	\N	\N	2025-12-29 10:31:21	2025-12-29 10:31:21
618	App\\Models\\User	192	Personal Access Token	84165981e1c76bff8db5dcb14c3562b09683dbaa1899b659191bfe5d3e447ba8	["*"]	\N	\N	2025-12-29 10:35:35	2025-12-29 10:35:35
619	App\\Models\\User	194	Personal Access Token	e71fb04d3098fa95cff02e5afaeeda93f0149f02400ea627c01692bb268e00f3	["*"]	\N	\N	2025-12-29 10:37:08	2025-12-29 10:37:08
620	App\\Models\\User	330	Personal Access Token	e082390029608984cef7091fe62e0334e43203fb8d92a9b38f9a83d452394dad	["*"]	\N	\N	2025-12-29 12:08:00	2025-12-29 12:08:00
621	App\\Models\\User	330	Personal Access Token	8672b334024bea38f64436647e17b74463c3bc09de7af1e103e020d398734a62	["*"]	\N	\N	2025-12-29 12:08:02	2025-12-29 12:08:02
622	App\\Models\\User	331	Personal Access Token	917a3121da38fdbeaffb826bdccbc85be47fd467e4f44adfac921247c12aeeb7	["*"]	\N	\N	2025-12-29 12:16:45	2025-12-29 12:16:45
623	App\\Models\\User	331	Personal Access Token	1978595d3676a2ef3dea3ec9384feb1920440fcdf9575379eaea3d0b5f35bcac	["*"]	\N	\N	2025-12-29 12:16:46	2025-12-29 12:16:46
624	App\\Models\\User	192	Personal Access Token	f8d010102328485a5b036211a7891265811d85de7a62a4261b654dfad60518ab	["*"]	\N	\N	2025-12-29 13:24:21	2025-12-29 13:24:21
625	App\\Models\\User	332	Personal Access Token	4942b06bb0db15541a86f07ad98743850be9594982317146ef5821c9927d3dcb	["*"]	\N	\N	2025-12-29 16:57:04	2025-12-29 16:57:04
626	App\\Models\\User	332	Personal Access Token	a81888e2ed1cab5234643f7a39ff72e960cc6c7ad6b71a3df3a756349597b50c	["*"]	\N	\N	2025-12-29 16:57:06	2025-12-29 16:57:06
627	App\\Models\\User	333	Personal Access Token	cb1dc75b3f9c8adaa9da826efe89d12030aae4c7a77d9c8af42297db8176df51	["*"]	\N	\N	2025-12-30 07:30:25	2025-12-30 07:30:25
628	App\\Models\\User	333	Personal Access Token	01ddf974016a2c71864a751be202db72217b1525539b5e7bca24704868dd9385	["*"]	\N	\N	2025-12-30 07:30:27	2025-12-30 07:30:27
629	App\\Models\\User	332	Personal Access Token	9ad1b0fe75aca2e23ef02528f00b76f3ed258bd22bcbe348a328f4e49bf45cab	["*"]	\N	\N	2025-12-30 07:39:48	2025-12-30 07:39:48
630	App\\Models\\User	334	Personal Access Token	5ac587c0bb587efb93c8ec2e0b534a678f235eaaf55e428c5d925dea20d21adf	["*"]	\N	\N	2025-12-30 08:56:00	2025-12-30 08:56:00
631	App\\Models\\User	334	Personal Access Token	f8d9549cc44c51a4ea85e781e1657ca6b84b803b22a2ab62a5539c1fa082aef5	["*"]	\N	\N	2025-12-30 08:56:02	2025-12-30 08:56:02
632	App\\Models\\User	192	Personal Access Token	82a440d339af9e58e097dd681310344f3de3666a1b4e56b84d7dde4a11f346ca	["*"]	\N	\N	2025-12-30 09:32:49	2025-12-30 09:32:49
633	App\\Models\\User	335	Personal Access Token	503d09341cf59960bcfa74b0b1eb17a35a8a0ecd7185673a8ef35289523d7b49	["*"]	\N	\N	2025-12-30 10:14:49	2025-12-30 10:14:49
634	App\\Models\\User	335	Personal Access Token	956ebc8d4a19c1cc1186c04e7ec6eb7160f130400c11daec9273d51447efc90d	["*"]	\N	\N	2025-12-30 10:14:51	2025-12-30 10:14:51
635	App\\Models\\User	336	Personal Access Token	cced5c3419921c955dadc78aa1f5903b029b389f35091494187c46d72531d09e	["*"]	\N	\N	2025-12-31 06:44:53	2025-12-31 06:44:53
636	App\\Models\\User	336	Personal Access Token	1315c09444970c77a9dd98a929c080245374b5e25a97660bd80810edeb5639c8	["*"]	\N	\N	2025-12-31 06:44:55	2025-12-31 06:44:55
637	App\\Models\\User	335	Personal Access Token	3e96c94a46d41a206bc36df5927bd02714e294a7fe300a1b8f2c9b604564b0cb	["*"]	\N	\N	2025-12-31 06:51:38	2025-12-31 06:51:38
638	App\\Models\\User	334	Personal Access Token	8cb643cfa44a1cdc119d6302dfff6427bbc93f0550983b72e68d4f466aec25a4	["*"]	\N	\N	2025-12-31 06:52:16	2025-12-31 06:52:16
639	App\\Models\\User	332	Personal Access Token	6ea1fbb9fc2b20457db2876354905fa0ffeb121eaf145723eb41054e76d89440	["*"]	\N	\N	2025-12-31 06:53:36	2025-12-31 06:53:36
640	App\\Models\\User	333	Personal Access Token	6f9e98ff9fb4b9a21304038e779c7b52bb29b8badc2d91b083629639971ef096	["*"]	\N	\N	2025-12-31 06:56:57	2025-12-31 06:56:57
641	App\\Models\\User	332	Personal Access Token	0e155478a3a25291b88f3ce3205c2deb2be57e59bcba4e1f84f539806490b680	["*"]	\N	\N	2025-12-31 06:59:29	2025-12-31 06:59:29
642	App\\Models\\User	310	Personal Access Token	08c3299d63178ddee9c589599d0b155ffd8059908b4e842a5d7c967b25303f98	["*"]	\N	\N	2025-12-31 07:02:11	2025-12-31 07:02:11
643	App\\Models\\User	333	Personal Access Token	9f893060374b59daab7593336ebebd819f6d9527f71a834a708ee0d8046395d9	["*"]	\N	\N	2025-12-31 07:06:39	2025-12-31 07:06:39
644	App\\Models\\User	337	Personal Access Token	23178b77a5a6080f916fd8ff37480496efd5345481bb345fd3b524f6688d0e2f	["*"]	\N	\N	2025-12-31 07:07:11	2025-12-31 07:07:11
645	App\\Models\\User	337	Personal Access Token	eaf3fefdb162724121e0b8bf61b03b420b7a28f9a46a798a4db260ea7440520f	["*"]	\N	\N	2025-12-31 07:07:12	2025-12-31 07:07:12
646	App\\Models\\User	336	Personal Access Token	e07a89edfc37ef0a5a61291f8910e9fccf18ac4c21a64a13d00bb84085d8cbb4	["*"]	\N	\N	2025-12-31 07:14:12	2025-12-31 07:14:12
647	App\\Models\\User	336	Personal Access Token	0617f79b842cfac9b77390a02d4562a9683bbf390548112accfeb8fc07d6f24d	["*"]	\N	\N	2025-12-31 07:23:06	2025-12-31 07:23:06
648	App\\Models\\User	336	Personal Access Token	f0946c76f16d5b5d362ca25e9762ce53622702df2a7e393113b384c0402c070d	["*"]	\N	\N	2025-12-31 07:34:15	2025-12-31 07:34:15
649	App\\Models\\User	337	Personal Access Token	5b0ee421a3bfcdcf86907eeb3f9d9ffecd0bf3926a08d3d705cc0b39ee14324d	["*"]	\N	\N	2025-12-31 07:34:34	2025-12-31 07:34:34
650	App\\Models\\User	337	Personal Access Token	582295db4278f378c1c58e607bb0ae0828339f9e63462d792c59c0c93cac1a3c	["*"]	\N	\N	2025-12-31 07:46:19	2025-12-31 07:46:19
651	App\\Models\\User	336	Personal Access Token	87555cbee02f0988c975daf1e01679b9849fd2947070ed125c5ac4ac5fc7f49e	["*"]	\N	\N	2025-12-31 08:19:15	2025-12-31 08:19:15
652	App\\Models\\User	336	Personal Access Token	92fa33c10ece7227a9a969d1957d3313ffe68433f595d2547e3ae74bc9ea6ccc	["*"]	\N	\N	2025-12-31 08:19:59	2025-12-31 08:19:59
653	App\\Models\\User	333	Personal Access Token	9e3a96c8c375eaa2122e51b0e7ee4683ebfac197d450dbba8931223f90fbb32b	["*"]	\N	\N	2025-12-31 08:21:40	2025-12-31 08:21:40
654	App\\Models\\User	337	Personal Access Token	928101ca9dffceed7ff9f28a638d398ac08c034701cfb30f3d3c2be42eae3181	["*"]	\N	\N	2025-12-31 08:22:14	2025-12-31 08:22:14
655	App\\Models\\User	333	Personal Access Token	ac87fffaf6285d778f76461b183edd01a78741b1ce8e76b5bc396b591dc76f35	["*"]	\N	\N	2025-12-31 08:27:01	2025-12-31 08:27:01
656	App\\Models\\User	330	Personal Access Token	8f435a55df3e9a83042000d2d9016c1ee167981db257c430e9ef06cbe514df32	["*"]	\N	\N	2025-12-31 08:36:48	2025-12-31 08:36:48
657	App\\Models\\User	331	Personal Access Token	387601b3a30ddcfdd03529c33f24784e45a229885bdd22c3e0b47c2991f45305	["*"]	\N	\N	2025-12-31 08:39:33	2025-12-31 08:39:33
658	App\\Models\\User	272	Personal Access Token	176ca4f325ed1d5ded704062c9fff915d8a37fb30a8f7c552056b2c5c20c8ecf	["*"]	\N	\N	2025-12-31 08:41:43	2025-12-31 08:41:43
659	App\\Models\\User	336	Personal Access Token	44947b5572e5b0b4dc7e4e0a4e06413bc3d4ff25e9ab728122349a6fa347a388	["*"]	\N	\N	2025-12-31 09:05:33	2025-12-31 09:05:33
660	App\\Models\\User	338	Personal Access Token	f4b4f6a19a90bdafa05ff4248f0a8603ded840001e15e7930839465a5b88c3fb	["*"]	\N	\N	2025-12-31 09:43:44	2025-12-31 09:43:44
661	App\\Models\\User	338	Personal Access Token	a7624647b231eefcd4ec00895d7f5d4ab76838e9d92fd4fcfd4e974d7f6efaad	["*"]	\N	\N	2025-12-31 09:43:46	2025-12-31 09:43:46
662	App\\Models\\User	336	Personal Access Token	48f587dd9e5401df7301a5b460d97befae1debb699d26ad1c49511dca44ce44a	["*"]	\N	\N	2025-12-31 12:52:17	2025-12-31 12:52:17
663	App\\Models\\User	276	Personal Access Token	005030d19dc783649eeb3d81b4c04e9fc3317ecd637a7f559c7a0eae0670f6ef	["*"]	\N	\N	2025-12-31 12:53:35	2025-12-31 12:53:35
664	App\\Models\\User	339	Personal Access Token	42dd18733b0c344e863f61851bc26e578fc2230e30578f70088eed77b6c737d8	["*"]	\N	\N	2026-01-01 06:26:45	2026-01-01 06:26:45
665	App\\Models\\User	339	Personal Access Token	143534029a21c9cdba26484e83c2884afd81942de652794ada6ad9a14775b2c7	["*"]	\N	\N	2026-01-01 06:26:48	2026-01-01 06:26:48
666	App\\Models\\User	340	Personal Access Token	de0ab01cbc52401242e96e42bca1b2b6380892125cf5289d7298563330266707	["*"]	\N	\N	2026-01-01 06:31:33	2026-01-01 06:31:33
667	App\\Models\\User	340	Personal Access Token	e9777d479437511b7b4507efd74185e5817fbf6c1557703d301728458516fa48	["*"]	\N	\N	2026-01-01 06:31:35	2026-01-01 06:31:35
668	App\\Models\\User	341	Personal Access Token	c61a8e5c68a85f0a25d8af27af0b46246dddbc07a690292ed40cf6aad91d4352	["*"]	\N	\N	2026-01-06 15:29:18	2026-01-06 15:29:18
669	App\\Models\\User	341	Personal Access Token	dd2173fafa930312919e6869b29646e66ea6806ee64017ee2ba16a17028f6df9	["*"]	\N	\N	2026-01-06 15:29:20	2026-01-06 15:29:20
670	App\\Models\\User	342	Personal Access Token	08c360b500b4ba4ae9e199a624a87e3b7bce87f6f4162743d7581fc97df9398d	["*"]	\N	\N	2026-01-06 16:04:00	2026-01-06 16:04:00
671	App\\Models\\User	342	Personal Access Token	b2ee130e784e52d73e6fc8cdbd229b9685f87dde696ab65de8336892ec16ca9a	["*"]	\N	\N	2026-01-06 16:04:02	2026-01-06 16:04:02
672	App\\Models\\User	343	Personal Access Token	0ba8684744d902164e8c7fcf8b3951a23eb653f118b41b25273f391b3bf32a9d	["*"]	\N	\N	2026-01-06 16:15:49	2026-01-06 16:15:49
673	App\\Models\\User	343	Personal Access Token	458feda46be41f8df9a7c2e3d34730e2e9f27d05cc4b475487a7f56d8b331d11	["*"]	\N	\N	2026-01-06 16:15:50	2026-01-06 16:15:50
674	App\\Models\\User	340	Personal Access Token	a78ac0ee4c83788478e285f6d8f8e28d85167027eb88ef5ee133a8237f102d93	["*"]	\N	\N	2026-01-06 16:19:35	2026-01-06 16:19:35
675	App\\Models\\User	202	Personal Access Token	697b207a308d348e1737fe8daa3008b0c6f8bed8cc57eb0edaeade239160a214	["*"]	\N	\N	2026-01-08 06:21:53	2026-01-08 06:21:53
676	App\\Models\\User	344	Personal Access Token	7d7f59206e194ede8fe6b1cc5bb7222f2df2e6d49db705c70f59af88be8ccfc5	["*"]	\N	\N	2026-01-08 08:10:31	2026-01-08 08:10:31
677	App\\Models\\User	344	Personal Access Token	50af92eef0e876d97d964239199aa853cb33fd389c954add1ae8dc662bac62eb	["*"]	\N	\N	2026-01-08 08:10:33	2026-01-08 08:10:33
678	App\\Models\\User	202	Personal Access Token	baa288d689be2dae8cd71c92c193269cdbd99a12cd00113b264e770a973281d6	["*"]	\N	\N	2026-01-08 09:16:28	2026-01-08 09:16:28
679	App\\Models\\User	336	Personal Access Token	2049741bb8ff8d2e174e3f73f60871445e9095afb1981a410895423328a90ca7	["*"]	\N	\N	2026-01-08 12:41:35	2026-01-08 12:41:35
680	App\\Models\\User	337	Personal Access Token	753e705bab9bf0f766c5846cdbc078f447625995a99e101ff46c4109d3ebc5b9	["*"]	\N	\N	2026-01-08 12:42:00	2026-01-08 12:42:00
\.


--
-- Data for Name: plan_durations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.plan_durations (id, pricing_plan_id, duration, price, status, created_at, updated_at) FROM stdin;
1	3	10	100	1	2025-04-18 05:22:42	2025-04-18 05:22:42
2	3	20	150	1	2025-04-18 05:23:01	2025-04-18 05:23:01
3	3	30	200	1	2025-04-18 05:23:18	2025-04-18 05:23:18
\.


--
-- Data for Name: popular_ads; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.popular_ads (id, ad_id, category_id, created_at, updated_at) FROM stdin;
1	4	5	2025-03-27 04:32:07	2025-03-27 04:32:07
\.


--
-- Data for Name: pricing_plans; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.pricing_plans (id, name, name_ar, duration, price, currency, description, description_ar, status, created_at, updated_at, type, max_request_count) FROM stdin;
1	Free	مجاناً	quarterly	0	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	2025-03-22 05:18:01	2025-11-18 09:22:25	free	4
2	Standard	الخطة القياسية	quarterly	300	AED	<p>english</p>	<p>arabic</p>	1	2025-04-07 14:20:29	2026-01-08 06:28:50	basic	4
3	Premium	مميز	yearly	500	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features..</li></ul>	<p>مميز</p>	0	2025-04-10 09:40:59	2025-11-11 05:54:27	premium	0
4	Basic	الخطة الأساسية	quarterly	120	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li><li>Limited cloud storage (5 GB)</li><li>Email support.</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	0	2025-05-17 12:32:10	2025-11-11 05:54:32	basic	0
\.


--
-- Data for Name: professions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.professions (id, name, name_ar, status, deleted_at, created_at, updated_at) FROM stdin;
1	Doctor	طبيب	1	\N	2025-05-05 06:13:21	2025-05-05 06:13:21
2	Nurse	ممرض	1	\N	2025-05-05 06:13:48	2025-05-05 06:13:48
3	Engineer	مهندس	1	\N	2025-05-05 06:14:06	2025-05-05 06:14:06
4	Teacher	معلم	1	\N	2025-05-05 06:14:29	2025-05-05 06:14:29
5	Lawyer	محامٍ	1	\N	2025-05-05 06:14:47	2025-05-05 06:14:47
\.


--
-- Data for Name: promo_codes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.promo_codes (id, code, type, value, start_date, end_date, total_limit, user_limit, daily_limit, status, created_at, updated_at, pricing_plan_id) FROM stdin;
1	50off	percentage	50	2025-03-20	2025-10-29	100	8	6	1	2025-03-20 15:15:07	2025-05-28 05:17:17	["4","3","2"]
\.


--
-- Data for Name: property_amenities; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.property_amenities (id, name, name_ar, status, created_at, updated_at) FROM stdin;
1	Study	Study	1	2025-04-21 08:43:42	2025-04-21 08:43:42
2	Central A/C & Heating	Central A/C & Heating	1	2025-04-21 08:43:42	2025-04-21 08:43:42
3	Concierge Service	Concierge Service	1	2025-04-21 08:43:42	2025-04-21 08:43:42
4	Balcony	Balcony	1	2025-04-21 08:43:42	2025-04-21 08:43:42
5	Private Garden	Private Garden	1	2025-04-21 08:43:42	2025-04-21 08:43:42
6	Private Pool	Private Pool	1	2025-04-21 08:43:42	2025-04-21 08:43:42
7	Private Gym	Private Gym	1	2025-04-21 08:43:42	2025-04-21 08:43:42
8	Private Jacuzzi	Private Jacuzzi	1	2025-04-21 08:43:42	2025-04-21 08:43:42
9	Shared Pool	Shared Pool	1	2025-04-21 08:43:42	2025-04-21 08:43:42
10	Shared Spa	Shared Spa	1	2025-04-21 08:43:42	2025-04-21 08:43:42
11	Shared Gym	Shared Gym	1	2025-04-21 08:43:42	2025-04-21 08:43:42
12	Security	Security	1	2025-04-21 08:43:42	2025-04-21 08:43:42
13	Maid Service	Maid Service	1	2025-04-21 08:43:42	2025-04-21 08:43:42
14	Covered Parking	Covered Parking	1	2025-04-21 08:43:42	2025-04-21 08:43:42
15	Built in Wardrobes	Built in Wardrobes	1	2025-04-21 08:43:42	2025-04-21 08:43:42
16	Walk-in Closet	Walk-in Closet	1	2025-04-21 08:43:42	2025-04-21 08:43:42
17	Built in Kitchen Appliances	Built in Kitchen Appliances	1	2025-04-21 08:43:42	2025-04-21 08:43:42
18	View of Water	View of Water	1	2025-04-21 08:43:42	2025-04-21 08:43:42
19	View of Landmark	View of Landmark	1	2025-04-21 08:43:42	2025-04-21 08:43:42
20	Pets Allowed	Pets Allowed	1	2025-04-21 08:43:42	2025-04-21 08:43:42
21	Double Glazed Windows	Double Glazed Windows	1	2025-04-21 08:43:42	2025-04-21 08:43:42
22	Day Care Center	Day Care Center	1	2025-04-21 08:43:42	2025-04-21 08:43:42
23	Electricity Backup	Electricity Backup	1	2025-04-21 08:43:42	2025-04-21 08:43:42
24	First Aid Medical Center	First Aid Medical Center	1	2025-04-21 08:43:42	2025-04-21 08:43:42
25	Service Elevators	Service Elevators	1	2025-04-21 08:43:42	2025-04-21 08:43:42
26	Prayer Room	Prayer Room	1	2025-04-21 08:43:42	2025-04-21 08:43:42
27	Laundry Room	Laundry Room	1	2025-04-21 08:43:42	2025-04-21 08:43:42
28	Broadband Internet	Broadband Internet	1	2025-04-21 08:43:42	2025-04-21 08:43:42
29	Satellite / Cable TV	Satellite / Cable TV	1	2025-04-21 08:43:42	2025-04-21 08:43:42
30	Business Center	Business Center	1	2025-04-21 08:43:42	2025-04-21 08:43:42
31	Intercom	Intercom	1	2025-04-21 08:43:42	2025-04-21 08:43:42
32	ATM Facility	ATM Facility	1	2025-04-21 08:43:42	2025-04-21 08:43:42
33	Kids Play Area	Kids Play Area	1	2025-04-21 08:43:42	2025-04-21 08:43:42
34	Reception / Waiting Room	Reception / Waiting Room	1	2025-04-21 08:43:42	2025-04-21 08:43:42
35	Maintenance Staff	Maintenance Staff	1	2025-04-21 08:43:42	2025-04-21 08:43:42
36	CCTV Security	CCTV Security	1	2025-04-21 08:43:42	2025-04-21 08:43:42
37	Cafeteria or Canteen	Cafeteria or Canteen	1	2025-04-21 08:43:42	2025-04-21 08:43:42
38	Shared Kitchen	Shared Kitchen	1	2025-04-21 08:43:42	2025-04-21 08:43:42
39	Facilities for Disabled	Facilities for Disabled	1	2025-04-21 08:43:42	2025-04-21 08:43:42
40	Storage Areas	Storage Areas	1	2025-04-21 08:43:42	2025-04-21 08:43:42
41	Cleaning Services	Cleaning Services	1	2025-04-21 08:43:42	2025-04-21 08:43:42
42	Barbeque Area	Barbeque Area	1	2025-04-21 08:43:42	2025-04-21 08:43:42
43	Lobby in Building	Lobby in Building	1	2025-04-21 08:43:42	2025-04-21 08:43:42
44	Waste Disposal	Waste Disposal	1	2025-04-21 08:43:42	2025-04-21 08:43:42
\.


--
-- Data for Name: questions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.questions (id, chat_category_id, name, name_ar, status, deleted_at, created_at, updated_at) FROM stdin;
1	1	Your relationship with your family:	علاقتك مع أهلك:	1	\N	2025-11-11 09:45:56	2025-11-14 06:17:17
2	1	Preferred living arrangement after marriage:	تفضل السكن بعد الزواج:	1	\N	2025-11-14 06:19:27	2025-11-14 06:19:27
3	1	If a disagreement occurs with family:	في حال حصل خلاف مع العائلة:	1	\N	2025-11-14 06:21:58	2025-11-14 06:21:58
4	2	Your career goals in the next 5 years:	طموحاتك المهنية خلال 5 سنوات:	1	\N	2025-11-14 06:26:30	2025-11-14 06:26:30
5	2	Regarding work after marriage (for women):	بالنسبة للعمل بعد الزواج (للمرأة):	1	\N	2025-11-14 06:27:52	2025-11-14 06:27:52
7	4	How you usually spend your free time:	How you usually spend your free time:	1	\N	2025-11-15 09:58:11	2025-11-15 09:58:11
8	4	Do you care about social or volunteer activities?	Do you care about social or volunteer activities?	1	\N	2025-11-15 09:58:48	2025-11-15 09:58:48
6	3	Approximate average monthly income:	Approximate average monthly income:	1	\N	2025-11-15 09:32:38	2025-11-15 09:59:18
9	3	Managing the household budget:	Managing the household budget:	1	\N	2025-11-15 09:59:49	2025-11-15 09:59:49
10	3	Your approach to money:	Your approach to money:	1	\N	2025-11-15 10:00:15	2025-11-15 10:00:15
11	8	In 5–10 years, you would prefer to:	In 5–10 years, you would prefer to:	1	\N	2025-11-15 10:29:09	2025-11-15 10:29:09
12	8	The most important dream you want to achieve with your partner:	The most important dream you want to achieve with your partner:	1	\N	2025-11-15 10:29:36	2025-11-15 10:29:36
\.


--
-- Data for Name: quotes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.quotes (id, name, email, from_lang, to_lang, total_pages, word_count, service_id, created_at, updated_at) FROM stdin;
1	John Doe	john@example.com	english	spanish	10	2000	5	2024-12-25 18:01:37	2024-12-25 18:01:37
2	tsttt	test@gmail.com	arabic	chinese	12	4	5	2024-12-25 18:05:07	2024-12-25 18:05:07
3	tsttt	test@gmail.com	arabic	chinese	12	4	5	2024-12-25 18:06:33	2024-12-25 18:06:33
4	asda	admin@hadify.com	arabic	chinese	12	12	5	2024-12-25 18:06:55	2024-12-25 18:06:55
7	asda	admin@tasheel.com	english	english	12	1234	5	2024-12-25 18:15:04	2024-12-25 18:15:04
8	asdad	admin@hadify.com	english	chinese	12	21	5	2024-12-25 18:15:55	2024-12-25 18:15:55
11	asdas	admin@admin.com	arabic	chinese	21	21	5	2024-12-25 18:21:56	2024-12-25 18:21:56
12	asdas	test@gmail.com	english	hindi	12	123	5	2024-12-25 18:24:26	2024-12-25 18:24:26
13	asdasd	admin@hadify.com	arabic	chinese	21	22	5	2024-12-25 18:26:24	2024-12-25 18:26:24
14	asda	admin@admin.com	english	chinese	21	22	5	2024-12-25 19:00:07	2024-12-25 19:00:07
15	testtttdesc	test@gmail.com	arabic	english,chinese	11	100	5	2024-12-25 21:05:10	2024-12-25 21:05:10
16	asdad	admin@admin.com	english	chinese,spanish	120	222222	9	2024-12-25 21:30:46	2024-12-25 21:30:46
17	testtstst	testing@gmail.com	Hindi	Spanish,Arabic	11	2222	9	2024-12-25 22:04:43	2024-12-25 22:04:43
\.


--
-- Data for Name: report_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.report_types (id, name, name_ar, status, created_at, updated_at) FROM stdin;
1	Something else	Something else	1	2025-05-31 13:14:59	2025-05-31 13:14:59
3	Scam or fraud	Scam or fraud	1	2025-05-31 13:15:41	2025-05-31 13:15:41
4	Bullying or harassment	Bullying or harassment	1	2025-05-31 13:15:54	2025-05-31 13:15:54
5	Soliciting	Soliciting	1	2025-05-31 13:16:08	2025-05-31 13:16:08
8	It’s spam	It’s spam	1	2025-05-31 13:16:56	2025-05-31 13:16:56
6	Hate speech	خطاب كراهية	1	2025-05-31 13:16:24	2025-08-18 11:55:25
2	I just don't like it	فقط لا أرغب في ذلك	1	2025-05-31 13:15:15	2025-08-18 11:55:57
7	Nudity or sexual activity	ممارسات غير أخلاقية	1	2025-05-31 13:16:41	2025-08-18 11:56:20
\.


--
-- Data for Name: reviews; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.reviews (id, name, status, review, image, designation, rating, created_at, updated_at) FROM stdin;
1	Jacob Leonardo1	t	While running an early-stage startup, everything feels hard; that's why it's been so nice to have our accounting feel easy. We recommend Qetus	173568679567747a8b0bae6.png	CEO Founder	4.0	2024-12-31 23:12:17	2024-12-31 23:14:54
\.


--
-- Data for Name: role_has_permissions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.role_has_permissions (permission_id, role_id) FROM stdin;
\.


--
-- Data for Name: roles; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.roles (id, name, guard_name, created_at, updated_at) FROM stdin;
1	Admin	web	2024-12-05 15:22:16	2024-12-05 15:22:16
2	Customer	web	2024-12-05 15:22:16	2024-12-05 15:22:16
\.


--
-- Data for Name: sects; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sects (id, name, name_ar, status, deleted_at, created_at, updated_at) FROM stdin;
2	Muslim Sunni	مسلم سني	1	\N	2025-05-03 10:30:10	2025-08-17 13:42:55
1	Muslim Shiaa	مسلم شيعي	1	\N	2025-05-03 05:49:46	2025-08-17 13:44:10
3	Ibadi	إباضي	1	2025-08-17 13:44:20	2025-05-03 10:30:49	2025-08-17 13:44:20
4	Ahmadiyya	الأحمدية	1	2025-08-18 11:20:16	2025-05-03 10:31:08	2025-08-18 11:20:16
5	Ismaili	إسماعيلي	1	2025-08-18 11:20:23	2025-05-03 10:31:25	2025-08-18 11:20:23
6	Zaydi	زيدي	1	2025-08-18 11:20:29	2025-05-03 10:31:42	2025-08-18 11:20:29
7	Salafi	سلفي	1	2025-08-18 11:20:36	2025-05-03 10:31:57	2025-08-18 11:20:36
8	Others	غير محدد	1	\N	2025-05-29 08:11:37	2026-01-08 06:31:14
\.


--
-- Data for Name: service_atributes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.service_atributes (id, service_id, name, status, created_at, updated_at, deleted_at) FROM stdin;
2	10	test	1	2025-01-29 10:50:25	2025-01-29 10:50:25	\N
3	10	test2	1	2025-01-31 01:59:15	2025-01-31 01:59:15	\N
4	10	test3	1	2025-01-31 01:59:30	2025-01-31 01:59:30	\N
5	9	test1	1	2025-01-31 02:00:22	2025-01-31 02:00:22	\N
6	9	test2	1	2025-01-31 02:00:57	2025-01-31 02:00:57	\N
7	11	Licence Type	1	2025-01-31 06:55:18	2025-01-31 06:55:18	\N
8	11	Region	1	2025-01-31 06:56:43	2025-01-31 06:56:43	\N
\.


--
-- Data for Name: service_atributes_value; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.service_atributes_value (id, service_id, attribute_id, name, status, created_at, updated_at, deleted_at, price) FROM stdin;
1	10	2	test	1	2025-01-31 01:52:54	2025-01-31 01:52:54	\N	0.00
2	9	5	test	1	2025-01-31 02:01:49	2025-01-31 02:02:11	\N	0.00
3	11	7	Local	1	2025-01-31 06:55:37	2025-01-31 06:55:37	\N	0.00
4	11	7	International	1	2025-01-31 06:55:55	2025-01-31 06:55:55	\N	0.00
5	11	8	West Branch	1	2025-01-31 06:57:31	2025-01-31 06:57:31	\N	0.00
6	11	8	Gaza	1	2025-01-31 06:57:46	2025-01-31 06:57:46	\N	0.00
7	11	7	Dubai	1	2025-02-11 14:55:07	2025-02-11 14:55:34	\N	13.01
\.


--
-- Data for Name: service_booking_fields; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.service_booking_fields (id, service_id, type, label, name, options, attribute_id, file_types, created_at, updated_at, field_id) FROM stdin;
37	11	text	Full Name	Full Name	\N	\N	\N	2025-02-07 10:39:59	2025-02-07 10:39:59	0
38	11	text	Email	Email	\N	\N	\N	2025-02-07 10:39:59	2025-02-07 10:39:59	1
39	11	text	Phone	Phone	\N	\N	\N	2025-02-07 10:39:59	2025-02-07 10:39:59	2
40	11	text	City	City	\N	\N	\N	2025-02-07 10:39:59	2025-02-07 10:39:59	3
41	11	select	Region	Region	\N	8	\N	2025-02-07 10:39:59	2025-02-07 10:39:59	4
42	11	select	Licence Type	Licence Type	\N	7	\N	2025-02-07 10:39:59	2025-02-07 10:39:59	5
43	11	text	Year Validity	Year Validity	\N	\N	\N	2025-02-07 10:39:59	2025-02-07 10:39:59	6
44	11	file	Upload Licence	Upload Licence	\N	\N	png,pdf	2025-02-07 10:39:59	2025-02-07 10:39:59	7
\.


--
-- Data for Name: service_details; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.service_details (id, service_id, title, content, created_at, updated_at) FROM stdin;
35	9	asdasda	asdasdas	2024-12-26 18:03:14	2024-12-26 18:03:14
36	9	asdada	asdadadas	2024-12-26 18:03:14	2024-12-26 18:03:14
37	9	asdasda	adasdas	2024-12-26 18:03:14	2024-12-26 18:03:14
38	9	adasdas	asdasdadsasd	2024-12-26 18:03:14	2024-12-26 18:03:14
43	5	Background Checks	These cases are perfectly simple and easy to distinguish. In a free hour when our power.	2024-12-27 13:41:24	2024-12-27 13:41:24
44	5	Profile Assessments	Indignation and men who are so beguiled and demoralized by the charms blinded.	2024-12-27 13:41:24	2024-12-27 13:41:24
45	5	Position Description	Trouble that are bound to ensue and equal blame belongs those who fail in their duty.	2024-12-27 13:41:24	2024-12-27 13:41:24
46	5	HR Functions	<div class="description_box">\r\n                       <p>Nothing prevents our being able to do what we like best every pleasure is to be welcomed &amp; every pain avoided certain circumstances.</p>\r\n                    </div>\r\n                           <!--===============spacing==============-->\r\n                           <div class="pd_bottom_25"></div>\r\n                           <!--===============spacing==============-->\r\n                    <div class="content_box_cn style_one">\r\n                       <div class="txt_content">\r\n                          <h3>\r\n                             <a href="#" target="_blank" rel="nofollow">Open Communication</a>\r\n                          </h3>\r\n                          <p>Equal blame belongs to those who fail in their duty through weakness same duty.</p>\r\n                       </div>\r\n                    </div>\r\n                    \r\n                    <div class="content_box_cn  style_one">\r\n                       <div class="txt_content">\r\n                          <h3>\r\n                             <a href="#" target="_blank" rel="nofollow">Sharing a Vision</a>\r\n                          </h3>\r\n                          <p>Business it will frequently occur that pleasures have to be repudiated.</p>\r\n                       </div>\r\n                    </div>\r\n                    \r\n                    <div class="content_box_cn  style_one">\r\n                       <div class="txt_content">\r\n                          <h3>\r\n                             <a href="#" target="_blank" rel="nofollow">Recognizing Employee</a>\r\n                          </h3>\r\n                          <p>Holds in these matter to this principle selection he rejects pleasures to secure.</p>\r\n                       </div>\r\n                    </div>	2024-12-27 13:41:24	2024-12-27 13:41:24
47	10	asdasdasd	asdasdasasdads	2024-12-30 17:19:09	2024-12-30 17:19:09
48	10	asdasdas	adadasd	2024-12-30 17:19:09	2024-12-30 17:19:09
49	10	asdasdasd	adasdasdssas	2024-12-30 17:19:09	2024-12-30 17:19:09
50	10	adada	asdasdasd	2024-12-30 17:19:09	2024-12-30 17:19:09
51	11	asdasd	asdas	2025-01-31 06:54:00	2025-01-31 06:54:00
52	11	sdasd	asdas	2025-01-31 06:54:00	2025-01-31 06:54:00
53	11	sdas	asdasd	2025-01-31 06:54:00	2025-01-31 06:54:00
54	11	asdas	asdasdad	2025-01-31 06:54:00	2025-01-31 06:54:00
\.


--
-- Data for Name: service_faqs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.service_faqs (id, service_id, question, answer, created_at, updated_at) FROM stdin;
32	9	adadas	adasdas	2024-12-26 18:03:14	2024-12-26 18:03:14
33	9	adasd	adasdsa	2024-12-26 18:03:14	2024-12-26 18:03:14
36	5	Who is Tasheel Legal Transilation?1	Nor again is there anyone who loves or pursues or desires to obtain\r\n                                       pain itself because it is pains but because occasionally circumstances\r\n                                       occurs great pleasure take a trivial of us.	2024-12-27 13:41:24	2024-12-27 13:41:24
37	5	What recruitment services do you offer?	Serenity Is Multi-Faceted Blockchain Based Ecosystem, Energy Retailer For The People, Focusing On The Promotion Of Sustainable Living, Renewable Energy Production And Smart Energy Grid Utility Services.	2024-12-27 13:41:24	2024-12-27 13:41:24
38	5	How can I register a job?	Serenity Is Multi-Faceted Blockchain Based Ecosystem, Energy Retailer For The People, Focusing On The Promotion Of Sustainable Living, Renewable Energy Production And Smart Energy Grid Utility Services.	2024-12-27 13:41:24	2024-12-27 13:41:24
39	10	asdas	adasda	2024-12-30 17:19:09	2024-12-30 17:19:09
40	10	adad	adasdasds	2024-12-30 17:19:09	2024-12-30 17:19:09
41	11	sdasdas	sdasda	2025-01-31 06:54:00	2025-01-31 06:54:00
42	11	sdasd	sdas	2025-01-31 06:54:00	2025-01-31 06:54:00
\.


--
-- Data for Name: service_pricing; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.service_pricing (id, service_id, translation_from, translation_to, price, status, created_at, updated_at) FROM stdin;
1	2	3	5	12.00	1	2024-12-26 15:20:56	2024-12-26 17:46:05
2	2	1	4	120.00	1	2024-12-27 13:40:43	2024-12-27 13:40:43
3	2	1	5	12.00	1	2024-12-27 13:41:04	2024-12-27 13:41:04
4	5	5	4	20.00	1	2025-01-31 07:30:06	2025-01-31 07:30:06
\.


--
-- Data for Name: services; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.services (id, title, service_type_id, subtitle, description, status, created_at, updated_at, background_image, service_image, other_image, price_from, price_to) FROM stdin;
5	Legal Translation	2	Specialized translation of legal documents ensuring accuracy and compliance with legal standards.	<p><span style="color: rgb(74, 78, 86); font-family: Inter, sans-serif; font-size: 16px;">Our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty.<br></span><span style="color: rgb(74, 78, 86); font-family: Inter, sans-serif; font-size: 16px;">Our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty.<br></span><span style="color: rgb(74, 78, 86); font-family: Inter, sans-serif; font-size: 16px;">Our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty.</span><span style="color: rgb(74, 78, 86); font-family: Inter, sans-serif; font-size: 16px;"></span><span style="color: rgb(74, 78, 86); font-family: Inter, sans-serif; font-size: 16px;"></span></p>	1	2024-12-24 11:56:22	2024-12-27 13:41:24	1735143740676c313cd5177.jpg	1735143741676c313da2f92.jpg	1735143741676c313da32d3.jpg	20	60
9	Certified Translation	3	Specialized translation of legal documents ensuring accuracy and compliance with legal standards.	<p><span style="color: rgb(74, 78, 86); font-family: Inter, sans-serif; font-size: 16px;">Our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty.</span></p>	1	2024-12-25 21:28:53	2024-12-26 18:03:14	1735162133676c79155404a.jpg	1735166702676c8aeea206a.jpg	1735162133676c791556ffc.jpg	10	1000
10	Police verification	4	asdasdada	<p>dsasdasdasdasdasdasdasdadads</p>	1	2024-12-26 17:58:48	2024-12-30 17:19:09	1735235927676d9957b92a2.jpg	1735235928676d995883e55.jpg	1735235928676d995884186.png	12	123
11	Driving License (Local/ International)	5	Driving License (Local/ International)	<p><span style="color: rgb(33, 37, 41); font-family: Poppins, sans-serif; text-wrap-mode: nowrap;">Driving License (Local/ International)</span></p>	1	2025-01-31 06:54:00	2025-01-31 06:54:00	1738306439679c7387490c7.jpg	1738306440679c738802f0c.png	1738306440679c7388032f5.jpg	12	120
\.


--
-- Data for Name: services_bookings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.services_bookings (id, service_id, created_at, updated_at, booking_id, first_name, last_name, company_name, country, street_address, apartment, city, state, phone, email, file_namesconfirm, order_notes, total, status) FROM stdin;
21	11	2025-02-05 16:33:15	2025-02-05 16:33:15	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0.00	Pending
22	11	2025-02-05 16:39:55	2025-02-05 16:39:55	#TS437031098	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0.00	Pending
23	11	2025-02-07 06:56:19	2025-02-07 06:56:19	#TS630711806	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0.00	Pending
24	11	2025-02-07 06:57:08	2025-02-07 06:57:08	#TS773525448	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0.00	Pending
25	11	2025-02-08 11:26:14	2025-02-08 11:26:14	#TS562287691	Shay	Stanton	Hubbard Delaney Inc	UAE1	Eos do unde ut arch	Excepteur commodo ma	Est voluptas quia ac	Culpa eaque fuga B	+1 (714) 523-4407	wypacyje@mailinator.com	\N	Non ipsa dolore opt	0.00	Pending
26	11	2025-02-08 11:38:30	2025-02-08 11:38:30	#TS269568670	Simone	Wood	Lott Mckay Co	Maskat	Nihil est rerum dol	Odio sit inventore	Rerum est ad quam q	Dolore voluptate fug	+1 (997) 255-9662	zupujugix@mailinator.com	\N	Dolore ut et est cup	0.00	Pending
27	11	2025-02-08 11:39:36	2025-02-08 11:39:36	#TS285620534	Darrel	Todd	Burch Rocha Inc	Maskat	Aut veniam similiqu	Sed eum qui eos sunt	Ea sunt sunt aut et	Eos iure aliquam ass	+1 (805) 183-6762	lupavub@mailinator.com	\N	Ipsa sint voluptate	0.00	Pending
28	11	2025-02-08 11:41:42	2025-02-08 11:41:42	#TS498467896	Ivy	Barrera	Lewis Frederick LLC	UAE1	Qui nemo saepe offic	Esse ut omnis sunt e	Impedit odio eaque	Obcaecati possimus	+1 (564) 226-3612	nypera@mailinator.com	\N	Architecto deserunt	0.00	Pending
29	11	2025-02-08 11:44:18	2025-02-08 11:44:18	#TS260540127	Sopoline	Snyder	Emerson Snyder Plc	Camilla Benton	Doloremque nemo sint	Quidem ab exercitati	Neque ad sed consequ	Natus proident ipsu	+1 (747) 326-3428	qypixuzym@mailinator.com	\N	Tenetur sint cupidit	0.00	Pending
30	11	2025-02-08 11:47:21	2025-02-08 11:47:21	#TS809715464	Miranda	Gates	Holloway and Mcdowell Inc	Canada	Sed eu qui officiis	Eos in cupiditate pr	Lorem repellendus D	Pariatur A neque as	+1 (212) 482-6149	cahily@mailinator.com	\N	Quisquam et ipsa co	0.00	Pending
31	11	2025-02-11 15:41:54	2025-02-11 15:41:54	#TS448681406	Griffith	Duffy	Mann Simon LLC	Canada	Enim quibusdam occae	Laboris nihil conseq	A blanditiis quibusd	Aliquip ut fugit ip	+1 (736) 859-3897	nymogujig@mailinator.com	\N	Incididunt do quia a	13.01	Pending
32	11	2025-02-11 15:45:12	2025-02-11 15:59:47	#TS753416093	Kiona	Keith	Byers and Mueller LLC	Maskat	Qui ipsum qui eaque	Labore ut incidunt	Odio praesentium ips	Culpa reprehenderit	+1 (102) 366-3044	guqelupek@mailinator.com	\N	Dolorem sed culpa do	13.01	Ready for Delivery
\.


--
-- Data for Name: services_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.services_types (id, name, status, created_at, updated_at) FROM stdin;
2	Legal Translation	1	2024-12-26 15:48:42	2024-12-26 17:43:28
3	Certified Translation	1	2024-12-26 17:43:45	2024-12-26 17:43:45
4	Police verification	1	2024-12-30 17:18:41	2024-12-30 17:18:41
5	Driving License (Local/ International)	1	2025-01-31 06:52:08	2025-01-31 06:52:08
\.


--
-- Data for Name: sessions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sessions (id, user_id, ip_address, user_agent, payload, last_activity) FROM stdin;
Fuo9zz9y7BNeLrnLN9jZeoxAEgqjWbQHCq7WuU6W	1	101.53.247.10	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36	YTo1OntzOjY6Il90b2tlbiI7czo0MDoiOWlFYTE4cDhFazMzdHNtSUx6U3hRZDVzUlNmdVVEeEFocVZaZ2JoNyI7czozOiJ1cmwiO2E6MTp7czo4OiJpbnRlbmRlZCI7czo1MDoiaHR0cHM6Ly9sdXFpYS5hZS9hcHAvcHVibGljL2FkbWluL21hcml0YWxfc3RhdHVzZXMiO31zOjk6Il9wcmV2aW91cyI7YToxOntzOjM6InVybCI7czo0NzoiaHR0cHM6Ly9sdXFpYS5hZS9hcHAvcHVibGljL2FkbWluL25vdGlmaWNhdGlvbnMiO31zOjY6Il9mbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX1zOjUwOiJsb2dpbl93ZWJfNTliYTM2YWRkYzJiMmY5NDAxNTgwZjAxNGM3ZjU4ZWE0ZTMwOTg5ZCI7aToxO30=	1767876593
ZHFRfvsWCoMzSYjUhYi4NAysyVxCZeL19adcyoda	1	83.110.22.77	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36	YTo1OntzOjY6Il90b2tlbiI7czo0MDoiUDZwT3A4RlR1VGU3d3lZdG5Oa3hKUjQ5Yk9GelM2SnVuN2ZSRDlaNCI7czozOiJ1cmwiO2E6MTp7czo4OiJpbnRlbmRlZCI7czo0NDoiaHR0cHM6Ly9sdXFpYS5hZS9hcHAvcHVibGljL2FkbWluL3VzZXJzL21hbGUiO31zOjk6Il9wcmV2aW91cyI7YToxOntzOjM6InVybCI7czo0NjoiaHR0cHM6Ly9sdXFpYS5hZS9hcHAvcHVibGljL2FkbWluL3VzZXJzL2ZlbWFsZSI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fXM6NTA6ImxvZ2luX3dlYl81OWJhMzZhZGRjMmIyZjk0MDE1ODBmMDE0YzdmNThlYTRlMzA5ODlkIjtpOjE7fQ==	1767876153
\.


--
-- Data for Name: site_settings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.site_settings (id, key, value, created_at, updated_at) FROM stdin;
1	email	info@tasheel.ps	2024-12-22 03:16:13	2024-12-22 03:19:21
2	phone_number	+972 56 220 0190	2024-12-22 03:16:13	2024-12-22 03:19:21
3	landline_number	0 229 1234	2024-12-22 03:16:13	2024-12-22 03:19:21
4	whatsapp_number	972562200190	2024-12-22 03:16:13	2024-12-22 03:19:21
5	facebook_url	https://www.facebook.com/	2024-12-22 03:16:13	2024-12-22 03:19:21
6	instagram_url	https://www.instagram.com/	2024-12-22 03:16:13	2024-12-22 03:19:21
\.


--
-- Data for Name: slider_items; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.slider_items (id, slider_id, name, image, status, created_at, updated_at, deleted_at) FROM stdin;
1	1	Page 1	UpvZHP7lY0rKEMLYy0KSIZpXR8l7uWO1KJugDIg4.png	1	2025-03-26 06:12:52	2025-03-26 06:12:52	\N
\.


--
-- Data for Name: sliders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sliders (id, name, category_id, status, created_at, updated_at, deleted_at) FROM stdin;
1	Main Page	5	1	2025-03-26 06:12:32	2025-03-26 06:12:32	\N
\.


--
-- Data for Name: sports; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.sports (id, name, name_ar, status, deleted_at, created_at, updated_at, image) FROM stdin;
1	Rugby	الرجبي	1	\N	2025-05-05 08:17:37	2025-06-06 11:23:29	6842cfb1bd5cd_1749209009.png
6	Cycling	ركوب الدراجات	1	\N	2025-05-05 08:21:02	2025-06-06 11:25:12	6842d01871839_1749209112.png
2	Swimming	السباحة	1	\N	2025-05-05 08:18:20	2025-06-06 11:27:53	6842d0b9cf011_1749209273.png
3	Tennis	التنس	1	\N	2025-05-05 08:18:48	2025-06-06 11:28:48	6842d0f0b6ccb_1749209328.png
4	Footballs	كرة القدم	1	\N	2025-05-05 08:19:42	2025-06-06 11:30:06	6842d13e5c545_1749209406.png
5	Boxing	الملاكمة	1	\N	2025-05-05 08:20:16	2025-06-07 11:27:36	684422289c8e0_1749295656.png
\.


--
-- Data for Name: support_tickets; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.support_tickets (id, ticket_number, user_id, subject, description, status, created_at, updated_at) FROM stdin;
1	SP-000001	215	Hello	hello	1	2025-06-04 07:09:04	2025-06-04 07:09:04
2	SP-000002	233	Fggghhhh	fgghhhhhhhhhhjj	1	2025-06-05 09:29:07	2025-06-05 09:29:07
3	SP-000003	243	Hello	hello	1	2025-06-09 09:45:25	2025-06-09 09:45:25
4	SP-000004	244	Lucia support	Lucia supports	1	2025-06-11 06:22:32	2025-06-11 06:22:32
5	SP-000005	267	Bgfgvvvv	ccgv.     chihtffg	1	2025-07-13 08:18:32	2025-07-13 08:18:32
6	SP-000006	268	Fffggg	fffggg	1	2025-07-13 21:28:05	2025-07-13 21:28:05
7	SP-000007	270	Nnn	vvb	1	2025-07-14 05:19:02	2025-07-14 05:19:02
8	SP-000008	270	Ubbb	bbbn	1	2025-07-14 05:25:41	2025-07-14 05:25:41
9	SP-000009	273	منعفقلا	ناغثيذرنممننااا	1	2025-07-16 08:25:34	2025-07-16 08:25:34
10	SP-000010	262	Ruururur	hehjrjr	1	2025-07-16 09:07:29	2025-07-16 09:07:29
11	SP-000011	273	عففبىو	زاررىةةويياتنن تبىةزمت.   الىوززى	1	2025-07-16 10:13:17	2025-07-16 10:13:17
12	SP-000012	277	لاريوجد تشتبه	تعبتما	1	2025-07-17 09:00:42	2025-07-17 09:00:42
13	SP-000013	260	Hhsd	hshds	1	2025-07-18 17:11:39	2025-07-18 17:11:39
\.


--
-- Data for Name: target_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.target_types (id, name, status, created_at, updated_at) FROM stdin;
3	KM1	1	2024-12-10 17:22:23	2024-12-17 19:57:14
4	Floor	1	2024-12-10 17:22:38	2024-12-16 14:21:51
\.


--
-- Data for Name: target_types_company; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.target_types_company (id, company_id, name, status, created_at, updated_at) FROM stdin;
2	23	test1	1	2024-12-16 03:21:20	2024-12-16 03:21:20
3	23	test	1	2024-12-16 03:22:50	2024-12-16 03:22:50
\.


--
-- Data for Name: temp_orders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.temp_orders (id, plan_id, user_id, duration_id, duration, payment_method, total_price, currency, discount, promo_code, grand_total, status, transaction_id, created_at, updated_at) FROM stdin;
2	2	157	\N	monthly	1	100.00	AED	0.00	\N	100.00	pending	157683448ae31abd1748256942	2025-05-26 10:55:42	2025-05-26 10:55:42
209	2	320	\N	quarterly	4	300.00	AED	0.00	\N	300.00	pending	3206940433e673ea1765819198	2025-12-15 17:19:58	2025-12-15 17:19:58
232	2	341	\N	quarterly	4	300.00	AED	0.00	\N	300.00	pending	341695d2acb4e6e81767713483	2026-01-06 15:31:23	2026-01-06 15:31:23
233	2	341	\N	quarterly	4	300.00	AED	0.00	\N	300.00	pending	341695d2acfbd50f1767713487	2026-01-06 15:31:27	2026-01-06 15:31:27
171	2	300	\N	quarterly	2	300.00	AED	0.00	\N	300.00	pending	3006913248913d5a1762862217	2025-11-11 11:56:57	2025-11-11 11:56:57
172	2	300	\N	quarterly	2	300.00	AED	0.00	\N	300.00	pending	3006913271a231d31762862874	2025-11-11 12:07:54	2025-11-11 12:07:54
183	2	210	\N	quarterly	1	300.00	AED	0.00	\N	300.00	pending	210691af1c5a9a0c1763373509	2025-11-17 09:58:29	2025-11-17 09:58:29
184	2	210	\N	quarterly	1	300.00	AED	0.00	\N	300.00	pending	210691af3100f4af1763373840	2025-11-17 10:04:00	2025-11-17 10:04:00
185	2	210	\N	quarterly	1	300.00	AED	0.00	\N	300.00	pending	210691af5987a15a1763374488	2025-11-17 10:14:48	2025-11-17 10:14:48
189	2	307	\N	quarterly	1	300.00	AED	0.00	\N	300.00	pending	307691c0d1b755561763446043	2025-11-18 06:07:23	2025-11-18 06:07:23
190	2	307	\N	quarterly	1	300.00	AED	0.00	\N	300.00	pending	307691c0d3b8b5451763446075	2025-11-18 06:07:55	2025-11-18 06:07:55
191	2	307	\N	quarterly	1	300.00	AED	0.00	\N	300.00	pending	307691c0e612ff8e1763446369	2025-11-18 06:12:49	2025-11-18 06:12:49
192	2	307	\N	quarterly	1	300.00	AED	0.00	\N	300.00	pending	307691c10ce064971763446990	2025-11-18 06:23:10	2025-11-18 06:23:10
193	2	307	\N	quarterly	1	300.00	AED	0.00	\N	300.00	pending	307691c1116598181763447062	2025-11-18 06:24:22	2025-11-18 06:24:22
195	2	307	\N	quarterly	4	300.00	AED	0.00	\N	300.00	pending	307691c15b0e0d071763448240	2025-11-18 06:44:00	2025-11-18 06:44:00
196	2	307	\N	quarterly	1	300.00	AED	0.00	\N	300.00	pending	307691c15bed4a541763448254	2025-11-18 06:44:14	2025-11-18 06:44:14
197	2	307	\N	quarterly	4	300.00	AED	0.00	\N	300.00	pending	307691c15d3043ad1763448275	2025-11-18 06:44:35	2025-11-18 06:44:35
\.


--
-- Data for Name: temp_users; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.temp_users (id, name, nick_name, dial_code, phone, email, gender, password, dob, country_id, user_phone_otp, user_email_otp, user_device_type, user_device_token, created_at, updated_at, parent_name, parent_email, external_customer_id, is_mother_uae_national, is_pending_from_admin, birth_certificate, mothers_emirates_id, reject_reason, gardien_relation, gardien_phone_dial_code, gardien_phone_number) FROM stdin;
13	Hamid	Raza	971	344156258	dx010@gmail.com	Male	$2y$12$vabS2SvVct7Y32qxkQYT2.OjyaKrNV9RDmeHok2bcukgSYUutNki.	1996-01-12	169	1111	1111	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	2025-05-26 20:26:29	2025-05-26 20:26:29	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N
14	Hamid	Raza	971	346767667	dx011@gmail.com	Female	$2y$12$3e6uF0EvI3u7.5D6q7Iuf.R4IJbtsDjtBBsg5t99nvLxkR/27vPRG	1996-01-12	169	1111	1111	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	2025-05-26 22:27:58	2025-05-26 22:27:58	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N
11	Anil navus	anol	971	564005096	anilnavis@gmail.com	Male	$2y$12$4yd61GBO10vcoeVu3h6st.KHuVz6NmFAtP370v1OM6KuozOZqsGsm	2005-04-28	237	1111	1111	android	eiOF59gkTGqfbdSZdrLNls:APA91bEx3h6giVdpTJIbE5Rh4U-nWXEYanmnY0K4hz3APy03-UbtCUozBFUtYBmadn67NibskHczSAgQ9_hJSbesCpPHqwfSir68XMTjohay9mCAnzAtzR0	2025-05-24 15:33:17	2025-05-27 04:42:01	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N
98	Asad	Asadz	971	344156069	asdf@gmail.com	Male	$2y$12$hDSn8cf9BKnLa6h0vHOQDOuaRLQi76DlodQf.TZdhwc.d5V0RdOwq	2007-06-28	237	1111	1111	android	cBEeU5drQ7-a2NQAotWASp:APA91bGAaippZcniJOtecVCBuiF6gUUB9mifn__uExHkttBYdlw4yJBDqUM4tjpaiixR2flQLzGsABcvG-fk0y_Vmav_MsnsP2OhbI1gcuADB6aNzGvlKlU	2025-06-27 19:18:31	2025-06-27 19:18:31			\N	0	0	\N	\N	\N	\N	\N	\N
33	Ariba Ahmed	Ariba	971	561660144	ariba@gmail.com	Female	$2y$12$DcY4Tkb13r7LCkhzpbeteurs5d/3xreOm59Ai.SlqbXuAaWG7XJ2e	2000-08-29	237	1111	1111	android	dLmseM_4RoK4qQSvabmirh:APA91bHLxQYEYc4kIUfLX0oqDZUY2AUTtmDU2jKMjIJDH0vxcVXBThVpcQWjjE0FhARqWhijFcbEGOu2eA1yY7MqmTn7c3gN2eSBn3AM_uhBsy4ohNZqn9k	2025-05-28 06:47:11	2025-05-28 06:47:11	Ahmed khan	hibadxba@hotmail.com	\N	0	0	\N	\N	\N	\N	\N	\N
55	Mudassar Zahid	Mudassar	+971	1633481285	mudasserzahid48+23@gmail.com	Male	$2y$12$LXF4f5u6.wCeDNvLKOGdMu0bCLmuGDYbWkVnEobvQQbMtotpets2a	1994-05-25	1	1111	1111	android	asdfasdfasd	2025-05-30 14:02:28	2025-05-30 14:02:28			\N	0	0	\N	\N	\N	\N	\N	\N
56	Mudassar Zahid	Mudassar	+971	1633481286	mudasserzahid48+24@gmail.com	Male	$2y$12$i3MS4hG1xCA.7agtPC1c8eXvIlf8uhscWVCLHak4EwkD9rnlUTCg2	1994-05-25	1	1111	1111	android	asdfasdfasd	2025-05-30 14:05:02	2025-05-30 14:05:02			\N	0	0	\N	\N	\N	\N	\N	\N
136	Hamid	Raxa	971	356656665	razahamid34+34@gmail.com	Female	$2y$12$J8RVLf89/nUo3OoomFFYrez5cijOzzkSHJGAFJ5Qgf4LChVcyvJSS	2007-08-18	237	1111	1111	android	cgzxIpTIQt2zbuCiXwKEml:APA91bExT9K4-GSp3H186XlxIpd7Ofhh4ktxJNKe2ZO9myI-e1LMFIWAUfM9ICasI3csRrmK713ciZxgnl1k3vLakcYk9m-1XeGiVMVAa_xUgkXCP3RE3x8	2025-08-18 11:21:37	2025-08-18 11:21:52	Hamid	razahamid34@gmail.com	\N	0	0	\N	\N	\N	\N	\N	\N
158	Mudassar Zahid	Mudassar	+971	16334812234	sooraj.a2solution+26@gmail.com	Male	$2y$12$WjvZezxglhc4c237xc0Z1OtAXGp1CBtonawyM6w6z2rVguYZsxZxW	1994-05-25	229	1111	1111	android	asdfasdfasd	2025-11-17 14:21:14	2025-11-17 15:22:32	Zahid		\N	0	0	\N	\N	\N	Father	971	505041860
165	Sooraj	Sooraj	971	505041861	sooraj@yopmail.com	Male	$2y$12$w/3NqGlr5wPi4guqKFaiXuazKUiVFh/u7fuonzgofKbgDubHSmNhq	2007-11-01	237	1111	1111	android	dNrExFSuQwS9Ti8fzQzVOE:APA91bEiDc1VwNudqkbK5aZlevrUFtULFdbVyR0jmF0ZQ8d8rUEm5W3Gfz8uMJitrVzddpsa4Tsfkol6EJd1VZZtKqiAUdesdjwr12Jhksqzvpfg5rND3FY	2025-11-18 10:15:45	2025-11-18 10:15:45	Sooraj		\N	0	0	\N	\N	\N	Dthr	971	505041861
\.


--
-- Data for Name: translation_types; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.translation_types (id, name, description, price_type, price, percentage, category, status, created_at, updated_at) FROM stdin;
1	test	testsada	rush_fee	\N	30.00	default-category	1	2024-12-26 16:53:41	2024-12-26 16:53:41
3	EXPEDITED	15 - 24 hours Tomorrow at 7:52 PM (latest)	rush_fee	\N	30.00	only_translation	1	2024-12-26 17:12:44	2024-12-27 19:07:15
4	EXPEDITED	15 - 24 hours Tomorrow at 7:52 PM (latest)	rush_fee	\N	30.00	notarized	1	2024-12-26 17:13:03	2024-12-30 10:28:50
5	STANDARD	1 - 2 days Monday at 7:52 PM (latest)	free	0.00	\N	notarized	1	2024-12-26 17:31:22	2024-12-27 19:23:44
7	STANDARD	1 - 2 days Monday at 7:52 PM (latest)	free	0.00	\N	certified	1	2024-12-26 17:33:22	2024-12-27 19:00:22
8	EXPEDITED	15 - 24 hours Tomorrow at 7:52 PM (latest)	rush_fee	\N	30.00	certified	1	2024-12-27 19:00:53	2024-12-27 20:02:30
11	STANDARD	1 - 2 days Monday at 7:52 PM (latest)	free	0.00	\N	only_translation	1	2024-12-27 19:02:53	2024-12-27 19:02:53
\.


--
-- Data for Name: translation_types_categories; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.translation_types_categories (id, name, slug, status, created_at, updated_at, description, price_type, price, percentage) FROM stdin;
2	CERTIFIED	certified	1	2024-12-30 10:26:55	2024-12-31 10:34:42	Includes an official coversheet with the company header, stamp, and signature from a Licensed Translator, accredited by the Palestinian Ministry of Justice.	free	0.00	0.00
3	ONLY TRANSLATION	only_translation	1	2024-12-30 10:27:33	2024-12-31 10:35:30	For those who need only professional translation.	free	0.00	0.00
5	NOTARIZED	notarized	1	2024-12-30 10:31:48	2024-12-31 10:35:55	Includes an official cover page with a red seal, stamped with the signature of the licensed Notary Public.	fixed	25.00	0.00
\.


--
-- Data for Name: user_activities; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_activities (id, user_id, activity_id, created_at, updated_at) FROM stdin;
1	35	1	2025-03-11 17:18:40	2025-03-11 17:18:40
3	157	5	\N	\N
5	157	3	\N	\N
9	171	5	\N	\N
10	171	9	\N	\N
11	173	1	\N	\N
12	173	2	\N	\N
13	173	3	\N	\N
14	173	5	\N	\N
15	173	7	\N	\N
16	174	6	\N	\N
17	174	3	\N	\N
20	177	3	\N	\N
21	177	7	\N	\N
22	177	1	\N	\N
23	177	6	\N	\N
26	176	6	\N	\N
27	181	6	\N	\N
28	181	3	\N	\N
29	181	5	\N	\N
30	179	3	\N	\N
31	50	7	\N	\N
32	50	4	\N	\N
33	50	3	\N	\N
34	50	6	\N	\N
35	189	4	\N	\N
36	189	7	\N	\N
37	189	3	\N	\N
38	189	6	\N	\N
39	191	7	\N	\N
42	193	9	\N	\N
43	193	1	\N	\N
44	193	6	\N	\N
45	194	5	\N	\N
46	194	7	\N	\N
47	194	9	\N	\N
48	195	1	\N	\N
49	195	3	\N	\N
50	195	6	\N	\N
51	196	1	\N	\N
52	196	3	\N	\N
53	197	3	\N	\N
54	197	6	\N	\N
55	200	9	\N	\N
56	200	3	\N	\N
57	200	1	\N	\N
58	200	5	\N	\N
59	202	1	\N	\N
60	202	3	\N	\N
61	202	9	\N	\N
62	209	6	\N	\N
63	209	7	\N	\N
68	212	1	\N	\N
69	212	7	\N	\N
70	212	9	\N	\N
71	215	7	\N	\N
76	216	9	\N	\N
78	53	1	\N	\N
79	53	5	\N	\N
81	211	5	\N	\N
91	216	4	\N	\N
92	216	7	\N	\N
93	214	1	\N	\N
94	214	5	\N	\N
95	214	6	\N	\N
96	219	1	\N	\N
97	219	5	\N	\N
98	223	9	\N	\N
99	223	5	\N	\N
100	223	6	\N	\N
101	224	6	\N	\N
102	224	3	\N	\N
104	222	1	\N	\N
105	222	3	\N	\N
106	222	5	\N	\N
107	222	6	\N	\N
108	229	5	\N	\N
109	229	9	\N	\N
110	230	1	\N	\N
111	230	3	\N	\N
112	230	9	\N	\N
113	231	1	\N	\N
114	231	5	\N	\N
115	232	3	\N	\N
116	232	6	\N	\N
117	233	9	\N	\N
118	233	5	\N	\N
119	233	1	\N	\N
120	234	6	\N	\N
121	234	9	\N	\N
122	237	1	\N	\N
123	237	3	\N	\N
124	237	5	\N	\N
125	237	7	\N	\N
126	238	1	\N	\N
127	238	5	\N	\N
128	239	1	\N	\N
129	239	5	\N	\N
130	192	1	\N	\N
131	192	5	\N	\N
132	241	1	\N	\N
133	241	7	\N	\N
134	242	3	\N	\N
135	243	6	\N	\N
136	243	9	\N	\N
137	243	1	\N	\N
138	244	6	\N	\N
139	244	7	\N	\N
140	246	3	\N	\N
141	246	1	\N	\N
142	246	5	\N	\N
143	246	7	\N	\N
144	246	9	\N	\N
145	246	6	\N	\N
146	245	3	\N	\N
147	245	5	\N	\N
148	245	9	\N	\N
149	247	9	\N	\N
150	247	5	\N	\N
151	249	3	\N	\N
152	249	6	\N	\N
153	250	6	\N	\N
154	250	3	\N	\N
155	253	1	\N	\N
156	253	5	\N	\N
157	253	6	\N	\N
158	254	1	\N	\N
159	254	5	\N	\N
160	254	6	\N	\N
161	262	1	\N	\N
162	262	5	\N	\N
163	262	6	\N	\N
164	263	6	\N	\N
165	263	1	\N	\N
166	264	1	\N	\N
167	264	9	\N	\N
168	264	5	\N	\N
170	267	1	\N	\N
171	267	6	\N	\N
172	268	1	\N	\N
173	268	5	\N	\N
174	269	9	\N	\N
175	269	5	\N	\N
176	269	6	\N	\N
177	270	9	\N	\N
178	270	6	\N	\N
179	271	1	\N	\N
180	271	6	\N	\N
181	272	1	\N	\N
182	272	3	\N	\N
183	273	1	\N	\N
184	273	6	\N	\N
185	273	7	\N	\N
186	273	9	\N	\N
187	274	3	\N	\N
188	274	5	\N	\N
189	274	7	\N	\N
190	276	1	\N	\N
191	276	5	\N	\N
192	276	9	\N	\N
193	277	9	\N	\N
194	277	6	\N	\N
195	283	1	\N	\N
196	286	3	\N	\N
197	286	6	\N	\N
198	288	1	\N	\N
199	288	4	\N	\N
200	279	5	\N	\N
201	279	9	\N	\N
202	284	1	\N	\N
203	284	9	\N	\N
204	290	1	\N	\N
205	291	3	\N	\N
206	293	5	\N	\N
207	293	4	\N	\N
208	293	3	\N	\N
209	293	1	\N	\N
210	293	6	\N	\N
211	293	7	\N	\N
212	293	9	\N	\N
213	300	1	\N	\N
214	300	4	\N	\N
215	300	7	\N	\N
218	310	7	\N	\N
219	310	9	\N	\N
220	311	1	\N	\N
221	311	3	\N	\N
222	312	5	\N	\N
223	312	6	\N	\N
224	313	1	\N	\N
225	313	3	\N	\N
226	313	5	\N	\N
227	315	4	\N	\N
228	315	7	\N	\N
229	316	1	\N	\N
230	320	1	\N	\N
231	320	4	\N	\N
232	320	3	\N	\N
233	320	7	\N	\N
234	320	6	\N	\N
235	320	5	\N	\N
236	320	9	\N	\N
237	319	1	\N	\N
238	319	6	\N	\N
239	318	1	\N	\N
240	318	9	\N	\N
242	303	1	\N	\N
243	303	4	\N	\N
244	326	7	\N	\N
245	326	4	\N	\N
246	330	6	\N	\N
247	331	6	\N	\N
248	339	5	\N	\N
249	341	9	\N	\N
250	343	4	\N	\N
251	343	3	\N	\N
252	344	5	\N	\N
\.


--
-- Data for Name: user_blocks; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_blocks (id, user_id, blocked_user_id, reason, created_at, updated_at) FROM stdin;
1	179	197	\N	2025-05-29 18:31:58	2025-05-29 18:31:58
2	193	197	\N	2025-05-30 10:34:08	2025-05-30 10:34:08
3	193	196	\N	2025-05-30 11:02:08	2025-05-30 11:02:08
4	53	51	\N	2025-05-30 11:43:32	2025-05-30 11:43:32
6	53	55	reason	2025-05-31 13:54:47	2025-05-31 13:54:47
7	53	56	reason	2025-05-31 14:07:46	2025-05-31 14:07:46
5	192	51	reason	2025-05-31 14:07:47	2025-05-31 14:07:47
8	219	215	\N	2025-06-04 08:44:39	2025-06-04 08:44:39
9	197	222	\N	2025-06-04 15:20:32	2025-06-04 15:20:32
10	197	192	\N	2025-06-04 15:22:42	2025-06-04 15:22:42
11	211	197	\N	2025-06-04 15:36:29	2025-06-04 15:36:29
12	216	215	\N	2025-06-05 08:50:53	2025-06-05 08:50:53
13	210	211	\N	2025-06-05 08:53:04	2025-06-05 08:53:04
14	239	192	Bullying or harassment	2025-06-06 12:54:56	2025-06-06 12:54:56
15	244	264	I just don't like it	2025-07-12 09:59:50	2025-07-12 09:59:50
16	260	262	Soliciting	2025-07-18 17:11:58	2025-07-18 17:11:58
17	283	276	\N	2025-08-14 14:11:53	2025-08-14 14:11:53
18	310	294	Chat Decission not to continue	2025-11-18 10:54:39	2025-11-18 10:54:39
19	294	310	Chat Decission not to continue	2025-11-18 10:54:39	2025-11-18 10:54:39
20	192	194	Chat Decission not to continue	2025-12-29 13:36:31	2025-12-29 13:36:31
21	194	192	Chat Decission not to continue	2025-12-29 13:36:31	2025-12-29 13:36:31
22	333	332	Chat Decission not to continue	2025-12-31 07:09:55	2025-12-31 07:09:55
23	332	333	Chat Decission not to continue	2025-12-31 07:09:55	2025-12-31 07:09:55
24	336	337	Chat Decission not to continue	2025-12-31 07:59:32	2025-12-31 07:59:32
25	337	336	Chat Decission not to continue	2025-12-31 07:59:32	2025-12-31 07:59:32
26	336	333	Chat Decission not to continue	2025-12-31 08:34:52	2025-12-31 08:34:52
27	333	336	Chat Decission not to continue	2025-12-31 08:34:52	2025-12-31 08:34:52
28	336	276	Chat Decission not to continue	2025-12-31 12:56:21	2025-12-31 12:56:21
29	276	336	Chat Decission not to continue	2025-12-31 12:56:21	2025-12-31 12:56:21
\.


--
-- Data for Name: user_children; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_children (id, user_id, kid_count, age, created_at, updated_at) FROM stdin;
1	50	2	1-7	2025-05-28 17:11:23	2025-05-28 17:11:23
4	53	2	5	2025-06-03 09:27:34	2025-06-03 09:27:34
5	53	1	3	2025-06-03 09:27:34	2025-06-03 09:27:34
13	211	5	9-15	2025-06-05 16:43:41	2025-06-05 16:43:41
22	192	2	5	2025-06-06 11:11:07	2025-06-06 11:11:07
23	192	1	3	2025-06-06 11:11:07	2025-06-06 11:11:07
24	240	1	1-8	2025-06-06 11:39:17	2025-06-06 11:39:17
25	240	2	16-25	2025-06-06 11:39:17	2025-06-06 11:39:17
27	243	1	9-15	2025-06-09 09:21:11	2025-06-09 09:21:11
30	244	1	1-8	2025-06-10 09:24:05	2025-06-10 09:24:05
31	244	1	16-25	2025-06-10 09:24:05	2025-06-10 09:24:05
32	246	1	9-15	2025-06-11 10:05:40	2025-06-11 10:05:40
33	249	1	1-8	2025-06-28 13:13:26	2025-06-28 13:13:26
34	249	1	9-15	2025-06-28 13:13:26	2025-06-28 13:13:26
38	252	2	9-15	2025-07-10 06:32:52	2025-07-10 06:32:52
39	253	2	1-8	2025-07-10 15:11:20	2025-07-10 15:11:20
40	254	2	1-8	2025-07-11 11:28:36	2025-07-11 11:28:36
41	263	1	9-15	2025-07-12 08:31:25	2025-07-12 08:31:25
42	263	1	16-25	2025-07-12 08:31:25	2025-07-12 08:31:25
43	264	1	1-8	2025-07-12 09:03:27	2025-07-12 09:03:27
44	264	1	16-25	2025-07-12 09:03:27	2025-07-12 09:03:27
46	267	1	1-8	2025-07-13 08:17:43	2025-07-13 08:17:43
47	267	1	9-15	2025-07-13 08:17:43	2025-07-13 08:17:43
48	268	1	1-8	2025-07-13 11:11:21	2025-07-13 11:11:21
49	271	1	1-8	2025-07-13 20:28:07	2025-07-13 20:28:07
50	276	1	1-8	2025-07-16 15:13:39	2025-07-16 15:13:39
51	280	1	1-8	2025-08-13 14:21:26	2025-08-13 14:21:26
55	291	1	6-11	2025-09-04 18:29:51	2025-09-04 18:29:51
56	312	1	1-5	2025-11-19 06:34:46	2025-11-19 06:34:46
57	318	1	1-5	2025-12-16 06:01:34	2025-12-16 06:01:34
58	325	2	1-5	2025-12-22 17:14:53	2025-12-22 17:14:53
59	337	1	1-5	2025-12-31 07:08:31	2025-12-31 07:08:31
60	344	2	1-5	2026-01-08 08:12:59	2026-01-08 08:12:59
\.


--
-- Data for Name: user_chronic_disease_variants; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_chronic_disease_variants (id, user_id, chronic_disease_id, chronic_disease_variant_id, created_at, updated_at) FROM stdin;
4	326	3	1	2025-12-29 09:43:26	2025-12-29 09:43:26
5	326	3	2	2025-12-29 09:43:26	2025-12-29 09:43:26
6	332	5	2	2025-12-29 17:02:47	2025-12-29 17:02:47
7	333	7	3	2025-12-30 07:37:42	2025-12-30 07:37:42
10	276	13	3	2025-12-31 12:57:58	2025-12-31 12:57:58
\.


--
-- Data for Name: user_chronic_diseases; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_chronic_diseases (id, user_id, chronic_disease_id, created_at, updated_at) FROM stdin;
3	326	1	2025-12-29 09:43:26	2025-12-29 09:43:26
5	332	1	2025-12-29 17:02:47	2025-12-29 17:02:47
6	333	2	2025-12-30 07:37:42	2025-12-30 07:37:42
7	333	1	2025-12-30 07:37:42	2025-12-30 07:37:42
13	276	1	2025-12-31 12:57:58	2025-12-31 12:57:58
14	336	2	2025-12-31 12:58:29	2025-12-31 12:58:29
15	344	2	2026-01-08 08:13:11	2026-01-08 08:13:11
\.


--
-- Data for Name: user_connection; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_connection (id, user_id, connected_user_id, is_blocked, reason, hide_image, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: user_connections; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_connections (id, user_id, connected_user_id, created_at, updated_at, hide_image) FROM stdin;
57	230	219	2025-06-05 07:22:04	2025-06-05 07:22:04	0
125	245	244	2025-07-11 15:01:53	2025-07-11 15:01:53	0
126	244	245	2025-07-11 15:01:53	2025-07-11 15:01:53	0
8	179	197	2025-05-29 18:23:35	2025-05-29 18:23:35	0
58	219	230	2025-06-05 07:22:04	2025-06-05 07:23:41	1
11	197	193	2025-05-30 10:33:55	2025-05-30 10:33:55	0
12	193	197	2025-05-30 10:33:55	2025-05-30 10:33:55	0
68	215	233	2025-06-05 09:36:16	2025-06-05 09:36:16	0
67	233	215	2025-06-05 09:36:16	2025-06-05 09:45:13	1
185	265	211	2025-07-13 14:08:56	2025-07-13 14:08:56	0
87	243	215	2025-06-09 09:50:19	2025-06-09 10:29:53	0
186	211	265	2025-07-13 14:08:56	2025-07-13 14:08:56	0
88	215	243	2025-06-09 09:50:19	2025-06-09 10:30:53	1
7	197	179	2025-05-29 18:23:35	2025-06-04 07:40:45	1
41	219	215	2025-06-04 08:57:04	2025-06-04 08:57:04	0
42	215	219	2025-06-04 08:57:04	2025-06-04 08:57:04	0
45	222	215	2025-06-04 10:54:19	2025-06-04 10:54:19	0
46	215	222	2025-06-04 10:54:19	2025-06-04 10:54:19	0
90	243	242	2025-06-09 10:33:40	2025-06-09 10:34:42	0
191	271	268	2025-07-13 21:20:02	2025-07-13 21:20:02	0
89	242	243	2025-06-09 10:33:40	2025-06-09 10:53:02	0
192	268	271	2025-07-13 21:20:02	2025-07-13 21:20:02	0
93	244	215	2025-06-10 13:15:33	2025-06-10 13:15:33	0
94	215	244	2025-06-10 13:15:33	2025-06-10 13:15:33	0
95	230	244	2025-06-11 08:02:40	2025-06-11 08:02:40	0
96	244	230	2025-06-11 08:02:40	2025-06-11 08:02:40	0
99	245	246	2025-06-11 10:21:56	2025-06-11 10:21:56	0
100	246	245	2025-06-11 10:21:56	2025-06-11 10:21:56	0
101	252	224	2025-07-10 12:09:47	2025-07-10 12:09:47	0
102	224	252	2025-07-10 12:09:47	2025-07-10 12:09:47	0
109	245	216	2025-07-11 08:00:14	2025-07-11 08:00:14	0
110	216	245	2025-07-11 08:00:14	2025-07-11 08:00:14	0
111	254	216	2025-07-11 11:36:25	2025-07-11 11:36:25	0
112	216	254	2025-07-11 11:36:25	2025-07-11 11:36:25	0
117	224	255	2025-07-11 14:11:13	2025-07-11 14:11:13	0
118	255	224	2025-07-11 14:11:13	2025-07-11 14:11:13	0
123	193	255	2025-07-11 14:35:40	2025-07-11 14:35:40	0
124	255	193	2025-07-11 14:35:40	2025-07-11 14:35:40	0
234	321	320	2025-12-15 17:58:05	2025-12-15 18:06:09	0
233	320	321	2025-12-15 17:58:05	2025-12-15 18:06:37	0
202	274	277	2025-07-17 08:10:54	2025-07-17 08:10:54	0
201	277	274	2025-07-17 08:10:54	2025-07-17 08:23:14	1
211	304	267	2025-11-17 05:36:53	2025-11-17 05:36:53	0
212	267	304	2025-11-17 05:36:53	2025-11-17 05:36:53	0
\.


--
-- Data for Name: user_details; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_details (id, user_id, sect_id, education_id, profession_id, height_cm, height_ft, weight_kg, weight_lbs, marital_status_id, wives, children, religious_practice, dress_code_id, smoking, genetic_disease, genetic_disease_id, about, created_at, updated_at, chronic_disease) FROM stdin;
1	35	1	1	1	179	5.6	80	140	1	1	1	50	1	1	1	1	This is my about section	2025-03-19 17:18:40	2025-03-19 17:18:40	0
2	48	1	1	1	170	5.4	70	120	1	\N	\N	40	1	0	\N	\N	This about	2025-03-19 17:18:40	2025-03-19 17:18:40	0
3	36	1	1	1	170	5.6	70	120	1	0	0	40	1	1	1	1	This is about me\n	2025-03-19 17:18:40	2025-03-19 17:18:40	0
4	49	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-19 13:08:48	2025-05-19 13:08:48	0
7	52	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-22 05:30:36	2025-05-22 05:30:36	0
8	53	3	1	1	175	5.7	70	154	1	1	3	50	2	0	1	\N	I love hiking and reading books.	2025-05-22 06:30:08	2025-06-03 09:27:34	0
5	50	1	1	1	185.93	6.10	168	370.38	1	\N	0	50	3	1	1	1	hel	2025-05-20 07:06:44	2025-05-28 15:00:40	0
6	51	1	1	1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-20 07:08:20	2025-05-31 06:25:00	0
9	54	6	5	1	183	6.37	61	114	1	2	10	7	2	1	0	6	Itaque ut rerum eaque cupiditate voluptatibus dolores sint. Et saepe sapiente deserunt unde necessitatibus recusandae. Ad eum qui nemo.	2025-05-23 10:22:02	2025-05-23 10:22:02	0
10	55	4	5	1	163	6.4	90	127	6	1	0	22	1	1	1	3	Nostrum quos possimus aliquid. Omnis veritatis dolores perferendis eum quo. Nihil sint repudiandae qui incidunt est debitis.	2025-05-23 10:22:03	2025-05-23 10:22:03	0
11	56	5	5	3	199	6.36	94	216	4	2	5	18	2	1	1	4	Assumenda ducimus exercitationem molestias fuga itaque sapiente sed. Amet et dolorem et asperiores. Architecto harum pariatur commodi voluptas. Mollitia modi ipsa impedit at quia animi.	2025-05-23 10:22:03	2025-05-23 10:22:03	0
12	57	1	4	1	154	6.24	80	211	3	3	2	75	3	1	1	2	Nam omnis sed voluptatem aut sequi est eum perspiciatis. Asperiores qui neque beatae assumenda harum ea harum. Cumque saepe ut temporibus corporis. Repellendus quia totam rerum tempore.	2025-05-23 10:22:03	2025-05-23 10:22:03	0
13	58	3	6	4	167	5.66	77	160	2	0	10	94	2	1	0	2	Facilis quia et veniam culpa quo eum quidem. Consequatur est quo ut.	2025-05-23 10:22:04	2025-05-23 10:22:04	0
14	59	5	5	4	176	6.26	65	186	4	1	10	47	3	0	1	3	Adipisci ut aut quis voluptatum ipsam ducimus. Facilis aliquam mollitia quis itaque repudiandae dolor voluptatem. Culpa doloribus nesciunt non dolores unde ipsa. Molestiae et repellendus nesciunt amet cupiditate. Dignissimos sunt consequatur quae nisi eius vel ratione.	2025-05-23 10:22:04	2025-05-23 10:22:04	0
15	60	6	4	5	157	5.38	51	208	7	3	6	40	4	1	1	10	Eligendi qui eaque veniam dolor culpa sit. Nam et fugiat omnis consectetur magni. Voluptatibus explicabo quam eligendi rem mollitia dolorem quidem amet.	2025-05-23 10:22:04	2025-05-23 10:22:04	0
16	61	6	7	5	153	5.17	73	194	2	2	0	74	5	1	0	1	Excepturi nisi odio sunt unde et distinctio. Dicta quae voluptate recusandae qui qui perferendis nihil. Sequi vel cupiditate rerum. Consequuntur eos et et sed error.	2025-05-23 10:22:05	2025-05-23 10:22:05	0
17	62	4	7	5	169	5.58	54	176	1	3	8	29	5	1	1	5	Et eos vitae iusto et. Consequatur et qui placeat et. Cumque dicta quisquam impedit perspiciatis et quia.	2025-05-23 10:22:05	2025-05-23 10:22:05	0
18	63	4	5	3	183	5.69	54	146	5	3	3	74	2	1	1	8	Ab libero sit ipsam ea et. Eos dolor placeat odio atque earum ex. Hic velit dolores eius dolorem asperiores sit quis et. Hic assumenda quis consequatur voluptatibus est laboriosam eos aliquid.	2025-05-23 10:22:05	2025-05-23 10:22:05	0
19	64	9	4	2	178	6.36	93	193	3	3	2	43	2	0	1	9	Occaecati magni exercitationem recusandae autem non dolores. Dolorem alias quaerat laboriosam non similique. Sint atque fugit doloribus aut iste qui itaque. Nihil placeat aut aut eos est. Vel ex quo consectetur.	2025-05-23 10:22:06	2025-05-23 10:22:06	0
20	65	4	4	2	162	5.77	100	170	7	2	10	96	2	0	0	6	Et iste ex iusto ut sint necessitatibus nisi autem. Iste accusantium voluptatibus autem inventore eaque. Officia illum non aspernatur praesentium nisi. Modi et quia magni ullam aperiam aut eaque.	2025-05-23 10:22:06	2025-05-23 10:22:06	0
21	66	7	3	5	156	5.12	77	155	5	3	6	36	1	1	1	4	Veniam fugiat dolor vel et molestias est labore autem. Neque eos sunt recusandae sit recusandae. Et minus rem molestiae et. Necessitatibus dolorem et optio ut et ullam.	2025-05-23 10:22:06	2025-05-23 10:22:06	0
22	67	9	5	5	173	5.64	76	204	1	0	0	26	2	1	0	5	Nisi nesciunt sunt sit quasi voluptatem quia. Ut nostrum velit fugit voluptas nobis nisi. Nemo ex doloremque molestias ad. Laborum ad minus reiciendis tempora et voluptatem voluptatem.	2025-05-23 10:22:07	2025-05-23 10:22:07	0
23	68	9	5	5	183	6.15	76	136	7	3	6	57	1	0	1	2	Delectus reprehenderit sequi dolores eligendi nihil. Animi autem esse sed. Nulla ratione neque blanditiis aliquam. Maiores doloremque voluptatem ut voluptatem corporis animi.	2025-05-23 10:22:07	2025-05-23 10:22:07	0
24	69	9	7	1	172	6.22	77	220	6	2	3	3	2	0	1	3	Quibusdam occaecati ducimus voluptatem doloribus fugiat. Ut consequatur vitae dolor nam quidem et ratione necessitatibus. Ut aut et recusandae quo. Harum accusamus ut voluptatem amet sed quisquam.	2025-05-23 10:22:07	2025-05-23 10:22:07	0
25	70	8	1	4	160	5.1	54	142	3	3	6	78	1	0	0	7	Qui asperiores deleniti et distinctio quidem. Doloribus ut vero cumque voluptatem molestias nemo assumenda. Repellendus quidem ut animi itaque commodi. Eos vitae praesentium earum possimus placeat excepturi totam.	2025-05-23 10:22:07	2025-05-23 10:22:07	0
79	124	8	5	4	197	5.94	93	215	3	1	0	1	5	0	0	9	Facere dolorem nesciunt expedita modi debitis. Eos aut maxime omnis vel tempora quas. Et hic qui quibusdam.	2025-05-23 10:22:23	2025-05-23 10:22:23	0
26	71	6	5	1	173	6.44	65	199	7	3	0	62	5	0	0	10	Iusto sed tempore ea repellat aut accusantium dolore. In id ratione assumenda quia reprehenderit velit quod. Quo aut et voluptatibus fuga voluptas similique. Et totam nulla dicta est deleniti ut amet maiores.	2025-05-23 10:22:08	2025-05-23 10:22:08	0
27	72	1	6	1	158	6.35	89	156	3	3	10	56	1	0	0	8	Ut repellendus atque voluptatum quis. Eos maxime cum maxime minima pariatur molestias.	2025-05-23 10:22:08	2025-05-23 10:22:08	0
28	73	3	5	3	182	5.81	53	169	3	2	10	65	3	1	0	7	Provident numquam sit aut qui nihil. Placeat sequi hic ullam impedit velit voluptate. Dolorem repellat consequatur natus molestiae enim magni. Suscipit dolorem enim eveniet doloremque.	2025-05-23 10:22:08	2025-05-23 10:22:08	0
82	127	9	6	3	177	5.68	71	205	7	3	1	49	4	0	1	6	Odit quia eius deserunt harum et. Dolor autem esse sed atque facere. Quaerat mollitia harum aut ut. Est qui explicabo id nesciunt aut.	2025-05-23 10:22:24	2025-05-23 10:22:24	0
29	74	3	1	4	195	5.34	89	169	3	0	0	93	1	1	1	5	Voluptatem sed aut esse est in est. Explicabo omnis nulla praesentium et iure debitis adipisci. Voluptates quidem neque explicabo quia. Sit blanditiis nam error esse tenetur eaque voluptatibus.	2025-05-23 10:22:09	2025-05-23 10:22:09	0
30	75	2	6	2	159	5.87	74	111	2	1	6	36	3	0	0	5	Saepe dolor quis sit tempore at. Nam dicta dolorum exercitationem.	2025-05-23 10:22:09	2025-05-23 10:22:09	0
31	76	5	1	4	169	5.28	50	204	2	2	9	86	5	0	1	1	Repellat dolorem eligendi ratione est. Repudiandae molestias praesentium hic ratione. Expedita et unde mollitia veritatis at occaecati eos.	2025-05-23 10:22:09	2025-05-23 10:22:09	0
32	77	2	7	4	181	5.28	76	202	4	0	0	74	3	0	1	5	Architecto accusamus non soluta est. Deleniti deserunt vero laudantium qui iure. Molestiae autem temporibus aut vero et sequi incidunt molestiae. Soluta asperiores ut quia aut voluptatem.	2025-05-23 10:22:09	2025-05-23 10:22:09	0
33	78	8	5	4	192	5.81	74	123	4	0	10	48	4	1	1	9	Officia illo ut porro rerum et numquam laudantium. Eos assumenda architecto eveniet eos aut aliquam. Earum sed ipsa iusto dolor consectetur impedit quisquam.	2025-05-23 10:22:10	2025-05-23 10:22:10	0
34	79	8	4	1	157	5.83	80	139	3	2	6	56	5	1	1	8	Dolor numquam non dolor nihil accusantium neque. Quisquam aut molestiae tenetur amet sed repudiandae placeat. Qui suscipit exercitationem veniam architecto aliquid. Quod ut sunt magni. Aliquid est fugiat quod voluptas maxime rerum ut.	2025-05-23 10:22:10	2025-05-23 10:22:10	0
35	80	2	5	1	179	5.54	86	126	5	1	9	66	5	0	0	8	Sapiente eum qui aliquam iste. Nam tempore inventore eius necessitatibus voluptatibus. Fuga voluptatem impedit voluptas beatae quasi quis odio. Commodi perferendis est cumque.	2025-05-23 10:22:10	2025-05-23 10:22:10	0
36	81	10	1	4	185	5.38	83	187	4	3	8	77	5	0	1	3	Rerum aut eligendi rerum quidem eum eaque. Distinctio aut aut at necessitatibus. Alias id tempore reprehenderit debitis consequuntur sunt eos. Debitis omnis modi qui rerum quibusdam modi et.	2025-05-23 10:22:11	2025-05-23 10:22:11	0
37	82	2	2	2	193	5.65	73	204	5	2	5	80	3	0	1	4	Voluptatibus enim dolorem natus officiis. Beatae suscipit praesentium ratione id. Aut eum nisi ex quod odit. Tempore porro earum sit possimus debitis maiores debitis.	2025-05-23 10:22:11	2025-05-23 10:22:11	0
38	83	10	1	2	159	5.32	81	169	2	3	3	47	5	0	0	7	Eveniet blanditiis et numquam rerum eum quia. Inventore qui corrupti corrupti. Dolor ducimus unde non nihil sunt laudantium.	2025-05-23 10:22:11	2025-05-23 10:22:11	0
39	84	5	4	1	174	5.46	95	181	4	2	5	25	4	0	1	7	Rerum enim et soluta. Recusandae ut magni ut.	2025-05-23 10:22:11	2025-05-23 10:22:11	0
40	85	1	2	5	157	5.74	99	114	7	1	10	78	5	0	0	7	Corporis rerum excepturi vero aperiam id asperiores. Alias eligendi eum dolor. Et earum et nostrum nobis molestiae.	2025-05-23 10:22:12	2025-05-23 10:22:12	0
41	86	8	3	4	174	5.69	52	217	2	1	9	32	3	1	1	10	Magni nihil dignissimos quasi saepe eius qui amet. Labore necessitatibus optio suscipit earum et. Repellat autem dolor ipsum enim perferendis suscipit.	2025-05-23 10:22:12	2025-05-23 10:22:12	0
42	87	1	4	5	156	5.59	80	146	5	1	6	23	3	0	0	8	Explicabo molestiae modi amet at aut. Similique dignissimos minus temporibus fuga nihil ducimus. Dicta soluta velit velit dolor dolorem eos.	2025-05-23 10:22:12	2025-05-23 10:22:12	0
43	88	9	5	5	168	5.72	86	204	1	0	3	18	2	0	0	4	Nulla assumenda voluptatem repudiandae animi sunt earum. Dicta est qui suscipit consequatur.	2025-05-23 10:22:13	2025-05-23 10:22:13	0
44	89	10	6	1	178	5.27	99	204	2	2	7	73	2	1	1	6	Laboriosam enim excepturi quibusdam architecto aliquid. Rerum quia iusto harum velit voluptate in aperiam. Quasi est est minus.	2025-05-23 10:22:13	2025-05-23 10:22:13	0
45	90	3	4	3	152	5.09	90	220	2	0	5	62	1	0	1	4	Repellendus voluptas vitae ut omnis deleniti voluptatibus. Eligendi et ipsum occaecati quam. Aperiam maxime rerum unde vero officiis eveniet. Non est et mollitia repellat. Doloremque doloremque hic sunt distinctio aut optio.	2025-05-23 10:22:13	2025-05-23 10:22:13	0
46	91	7	3	2	171	5.33	81	204	7	1	6	88	1	1	1	2	Soluta voluptatem sit sed ullam impedit ut. Sed fugiat facilis dignissimos porro dignissimos. Cupiditate voluptatem numquam voluptatem ea modi fugiat.	2025-05-23 10:22:14	2025-05-23 10:22:14	0
47	92	3	2	4	194	6.41	52	162	4	2	0	42	1	1	0	4	Laudantium saepe laboriosam ut ipsam sint. Quasi quo et aut laboriosam. Aperiam ex quia saepe atque similique. Dolor totam atque eum recusandae.	2025-05-23 10:22:14	2025-05-23 10:22:14	0
48	93	7	4	4	194	5.04	65	136	1	2	6	8	3	1	1	7	Qui in sit aut rerum. Blanditiis autem tempora numquam odit ipsa eos vel. Dolorem aut quibusdam non nihil harum architecto.	2025-05-23 10:22:14	2025-05-23 10:22:14	0
49	94	3	6	3	162	5.46	81	142	6	1	7	66	2	0	1	2	Sunt voluptas velit vero ut consequatur. Quis quia quo pariatur rerum commodi sunt.	2025-05-23 10:22:14	2025-05-23 10:22:14	0
50	95	3	6	1	200	6.17	80	150	6	1	1	92	3	0	1	9	Assumenda cumque dignissimos voluptatibus laudantium aspernatur earum omnis. Amet repudiandae voluptates est nihil voluptatem sed et. Quam molestiae facilis soluta commodi impedit.	2025-05-23 10:22:15	2025-05-23 10:22:15	0
51	96	6	7	3	170	5.47	86	191	3	1	4	78	1	1	0	6	Vero soluta quia itaque soluta aut molestiae veritatis voluptates. Odio ut facere ipsam et. Necessitatibus autem nobis dolorum ad.	2025-05-23 10:22:15	2025-05-23 10:22:15	0
52	97	9	7	3	179	5.76	85	144	3	1	7	58	1	1	0	1	Fuga et saepe quo eius. Voluptas architecto id non minus. Iste ad sed officia et debitis commodi. Error impedit voluptatem non illum quo ut voluptatibus.	2025-05-23 10:22:15	2025-05-23 10:22:15	0
53	98	6	4	3	170	5.43	85	173	6	2	3	50	3	0	0	7	Reiciendis ea delectus dolorem. Ipsum consequatur labore aperiam aut vel magnam. Eum assumenda nostrum dolor omnis. Nulla id ut est dicta ipsam minus possimus quidem.	2025-05-23 10:22:16	2025-05-23 10:22:16	0
54	99	10	3	4	158	4.94	93	112	5	2	1	52	3	1	1	9	Corporis possimus at aperiam rem. Vel autem incidunt facere rerum velit itaque dolorem. Est quod labore consequatur quia inventore eveniet esse. Velit enim et est est quibusdam nesciunt voluptas. Blanditiis deserunt voluptas voluptas.	2025-05-23 10:22:16	2025-05-23 10:22:16	0
111	156	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-23 18:24:04	2025-05-23 18:24:04	0
113	158	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-24 07:45:47	2025-05-24 07:45:47	0
114	161	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-26 09:53:26	2025-05-26 09:53:26	0
55	100	7	4	5	170	6.12	77	132	1	3	3	76	4	0	1	9	Quo distinctio et autem quo. Dignissimos omnis incidunt odio corporis. Voluptatibus dolorem itaque quaerat a in similique. Autem omnis autem accusantium eaque. Eos harum hic molestias mollitia reprehenderit commodi qui.	2025-05-23 10:22:16	2025-05-23 10:22:16	0
56	101	8	1	4	177	5.53	84	193	2	3	10	69	5	1	1	9	Id earum incidunt quis. Inventore qui hic omnis sit sapiente maxime quis. Ut tenetur iste et sit. Animi quam doloribus magni asperiores excepturi recusandae.	2025-05-23 10:22:16	2025-05-23 10:22:16	0
57	102	3	3	3	194	6.3	63	162	2	1	2	59	3	1	0	3	Dolorum rem quia sit vero ut pariatur consequuntur. Aut corporis sed et cumque eos et et. Inventore quia velit sit omnis debitis pariatur illo autem.	2025-05-23 10:22:17	2025-05-23 10:22:17	0
58	103	9	1	2	153	5.59	98	184	2	0	10	51	1	1	1	4	Voluptatem pariatur voluptate qui soluta sunt. Labore officiis velit et ipsam et velit qui explicabo. Earum qui et et sit maxime iste.	2025-05-23 10:22:17	2025-05-23 10:22:17	0
59	104	1	5	5	183	5.69	98	110	7	2	0	21	5	0	1	5	Veniam quasi libero est iusto dolorem. Accusantium officiis non corporis omnis et nam dolorum. Tempora laborum consequuntur sint.	2025-05-23 10:22:17	2025-05-23 10:22:17	0
60	105	8	4	3	200	6.12	52	171	4	3	10	43	5	1	0	3	Velit blanditiis porro doloremque vitae exercitationem laboriosam. Sed asperiores minus sit culpa.	2025-05-23 10:22:18	2025-05-23 10:22:18	0
61	106	1	2	1	153	6.08	73	202	6	2	9	43	2	0	1	6	Aut fuga minima sapiente eveniet. Fugiat nostrum in fugit earum. Quibusdam dicta voluptas provident dolorum repellat. Qui omnis soluta et dolorem ipsam quis.	2025-05-23 10:22:18	2025-05-23 10:22:18	0
62	107	5	2	2	168	5.72	68	190	6	1	7	70	1	0	0	1	Repellendus natus vitae ipsum totam. Neque temporibus possimus aut ullam commodi necessitatibus. Aliquam quae voluptas est quo. Suscipit laboriosam quod fuga quis in totam.	2025-05-23 10:22:18	2025-05-23 10:22:18	0
63	108	7	3	2	192	5.06	98	161	4	0	8	78	1	1	1	3	Dolores qui deleniti aut quia excepturi officiis. Libero voluptas adipisci suscipit nihil ea necessitatibus. Soluta et similique aspernatur eligendi nihil. Ut molestiae illo et quo velit maxime.	2025-05-23 10:22:19	2025-05-23 10:22:19	0
64	109	8	4	3	176	5.87	66	115	3	0	1	51	2	1	0	6	Consequatur id quia omnis molestias voluptatem excepturi id. Et perspiciatis numquam repellendus perspiciatis. Voluptate reprehenderit porro labore repellendus.	2025-05-23 10:22:19	2025-05-23 10:22:19	0
65	110	7	2	3	180	6.15	78	129	6	2	8	70	5	1	0	7	Quia facilis aut inventore ex et voluptas sint dolor. Et vero est omnis quas. Cum earum est veniam sunt cum.	2025-05-23 10:22:19	2025-05-23 10:22:19	0
66	111	2	3	5	191	6.41	77	158	7	1	1	53	1	1	0	8	Repellendus cumque rerum esse molestiae adipisci maiores. Deserunt est nobis veritatis libero earum reprehenderit quibusdam. Quo illum pariatur suscipit dolores tempore voluptatibus. Quod quos qui qui aut blanditiis deleniti.	2025-05-23 10:22:19	2025-05-23 10:22:19	0
67	112	7	7	3	176	6.39	60	219	5	0	7	89	1	0	1	9	Pariatur quis velit numquam suscipit qui soluta. Eos consequatur tempore consequuntur consequuntur reiciendis. Et rerum sed illum delectus magni sit blanditiis.	2025-05-23 10:22:20	2025-05-23 10:22:20	0
68	113	1	2	4	181	4.94	76	149	1	0	4	91	3	0	1	5	Ad excepturi et aspernatur rerum tempora. Nesciunt rerum numquam eum molestias.	2025-05-23 10:22:20	2025-05-23 10:22:20	0
69	114	1	5	4	160	5.45	95	128	3	2	3	33	4	1	0	2	Accusamus voluptatem minus aliquid facere voluptatibus. Et odio excepturi autem doloribus.	2025-05-23 10:22:20	2025-05-23 10:22:20	0
70	115	10	4	2	196	5.44	51	118	2	3	7	82	5	1	0	6	Ab eos qui eius repellat ad odio. Alias accusantium voluptatem quis velit omnis voluptatem dolor. Accusamus laboriosam commodi eos ut libero. Fugit sed vel ut vel quae.	2025-05-23 10:22:21	2025-05-23 10:22:21	0
71	116	9	3	4	168	5.13	81	110	7	3	10	47	5	1	0	8	Ea et distinctio eveniet officiis facilis. Nemo dolorem ea accusantium quis qui. Consequatur vitae voluptas tempore dolor nisi. Tempora earum iusto qui repellat recusandae consequatur.	2025-05-23 10:22:21	2025-05-23 10:22:21	0
72	117	9	7	2	171	6.48	88	111	2	2	0	32	3	1	1	3	Alias voluptatem est mollitia mollitia nemo. Ut culpa quaerat minima aut blanditiis aut voluptates est. Aperiam harum accusantium quidem perspiciatis. Blanditiis pariatur recusandae nobis tempore dolorem voluptates.	2025-05-23 10:22:21	2025-05-23 10:22:21	0
73	118	10	4	5	150	5.19	83	134	5	0	9	18	5	1	0	9	Nihil ullam qui eum omnis iste soluta. Sed repudiandae saepe veniam deleniti. Harum temporibus voluptates eveniet dolor voluptatibus provident. Provident dignissimos in ut voluptatem fugiat.	2025-05-23 10:22:21	2025-05-23 10:22:21	0
74	119	2	2	3	189	5.04	91	214	7	0	9	77	3	1	0	9	Modi deleniti iusto placeat natus. Non iusto animi deserunt aut asperiores voluptas. Sit amet a architecto sapiente qui est nostrum cum.	2025-05-23 10:22:22	2025-05-23 10:22:22	0
75	120	3	5	3	189	6.44	65	214	3	0	7	68	1	1	0	6	Nemo ab perspiciatis et unde similique et impedit. Provident laborum voluptatum ex et tenetur. Illo velit beatae sit fuga consectetur. Odit vel aut quis id beatae magni velit.	2025-05-23 10:22:22	2025-05-23 10:22:22	0
76	121	5	6	4	167	5.01	62	123	7	3	0	14	4	0	0	9	Illo fugiat sed cum atque et. Est sequi non rerum reiciendis dolores nobis.	2025-05-23 10:22:22	2025-05-23 10:22:22	0
77	122	3	2	2	165	6.03	94	205	1	0	3	81	4	1	0	7	Officiis dignissimos vel quam distinctio et. Blanditiis sequi dolor eum optio ut. Libero et eum consectetur.	2025-05-23 10:22:23	2025-05-23 10:22:23	0
78	123	5	5	2	198	5.21	84	132	3	2	10	53	3	1	0	7	Velit quia qui laboriosam consectetur recusandae est quis pariatur. Impedit labore ab omnis et saepe. Laborum laborum delectus et nobis.	2025-05-23 10:22:23	2025-05-23 10:22:23	0
80	125	3	4	3	170	6.43	71	138	2	0	6	28	5	1	1	4	Animi molestiae occaecati voluptate iusto eveniet. Laborum in aspernatur rem. Ut dicta voluptate beatae cupiditate quisquam. Itaque sint molestias recusandae reprehenderit magni itaque. Non officia veniam cupiditate rerum tenetur tenetur assumenda.	2025-05-23 10:22:24	2025-05-23 10:22:24	0
81	126	6	6	1	185	5.26	75	128	2	2	3	18	5	0	0	8	Quas dolorem in velit laborum dignissimos. Debitis repudiandae voluptas consequatur voluptates adipisci incidunt illum. Quos deserunt quo minus illum.	2025-05-23 10:22:24	2025-05-23 10:22:24	0
126	172	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	50	\N	\N	\N	\N	\N	2025-05-27 06:46:12	2025-05-27 06:51:00	0
83	128	4	3	1	185	5.78	75	130	6	0	5	71	3	1	0	8	Optio et unde quibusdam voluptatum. Quia aliquam illo qui officiis quae. Vero aperiam corporis sapiente aut aut.	2025-05-23 10:22:24	2025-05-23 10:22:24	0
84	129	6	2	1	156	5.39	66	202	4	2	6	24	2	1	1	3	In cumque incidunt voluptatem. Dolorem similique illum tenetur fuga id rerum. Facere quia quibusdam excepturi id corrupti quia molestiae.	2025-05-23 10:22:25	2025-05-23 10:22:25	0
85	130	1	6	1	160	5.64	65	122	2	0	6	78	4	0	0	6	Similique consequuntur vel impedit omnis. Et soluta voluptatum et ea adipisci consequatur. Laborum sed odio omnis aut.	2025-05-23 10:22:25	2025-05-23 10:22:25	0
86	131	2	7	4	188	4.9	72	159	6	0	7	78	4	1	0	7	Quidem reiciendis quia commodi inventore accusamus voluptates ullam provident. Voluptas omnis architecto quo asperiores. Ratione aut explicabo est explicabo repudiandae libero sed. Aperiam vel nihil dolor praesentium laudantium.	2025-05-23 10:22:25	2025-05-23 10:22:25	0
87	132	9	7	1	170	6.06	91	217	2	3	10	31	3	1	1	2	Qui quod provident aperiam et illo nam delectus. Hic hic sit veritatis illo suscipit velit mollitia. Laudantium et non sequi nobis.	2025-05-23 10:22:26	2025-05-23 10:22:26	0
88	133	7	7	1	183	5.7	52	205	6	3	1	82	1	1	1	10	Nisi non veritatis optio soluta alias. Non numquam voluptas vero dolorum laudantium. Qui et esse commodi ut expedita laborum. Possimus voluptatum eveniet eos assumenda dignissimos et dolorum.	2025-05-23 10:22:26	2025-05-23 10:22:26	0
89	134	2	7	1	190	5.63	69	146	6	2	6	31	1	1	0	3	A quidem autem esse dolor sit quos. Esse porro asperiores qui et. Odit itaque maxime consequuntur veritatis omnis illo magni.	2025-05-23 10:22:26	2025-05-23 10:22:26	0
90	135	4	5	1	187	4.94	62	175	1	0	8	64	3	1	1	9	Quos autem dolores omnis corporis molestiae. Fugit et dolor natus ut corporis perferendis omnis dolorem. Asperiores vitae et repellat est voluptatem. Dicta consequatur dicta eos consequatur est voluptatibus. Minima est qui occaecati.	2025-05-23 10:22:26	2025-05-23 10:22:26	0
91	136	5	2	3	199	5.71	78	203	6	1	6	35	1	0	0	6	Harum explicabo et accusamus iste. Nostrum maxime est totam ullam. Et delectus corrupti ut aut libero ut inventore. Quaerat qui autem reprehenderit optio temporibus pariatur magni laudantium.	2025-05-23 10:22:27	2025-05-23 10:22:27	0
92	137	1	7	1	191	6.17	62	169	3	1	2	80	3	0	1	4	Aut molestiae consequuntur libero ea. Dolores voluptatem omnis occaecati aut nemo. Aut velit at quia nulla fugiat laudantium.	2025-05-23 10:22:27	2025-05-23 10:22:27	0
93	138	3	3	1	162	6.46	93	114	4	3	5	95	1	0	1	5	Sunt commodi sunt id magni repellat repellat a. Dolore atque ut voluptas iure. Numquam voluptatem commodi aut rerum et excepturi praesentium delectus.	2025-05-23 10:22:27	2025-05-23 10:22:27	0
94	139	7	3	4	187	5.28	59	183	6	0	0	52	1	0	1	3	Enim quas unde est nobis. Accusamus nemo sunt odio.	2025-05-23 10:22:28	2025-05-23 10:22:28	0
95	140	2	3	1	190	4.97	54	208	2	1	10	42	5	1	0	2	Velit unde tenetur et aspernatur id sit quia. Quia asperiores consequuntur aspernatur unde velit. Doloribus ullam aut provident eos accusantium dolorem omnis. Facere delectus aspernatur dignissimos tempore est unde.	2025-05-23 10:22:28	2025-05-23 10:22:28	0
96	141	5	2	2	170	6.11	78	169	7	3	0	28	2	0	1	2	Accusamus illo fuga quia ea ut et. Corrupti alias error voluptatem nihil autem deleniti. Quisquam asperiores sed harum numquam minima adipisci. Aut non facere distinctio aspernatur deserunt error. Est et illum blanditiis quaerat ab.	2025-05-23 10:22:28	2025-05-23 10:22:28	0
97	142	3	2	3	200	6.13	80	194	3	3	1	20	2	0	0	5	Voluptas occaecati voluptas suscipit. Tempora placeat doloremque aliquid distinctio qui. Amet magni dolorem explicabo voluptatem. Ipsa quam maiores officiis ullam ab labore rerum.	2025-05-23 10:22:29	2025-05-23 10:22:29	0
98	143	2	5	2	189	6.46	51	151	6	0	8	26	4	0	0	9	Odit excepturi illo qui sunt nesciunt at sint. Quia est velit ducimus magni porro expedita optio. Ut dolores deleniti aut culpa consequatur. Voluptate voluptatibus ut enim assumenda ad id.	2025-05-23 10:22:29	2025-05-23 10:22:29	0
99	144	1	3	4	160	5.72	61	209	3	3	2	56	1	1	1	1	Sint deleniti aut architecto libero. Velit sed fugiat voluptatibus provident. Harum ea est ut aut ut nam.	2025-05-23 10:22:29	2025-05-23 10:22:29	0
100	145	3	6	1	151	6	76	159	4	2	1	77	3	0	1	8	Sunt est placeat voluptatem ipsum eveniet nisi at. Qui delectus assumenda est expedita ex. Enim est eum reprehenderit accusantium reprehenderit.	2025-05-23 10:22:29	2025-05-23 10:22:29	0
101	146	3	7	5	184	5.34	71	212	7	2	4	86	3	0	0	1	Iste cumque quasi nemo quo quis. Voluptatem quasi nostrum dicta unde sit. Repellat laborum quam error. Et vel eum ut ut dolorum ea.	2025-05-23 10:22:30	2025-05-23 10:22:30	0
102	147	7	5	2	176	5.92	62	114	6	0	5	27	4	1	1	6	Quos consectetur nihil id blanditiis et. Enim sit dignissimos tenetur nihil ut. Iste aperiam at est ullam voluptatibus nulla natus. Consequuntur sit mollitia consequuntur numquam veritatis rerum.	2025-05-23 10:22:30	2025-05-23 10:22:30	0
103	148	1	4	1	191	5.05	63	155	7	1	2	93	5	1	0	3	Minima et nostrum explicabo explicabo. Illum sed ut totam molestiae. Nobis et repellat dolor dolorem.	2025-05-23 10:22:30	2025-05-23 10:22:30	0
104	149	3	7	3	168	6.01	82	218	1	3	3	98	1	1	0	9	Et id iste quo ab delectus. Accusantium illum qui nihil voluptate corrupti facere.	2025-05-23 10:22:31	2025-05-23 10:22:31	0
105	150	8	2	5	151	6.05	97	113	3	1	3	60	2	1	0	10	Rem ullam nam et itaque fugit odio velit. Velit sit saepe at voluptates. Rerum quia odio molestiae dicta ut vero distinctio architecto.	2025-05-23 10:22:31	2025-05-23 10:22:31	0
106	151	4	7	3	195	5.46	96	152	3	2	9	39	1	1	1	7	Dolorum est exercitationem dolor dolor eveniet cupiditate consequatur. Accusantium veniam sit officiis libero. Sit sed exercitationem corrupti.	2025-05-23 10:22:31	2025-05-23 10:22:31	0
107	152	2	4	1	184	6.33	85	121	4	1	7	80	2	1	1	9	Corporis et eaque quia ipsa ut. Qui ea officia autem tempora quidem ipsum adipisci nostrum. Ad laborum inventore et natus perspiciatis. Distinctio laboriosam aliquam ut voluptatem nemo.	2025-05-23 10:22:32	2025-05-23 10:22:32	0
108	153	3	7	1	176	5.3	54	161	1	1	7	6	3	1	0	2	Eum ipsum asperiores ipsum quae voluptatem quia quia. Ut dolores magnam magnam. Eos at nam a blanditiis est repudiandae. Repudiandae omnis quia dolor et labore labore corrupti.	2025-05-23 10:22:32	2025-05-23 10:22:32	0
109	154	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-23 13:54:05	2025-05-23 13:54:05	0
110	155	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-23 18:20:44	2025-05-23 18:20:44	0
133	179	2	1	2	5120.64	168	70	154.32	2	\N	\N	45	2	0	0	\N	hello my name is mahi, I have bachelor in MT and serving as electrical engineer in PAK int	2025-05-27 13:24:56	2025-05-28 09:57:39	0
141	185	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 09:59:03	2025-05-28 09:59:03	0
142	186	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 10:03:47	2025-05-28 10:03:47	0
143	187	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 17:28:00	2025-05-28 17:28:00	0
144	188	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 17:36:48	2025-05-28 17:36:48	0
127	173	\N	\N	\N	\N	\N	\N	\N	1	\N	\N	50	2	-1	1	1	ty for the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same	2025-05-27 07:02:34	2025-05-27 07:43:33	0
154	198	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-29 17:28:49	2025-05-29 17:28:49	0
130	176	2	2	2	5242.56	172	80	176.37	3	\N	\N	100	3	1	0	6	about me	2025-05-27 08:44:19	2025-05-27 17:11:07	0
134	180	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 17:39:44	2025-05-27 17:39:44	0
128	174	\N	\N	\N	\N	\N	\N	\N	2	\N	\N	50	2	1	1	3	hello	2025-05-27 08:15:06	2025-05-27 08:26:56	0
150	194	8	2	1	185.93	6.1	80	176.37	1	\N	\N	50	5	0	1	\N	Hi, my name is James and I am searching for a partner either married or single but without child.	2025-05-29 08:07:31	2025-05-29 08:25:10	0
129	175	2	2	2	172	5.64	65	143.3	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 08:31:31	2025-05-27 08:34:18	0
155	199	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-30 10:52:09	2025-05-30 10:52:09	0
112	157	2	2	2	762	25	25	55.12	2	\N	\N	50	2	0	0	2	hello	2025-05-23 21:35:48	2025-05-26 18:18:50	0
115	162	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-26 20:26:37	2025-05-26 20:26:37	0
116	163	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-26 22:28:07	2025-05-26 22:28:07	0
117	163	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-26 22:28:17	2025-05-26 22:28:17	0
118	164	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 04:42:09	2025-05-27 04:42:09	0
119	165	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 04:52:40	2025-05-27 04:52:40	0
120	165	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 04:54:25	2025-05-27 04:54:25	0
121	166	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 05:03:03	2025-05-27 05:03:03	0
122	168	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 05:09:50	2025-05-27 05:09:50	0
123	169	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 05:15:33	2025-05-27 05:15:33	0
124	170	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 05:42:18	2025-05-27 05:42:18	0
145	189	1	1	1	5242.56	172	80	176.37	2	\N	\N	50	3	0	1	\N	\N	2025-05-28 17:39:51	2025-05-28 17:42:37	0
146	190	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 17:43:31	2025-05-28 17:43:31	0
135	181	2	2	2	172	5.64	80	176.37	3	\N	\N	50	3	0	1	\N	hello	2025-05-27 18:16:10	2025-05-27 18:19:46	0
136	182	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 05:04:49	2025-05-28 05:04:49	0
137	183	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 06:09:29	2025-05-28 06:09:29	0
138	184	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 06:47:16	2025-05-28 06:47:16	0
139	184	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 06:47:42	2025-05-28 06:47:42	0
140	184	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-28 06:48:05	2025-05-28 06:48:05	0
132	178	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-27 12:45:50	2025-05-27 12:45:50	0
131	177	2	2	5	179.83	5.9	54.43	120	2	\N	\N	92	2	1	\N	\N	u r u in the morning and I am not sure about the same as the same as the same as the same as the same as the same to you and your family a very happy birthday 🎈	2025-05-27 12:23:10	2025-05-27 12:49:37	0
125	171	2	1	2	762	25	36	79.37	1	\N	\N	50	3	0	0	2	hello	2025-05-27 05:53:43	2025-05-27 06:42:44	0
157	201	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-30 11:34:19	2025-05-30 11:34:19	0
147	191	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	50	2	0	0	\N	\N	2025-05-28 17:51:05	2025-05-28 17:51:49	0
152	196	8	2	1	192.02	6.3	85	187.39	1	\N	\N	53	8	0	0	\N	Hi, my name is tuaib and I am married and now I want to marry 3rd time	2025-05-29 08:36:27	2025-05-29 08:40:27	0
151	195	2	2	2	179.83	5.9	80	176.37	2	\N	\N	50	5	1	1	\N	u r u in the morning and I am not sure about the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as well as well as a wonderful day to all the best of my life and the same to you a lot to me that I have	2025-05-29 08:17:16	2025-05-29 08:28:14	0
153	197	1	1	1	5242.56	172	80	176.37	2	\N	\N	50	5	0	1	\N	this is long description for male user only for testing. qrite about your zelf	2025-05-29 17:23:31	2025-06-04 14:59:19	0
149	193	2	1	3	161.54	5.3	62	136.69	2	\N	\N	62	3	0	1	\N	I am marry and searching for my partner. I have bachelor's in IT Engg and working as IT officer.	2025-05-29 07:13:26	2025-05-29 07:33:43	0
156	200	2	3	3	188.98	6.2	72	158.73	2	\N	\N	56	5	0	0	\N	Hi, my name is Rohan and I am searching for a life partner having decent personality and should be well groomed. Female should not be greater then 25	2025-05-30 11:24:09	2025-05-30 11:27:39	0
159	203	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-30 12:31:18	2025-05-30 12:31:18	0
158	202	2	2	3	192.02	6.3	72	158.73	2	\N	\N	57	5	0	0	\N	Hi, my name is Rohan I am searching for my life partner having decent personality and should not be more than 25	2025-05-30 12:28:12	2025-05-30 12:31:49	0
162	205	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-30 14:00:15	2025-05-30 14:00:15	0
163	206	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-30 14:02:36	2025-05-30 14:02:36	0
164	207	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-30 14:05:10	2025-05-30 14:05:10	0
165	208	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-30 14:18:33	2025-05-30 14:18:33	0
174	217	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-06-03 13:20:23	2025-06-03 13:20:23	0
161	204	1	1	1	185.93	6.1	160	352.74	2	\N	\N	50	5	0	0	\N	\N	2025-05-30 13:42:22	2025-05-31 06:15:43	0
160	204	1	1	1	185.93	6.1	160	352.74	2	\N	\N	50	5	0	0	\N	\N	2025-05-30 13:37:10	2025-05-31 06:15:43	0
175	218	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-06-03 13:25:31	2025-06-03 13:25:31	0
166	209	1	1	1	\N	\N	\N	\N	1	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-31 09:08:40	2025-05-31 09:09:22	0
187	230	1	3	1	182.88	6	100	220.46	8	\N	\N	50	5	0	0	\N	I am good	2025-06-05 07:01:06	2025-06-05 07:03:39	0
181	224	3	2	2	185.93	6.1	60	132.28	3	\N	\N	50	2	0	0	\N	hello	2025-06-04 07:57:14	2025-06-04 08:11:32	0
173	216	2	1	1	176.78	5.8	65	143.3	2	\N	\N	78	1	0	1	\N	I am seeking proposal for my self with educated and well groomed personality	2025-06-03 08:33:39	2025-06-03 18:06:26	0
182	225	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-06-04 08:22:58	2025-06-04 08:22:58	0
171	214	2	2	2	173.74	5.7	70	154.32	2	\N	\N	47	\N	0	\N	\N	tu hi babakutty hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko bhi hai kya aap ko	2025-06-03 03:21:26	2025-06-04 04:07:51	0
219	260	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-07-11 15:09:28	2025-07-12 05:20:39	0
167	210	\N	\N	\N	182.88	6	80	176.37	1	\N	\N	\N	\N	\N	\N	\N	\N	2025-05-31 15:02:31	2025-11-17 11:35:11	0
196	238	2	2	2	179.83	5.9	70	154.32	1	\N	\N	100	7	1	0	\N	try to get time to sleep now he is not well as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same	2025-06-05 12:56:26	2025-06-05 13:14:03	0
169	212	2	1	3	164.59	5.4	75	165.35	1	\N	\N	50	7	0	0	\N	It's me	2025-06-01 17:22:19	2025-06-01 17:26:25	0
170	213	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-06-03 03:03:02	2025-06-03 03:03:02	0
177	220	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-06-04 07:07:31	2025-06-04 07:07:31	0
176	219	2	1	1	179.83	5.9	70	154.32	2	\N	\N	98	1	1	\N	\N	tyryyy to be a very good friend and my life partner of the same to ee to be a wonderful Easter of the same to u dear Fr and your friends are very good morning she was cool to know the same as the same to u dear friend and my life is not well and your	2025-06-04 06:45:50	2025-06-04 07:09:47	0
178	221	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-06-04 07:21:52	2025-06-04 07:21:52	0
191	234	8	2	1	167.64	5.5	50	110.23	3	\N	\N	61	4	0	1	\N	hello my name is not coming to the US but here it is	2025-06-05 09:02:52	2025-06-05 09:09:37	0
179	222	1	1	1	164.59	5.4	75	165.35	2	\N	\N	50	2	1	0	\N	this bio	2025-06-04 07:39:03	2025-06-04 10:17:18	0
188	231	2	1	1	152.4	5	60	132.28	2	\N	\N	94	1	1	0	\N	the same as the same as the same as the same as the same as the same as the same as the same as the same as I can u 😄😄😄😄😄😄 j the same as the same as the same as the same as the same as the same as	2025-06-05 07:45:09	2025-06-05 07:55:37	0
172	215	8	3	1	6.5	0.21	75	165.35	6	\N	\N	97	7	1	0	\N	I am married and searching for girl for 2nd marriage	2025-06-03 05:21:54	2025-06-04 11:52:22	0
193	236	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-06-05 10:21:01	2025-06-05 10:21:01	0
180	223	2	1	4	167.64	5.5	58	127.87	2	\N	\N	55	2	0	0	\N	hi my name is zainab and I am searching for profile	2025-06-04 07:39:50	2025-06-04 07:43:33	0
183	226	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	50	\N	0	0	\N	\N	2025-06-04 12:13:01	2025-06-04 12:16:58	0
184	227	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-06-04 16:55:03	2025-06-04 17:27:56	0
185	228	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-06-05 06:21:47	2025-06-05 06:21:47	0
192	235	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-06-05 10:16:36	2025-06-05 10:30:51	0
194	235	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-06-05 10:30:24	2025-06-05 10:30:51	0
189	232	1	1	1	198.12	6.5	80	176.37	3	\N	\N	50	2	0	0	\N	\N	2025-06-05 08:06:47	2025-06-05 08:10:26	0
199	241	2	1	2	182.88	6	90	198.42	8	\N	\N	2	5	1	0	\N	t u r u in the morning and I am not sure about the same as the same as the same as the same as the same as the same as the same to	2025-06-06 13:57:11	2025-06-06 14:17:35	0
197	239	2	1	1	164.59	5.4	70	154.32	8	\N	\N	100	5	1	0	\N	RT ka u r u in the morning and I am not sure about the same as the same as the same as the same as the same as the same as the same as the same as the	2025-06-06 03:32:30	2025-06-06 03:40:54	0
201	243	2	1	4	170.69	5.6	59	130.07	3	0	1	19	4	0	1	\N	hi my name is Mahi and I am divorce and searching for proposal who will take care of me and my child in good way...	2025-06-09 09:13:24	2025-06-09 09:46:46	0
186	229	1	1	2	167.64	5.5	65	143.3	2	\N	\N	50	2	0	1	\N	hi I am here to search for proposal	2025-06-05 06:25:14	2025-06-05 06:31:46	0
190	233	2	1	1	152.4	5	70	154.32	2	\N	\N	100	1	1	1	\N	df in the morning and I am not sure about the same as the same as the same as the same as the same as the same as the same as I can u pls also add my life and the same as the same as the same as the same as the same time as I have been doing a very long time in the morning and I am not sure about the same as the same as the same as	2025-06-05 08:52:49	2025-06-05 08:59:31	0
195	237	2	1	3	170.69	5.6	65	143.3	8	\N	\N	62	5	\N	0	\N	This is me Ali	2025-06-05 12:01:21	2025-06-05 12:04:08	0
200	242	2	1	1	182.88	6	90	198.42	6	\N	\N	\N	\N	\N	0	\N	ty for the same as the same as the same as the same as the same as the same as	2025-06-07 12:04:36	2025-06-07 12:10:11	0
202	244	2	2	4	164.59	5.4	58	127.87	4	0	2	65	4	1	1	\N	hi my name is Sana and I'm interested to see updated status of the application for my new home in.	2025-06-10 09:19:28	2025-06-10 09:25:07	0
198	240	1	1	1	152.4	5	80	176.37	1	2	3	4	\N	1	0	\N	ty for the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same as the same.	2025-06-06 11:35:23	2025-06-06 11:39:48	0
203	245	1	1	\N	176.78	5.8	68	149.91	8	\N	\N	64	7	0	1	\N	kdjfhhfh	2025-06-11 09:55:14	2025-06-11 10:12:04	0
204	246	1	1	1	4419.6	145	60	132.28	3	0	1	89	3	\N	1	\N	I love traveling	2025-06-11 09:55:34	2025-06-11 10:14:31	0
205	247	2	1	3	5090.16	167	70	154.32	8	\N	\N	50	6	0	0	\N	no	2025-06-23 21:05:53	2025-06-23 21:07:59	0
168	211	7	7	3	0	7.5	80	176.37	3	0	5	11	1	1	0	\N	hrllo hamid	2025-05-31 16:42:24	2025-07-13 14:22:41	0
230	271	1	1	2	365.76	12	120	264.55	1	2	1	28	\N	0	1	\N	The only way I could do that was if you wanted me too I could come and pick it out and then tyyyy	2025-07-13 20:16:01	2025-07-13 20:29:47	0
212	254	2	1	1	\N	\N	\N	0	1	2	2	50	6	1	1	\N	The only way I could do that was if you uiuuuyy want me too I don’t know how you do	2025-07-11 11:23:07	2025-07-11 11:34:32	0
214	256	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-07-11 12:03:07	2025-07-11 12:03:07	0
213	255	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-07-11 11:44:15	2025-07-11 12:55:39	0
215	257	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-07-11 13:37:02	2025-07-11 13:37:02	0
217	259	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-07-11 15:06:09	2025-07-11 15:06:09	0
207	249	2	1	2	152.4	5	80	176.37	1	2	2	50	7	1	1	\N	I’m going back in a little while I got a couple of errands done I got a little something for	2025-06-28 13:01:59	2025-06-29 07:58:03	0
224	265	2	1	2	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-07-12 08:55:36	2025-07-12 08:56:12	0
208	250	2	1	2	182.88	6	98	216.05	6	\N	\N	50	6	0	0	\N	\N	2025-07-09 07:16:57	2025-07-09 07:18:37	0
209	251	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-07-09 10:44:36	2025-07-09 10:45:01	0
220	261	1	1	1	182.88	6	50	110.23	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-07-11 15:11:30	2025-07-11 15:13:03	0
226	267	8	2	4	149.96	4.92	110	242.51	4	0	2	13	2	0	1	\N	hello hello hello	2025-07-13 07:55:42	2025-12-26 07:46:21	0
148	192	2	1	1	173.74	5.7	70	154.32	1	1	3	50	2	0	1	\N	I love hiking and reading books.	2025-05-28 17:53:13	2025-11-17 15:32:50	0
211	253	2	1	1	9	0.3	54.43	120	1	2	2	47	5	1	1	\N	The only way I could do that was if you wanted me too I could come and pick it out and then I can go pick up it from your place or you could just pick me out of there or you could pick me out from the store or you can just come pick me out or you could go to my house or you can pick me out if that’s easier and I could just come pick you out from the house or you can go pick me out from there or you could come pick it out from there if that is OK but I’m still in a hurry I don’t want you if it’s too far out from my home so you know I’m here if you’re busy or if I don’t have a problem just call and let us have an extra time and if	2025-07-10 14:34:32	2025-07-12 05:27:16	0
223	264	2	1	3	4572	150	150	330.69	1	2	2	50	\N	0	1	\N	Searching for partner	2025-07-12 08:54:57	2025-07-12 09:04:15	0
210	252	1	1	1	182.88	6	160	352.74	1	1	2	\N	\N	\N	0	\N	\N	2025-07-10 06:19:03	2025-07-10 06:32:52	0
222	263	2	1	1	365.76	12	350	771.62	3	0	2	60	3	0	0	\N	Hi, My name is Parveen and searching for match. To find a matrimonial match, you can utilize online matrimonial websites and apps. These platforms allow you to create a profile, specify your preferences, and connect with potential partners based on your criteria. To find a matrimonial match, you can utilize online matrimonial websites and apps. These platforms allow you to create a profile, specify your preferences, and connect with potential partners based on your criteria.	2025-07-12 08:26:56	2025-07-12 10:31:55	0
216	258	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	0	\N	znnznznznznzmzmmz	2025-07-11 14:43:04	2025-07-12 10:59:41	0
225	266	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-07-13 07:26:29	2025-07-13 07:27:35	0
221	262	1	1	1	274.32	9	70	154.32	6	\N	\N	50	\N	0	1	\N	The only way I could do that was if you wanted me	2025-07-12 05:30:57	2025-07-12 05:36:45	0
231	272	8	1	5	4572	150	150	330.69	6	\N	\N	50	\N	0	0	\N	\N	2025-07-13 21:01:37	2025-07-13 21:05:15	0
227	268	8	1	3	4572	150	150	330.69	3	0	1	50	\N	\N	0	\N	\N	2025-07-13 11:10:11	2025-07-13 11:11:28	0
228	269	1	1	2	\N	\N	\N	0	\N	\N	\N	50	\N	0	0	\N	\N	2025-07-13 13:59:36	2025-07-13 14:00:49	0
229	270	2	1	2	\N	\N	\N	0	6	\N	\N	50	\N	0	0	\N	اتنمتاا	2025-07-13 15:22:32	2025-07-13 17:04:44	0
232	273	2	1	1	161.54	5.3	62	136.69	2	\N	\N	60	2	0	1	\N	I am a hard-working and driven individual who isn't afraid to face a challenge. I'm passionate about my work and I know how to get the job done. I would describe myself as an open and honest person who doesn't believe in misleading other people and tries to be fair in everything I do.	2025-07-16 07:15:59	2025-07-16 07:28:31	0
248	289	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-08-19 07:54:28	2025-08-19 07:56:55	0
262	303	1	2	2	171	5.61	68	149.91	2	\N	\N	50	1	0	1	\N	\N	2025-11-15 08:43:09	2025-12-26 11:06:01	0
240	281	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-08-14 10:41:14	2025-08-14 10:41:14	0
241	282	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-08-14 12:36:49	2025-08-14 12:36:49	0
234	275	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-07-16 09:02:22	2025-07-16 09:02:22	0
261	302	\N	\N	\N	6	0.2	86	189.6	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-11-14 07:46:19	2025-11-14 08:12:06	0
245	286	2	2	2	182.88	6	120	264.55	4	0	2	50	3	0	0	\N	hello	2025-08-18 11:29:00	2025-08-18 12:11:27	0
258	299	1	1	1	\N	\N	\N	0	2	\N	\N	50	1	0	0	\N	\N	2025-11-10 12:39:42	2025-11-10 12:43:09	0
251	292	2	1	1	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-09-23 12:56:47	2025-09-23 19:14:31	0
250	291	2	1	3	\N	\N	\N	\N	4	0	1	50	1	0	0	\N	\N	2025-09-04 18:26:46	2025-09-04 18:30:27	0
244	285	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-08-18 07:59:43	2025-09-16 20:31:39	0
246	287	\N	\N	1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-08-18 13:07:46	2025-08-18 13:26:01	0
236	277	2	1	1	\N	\N	\N	\N	2	\N	\N	46	\N	\N	1	\N	\N	2025-07-17 07:57:53	2025-07-17 08:06:40	0
233	274	2	2	5	182.88	6	75	165.35	8	\N	\N	50	\N	0	1	\N	You can introduce yourself in one line by stating your name and a brief descriptor of what you do or a personal interest, like: ``Hi, I'm (Your Name), a passionate (your profession or hobby) from (your location).''	2025-07-16 07:33:30	2025-07-17 08:08:15	0
237	278	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-07-19 08:27:48	2025-07-19 08:28:26	0
206	248	8	1	3	5.10	0.17	84	185.19	8	\N	\N	68	7	0	0	\N	I am a mobile app developer	2025-06-27 14:51:05	2025-09-23 12:52:24	0
253	294	1	1	3	161.54	5.3	62	136.69	2	\N	\N	50	1	1	0	\N	\N	2025-09-24 07:47:54	2025-09-24 08:03:20	0
242	283	1	1	1	\N	\N	\N	0	3	0	0	50	\N	0	0	\N	ghgbbyhf	2025-08-14 13:09:59	2025-08-14 14:04:31	0
243	284	2	1	1	\N	\N	\N	0	8	\N	\N	50	\N	0	0	\N	\N	2025-08-17 13:15:49	2025-08-22 08:58:37	0
247	288	1	1	2	\N	\N	\N	0	9	0	2	50	\N	\N	0	\N	\N	2025-08-19 07:24:53	2025-08-19 07:30:07	0
254	295	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	50	\N	\N	0	\N	\N	2025-09-24 11:14:17	2025-09-24 11:14:48	0
255	296	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-09-24 14:24:01	2025-09-24 14:24:01	0
256	297	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-09-24 17:38:12	2025-09-24 17:38:12	0
249	290	\N	\N	3	\N	\N	\N	0	\N	\N	\N	50	\N	1	0	\N	\N	2025-08-25 17:06:59	2025-08-25 17:32:00	0
238	279	1	1	1	\N	\N	\N	0	4	0	2	50	3	1	0	\N	\N	2025-07-21 07:03:39	2025-09-04 12:44:25	0
264	305	\N	\N	\N	182.88	6	80	176.37	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-11-17 14:06:23	2025-11-17 14:08:46	0
259	300	2	1	3	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	\N	vvvc	2025-11-11 05:48:30	2025-11-11 06:21:39	0
252	293	1	1	1	\N	\N	\N	0	\N	\N	\N	50	\N	0	0	\N	\N	2025-09-23 18:17:12	2025-09-23 20:12:59	0
257	298	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	50	\N	\N	0	\N	\N	2025-09-25 05:57:17	2025-09-25 07:52:11	0
260	301	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-11-14 06:25:36	2025-11-14 06:25:36	0
263	304	\N	\N	\N	180	5.91	80	176.37	\N	\N	\N	0	\N	\N	0	\N	\N	2025-11-15 11:51:06	2025-11-17 06:42:12	0
265	306	\N	\N	\N	182.88	6	80	176.37	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-11-17 14:24:00	2025-11-17 14:27:07	0
267	308	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-11-18 06:19:43	2025-11-18 06:19:43	0
268	309	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-11-18 06:22:51	2025-11-18 06:22:51	0
266	307	\N	\N	\N	182.88	6	80	176.37	\N	\N	\N	0	\N	\N	1	\N	\N	2025-11-18 06:06:58	2025-11-18 07:34:33	0
269	310	2	1	3	185.93	6.1	90	198.42	8	\N	\N	50	\N	1	0	\N	\N	2025-11-18 09:18:56	2025-11-18 09:25:10	0
270	311	2	1	3	176.78	5.8	65	143.3	2	\N	\N	50	2	0	1	\N	\N	2025-11-18 09:32:24	2025-11-18 09:35:50	0
271	312	1	1	4	4663.44	153	60	132.28	9	0	1	50	1	0	1	\N	\N	2025-11-19 06:30:29	2025-11-19 06:35:06	0
273	314	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-11-27 18:18:36	2025-11-27 18:18:36	0
239	280	8	2	3	4937.76	162	52	114.64	8	3	1	52	\N	0	0	\N	\N	2025-08-13 13:55:14	2025-12-15 17:46:53	0
272	313	2	1	3	175	5.74	73	160.94	8	\N	\N	50	\N	0	1	\N	I live in Dubai	2025-11-24 11:11:41	2025-12-11 16:55:21	0
274	315	1	2	3	250	8.2	350	771.62	8	\N	\N	50	\N	1	1	\N	i want a woman whose same weight and height as me	2025-11-27 18:24:24	2025-11-27 18:27:57	0
301	342	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2026-01-06 16:04:00	2026-01-06 16:04:00	0
293	334	8	1	2	256	8.4	59	130.07	2	\N	\N	50	1	0	0	\N	\N	2025-12-30 08:56:00	2025-12-30 09:22:45	0
294	335	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-12-30 10:14:49	2025-12-30 10:14:49	0
302	343	1	1	3	179	5.87	110	242.51	8	\N	\N	50	\N	1	1	\N	\N	2026-01-06 16:15:49	2026-01-06 16:35:24	0
275	316	2	6	\N	4937.76	162	65	143.3	2	\N	\N	50	1	0	0	\N	\N	2025-12-11 15:46:57	2025-12-11 16:49:09	0
276	317	2	1	4	150	4.92	60	132.28	2	\N	\N	50	1	0	0	\N	\N	2025-12-11 15:56:21	2025-12-11 16:53:01	0
277	318	1	1	1	110.95	3.64	50	110.23	2	0	0	50	1	1	0	\N	\N	2025-12-15 16:41:08	2025-12-17 18:21:08	0
281	322	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-12-22 15:54:58	2025-12-22 15:54:58	0
290	331	2	2	1	180	5.91	90	198.42	4	0	0	50	3	0	1	\N	\N	2025-12-29 12:16:45	2025-12-29 13:23:45	0
285	326	2	1	1	182.88	6	90	198.42	3	2	0	50	\N	0	1	\N	\N	2025-12-23 13:28:22	2025-12-29 10:19:23	1
288	329	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-12-29 10:29:40	2025-12-29 10:29:40	0
279	320	2	1	3	170	5.58	75	165.35	8	\N	\N	50	\N	0	1	\N	علي	2025-12-15 17:18:52	2025-12-15 17:25:32	0
278	319	\N	\N	\N	5120.64	168	65	143.3	\N	\N	\N	50	4	1	0	\N	أنا احب السفر والمغامرات واكتشاف دول وأماكن جديدة \nاحب الاطفال ايضاً	2025-12-15 17:11:03	2025-12-15 17:32:52	0
299	340	2	2	1	160	5.25	60	132.28	2	\N	\N	50	1	0	1	\N	\N	2026-01-01 06:31:33	2026-01-06 16:43:46	0
282	323	2	2	1	170	5.58	80	176.37	3	\N	\N	\N	\N	\N	0	\N	\N	2025-12-22 16:04:50	2025-12-22 17:03:39	0
280	321	2	2	3	163	5.35	60	132.28	\N	\N	\N	50	1	0	0	\N	\N	2025-12-15 17:51:21	2025-12-15 17:53:08	0
289	330	1	1	1	180	5.91	90	198.42	3	2	0	50	\N	0	0	\N	\N	2025-12-29 12:08:00	2025-12-29 12:11:02	0
291	332	8	1	3	156	5.12	85	187.39	2	\N	\N	50	4	0	1	\N	\N	2025-12-29 16:57:04	2025-12-29 17:02:47	1
284	325	2	2	1	178	5.84	69	152.12	1	2	2	50	\N	0	0	\N	\N	2025-12-22 17:11:20	2025-12-22 17:15:58	0
283	324	\N	\N	\N	172	5.64	60	132.28	\N	\N	\N	\N	\N	\N	0	\N	\N	2025-12-22 16:13:31	2025-12-22 23:41:47	0
296	337	2	1	4	256	8.4	96	211.64	1	1	0	50	\N	0	0	\N	\N	2025-12-31 07:07:11	2025-12-31 07:08:35	0
297	338	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-12-31 09:43:44	2025-12-31 09:43:44	0
235	276	1	1	2	274.32	9	58	127.87	1	1	1	50	\N	0	1	\N	\N	2025-07-16 15:07:13	2025-12-31 12:57:58	1
295	336	8	1	4	558	18.31	58	127.87	2	\N	\N	50	1	0	1	\N	\N	2025-12-31 06:44:53	2025-12-31 12:58:29	1
286	327	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-12-26 11:46:40	2025-12-26 11:46:40	0
287	328	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2025-12-26 12:21:39	2025-12-26 12:21:39	0
292	333	2	1	1	222	7.28	58	127.87	8	\N	\N	50	\N	0	1	\N	\N	2025-12-30 07:30:25	2025-12-30 07:37:42	1
303	344	1	1	1	265	8.69	80	176.37	10	2	0	50	\N	1	1	\N	\N	2026-01-08 08:10:31	2026-01-08 08:13:11	1
298	339	1	1	1	159	5.22	49	108.03	2	\N	\N	50	1	0	0	\N	\N	2026-01-01 06:26:45	2026-01-01 06:29:48	0
300	341	1	2	3	179	5.87	105	231.49	8	\N	\N	50	\N	0	1	\N	\N	2026-01-06 15:29:18	2026-01-06 15:36:34	0
\.


--
-- Data for Name: user_disease_variants; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_disease_variants (id, user_id, genetic_disease_id, genetic_disease_variant_id, created_at, updated_at) FROM stdin;
2	215	54	1	2025-06-04 11:57:22	2025-06-04 11:57:22
8	197	61	1	2025-06-04 14:59:19	2025-06-04 14:59:19
9	197	62	4	2025-06-04 14:59:19	2025-06-04 14:59:19
10	229	64	1	2025-06-05 06:31:12	2025-06-05 06:31:12
11	229	66	7	2025-06-05 06:31:12	2025-06-05 06:31:12
12	229	66	6	2025-06-05 06:31:12	2025-06-05 06:31:12
13	233	69	1	2025-06-05 08:58:57	2025-06-05 08:58:57
14	233	69	2	2025-06-05 08:58:57	2025-06-05 08:58:57
15	233	69	3	2025-06-05 08:58:57	2025-06-05 08:58:57
16	233	70	4	2025-06-05 08:58:57	2025-06-05 08:58:57
17	233	72	9	2025-06-05 08:58:57	2025-06-05 08:58:57
18	234	73	1	2025-06-05 09:08:58	2025-06-05 09:08:58
19	234	73	2	2025-06-05 09:08:58	2025-06-05 09:08:58
20	234	74	6	2025-06-05 09:08:58	2025-06-05 09:08:58
23	243	91	2	2025-06-09 09:46:46	2025-06-09 09:46:46
24	243	91	3	2025-06-09 09:46:46	2025-06-09 09:46:46
25	244	93	10	2025-06-10 09:24:33	2025-06-10 09:24:33
26	244	94	2	2025-06-10 09:24:33	2025-06-10 09:24:33
31	245	99	1	2025-06-11 10:12:01	2025-06-11 10:12:01
32	245	99	2	2025-06-11 10:12:01	2025-06-11 10:12:01
35	249	106	1	2025-06-29 07:58:03	2025-06-29 07:58:03
36	249	106	2	2025-06-29 07:58:03	2025-06-29 07:58:03
40	253	111	4	2025-07-11 08:46:13	2025-07-11 08:46:13
41	253	112	7	2025-07-11 08:46:13	2025-07-11 08:46:13
42	253	113	2	2025-07-11 08:46:13	2025-07-11 08:46:13
43	254	114	1	2025-07-11 11:29:34	2025-07-11 11:29:34
44	254	114	2	2025-07-11 11:29:34	2025-07-11 11:29:34
45	262	117	1	2025-07-12 05:36:38	2025-07-12 05:36:38
46	262	117	2	2025-07-12 05:36:38	2025-07-12 05:36:38
47	262	117	3	2025-07-12 05:36:38	2025-07-12 05:36:38
48	262	118	4	2025-07-12 05:36:38	2025-07-12 05:36:38
49	271	124	4	2025-07-13 20:29:37	2025-07-13 20:29:37
50	271	124	5	2025-07-13 20:29:37	2025-07-13 20:29:37
51	273	125	1	2025-07-16 07:27:56	2025-07-16 07:27:56
57	277	131	1	2025-07-17 08:06:40	2025-07-17 08:06:40
58	274	132	2	2025-07-17 08:08:15	2025-07-17 08:08:15
59	311	138	6	2025-11-18 09:35:50	2025-11-18 09:35:50
60	312	139	1	2025-11-19 06:35:06	2025-11-19 06:35:06
61	315	140	1	2025-11-27 18:27:25	2025-11-27 18:27:25
72	313	151	1	2025-12-11 16:55:21	2025-12-11 16:55:21
73	313	151	2	2025-12-11 16:55:21	2025-12-11 16:55:21
74	313	152	4	2025-12-11 16:55:21	2025-12-11 16:55:21
75	313	155	10	2025-12-11 16:55:21	2025-12-11 16:55:21
76	313	155	9	2025-12-11 16:55:21	2025-12-11 16:55:21
92	320	165	1	2025-12-15 17:25:26	2025-12-15 17:25:26
93	320	165	2	2025-12-15 17:25:26	2025-12-15 17:25:26
94	320	166	7	2025-12-15 17:25:26	2025-12-15 17:25:26
95	320	166	6	2025-12-15 17:25:26	2025-12-15 17:25:26
96	320	167	9	2025-12-15 17:25:26	2025-12-15 17:25:26
98	303	171	6	2025-12-26 11:06:01	2025-12-26 11:06:01
101	326	180	1	2025-12-29 09:43:26	2025-12-29 09:43:26
103	341	188	2	2026-01-06 15:36:34	2026-01-06 15:36:34
104	343	189	2	2026-01-06 16:35:24	2026-01-06 16:35:24
105	340	190	11	2026-01-06 16:43:46	2026-01-06 16:43:46
\.


--
-- Data for Name: user_diseases; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_diseases (id, user_id, genetic_disease_id, created_at, updated_at, genetic_disease_variant_id) FROM stdin;
1	53	1	\N	\N	\N
2	176	1	\N	\N	\N
3	176	2	\N	\N	\N
4	176	3	\N	\N	\N
5	176	4	\N	\N	\N
6	181	1	\N	\N	\N
7	181	2	\N	\N	\N
8	181	3	\N	\N	\N
9	50	1	\N	\N	\N
10	50	2	\N	\N	\N
11	50	3	\N	\N	\N
12	50	4	\N	\N	\N
13	189	1	\N	\N	\N
14	189	2	\N	\N	\N
15	193	3	\N	\N	\N
16	193	4	\N	\N	\N
17	194	6	\N	\N	\N
18	194	5	\N	\N	\N
19	195	1	\N	\N	\N
20	195	2	\N	\N	\N
21	195	3	\N	\N	\N
24	216	1	\N	\N	\N
25	216	2	\N	\N	\N
26	216	3	\N	\N	\N
27	216	4	\N	\N	\N
28	216	5	\N	\N	\N
29	216	6	\N	\N	\N
46	223	1	\N	\N	\N
47	223	2	\N	\N	\N
54	215	1	2025-06-04 11:57:22	2025-06-04 11:57:22	\N
61	197	1	2025-06-04 14:59:19	2025-06-04 14:59:19	\N
62	197	2	2025-06-04 14:59:19	2025-06-04 14:59:19	\N
63	197	3	2025-06-04 14:59:19	2025-06-04 14:59:19	\N
64	229	1	2025-06-05 06:31:12	2025-06-05 06:31:12	\N
65	229	3	2025-06-05 06:31:12	2025-06-05 06:31:12	\N
66	229	4	2025-06-05 06:31:12	2025-06-05 06:31:12	\N
69	233	1	2025-06-05 08:58:57	2025-06-05 08:58:57	\N
70	233	2	2025-06-05 08:58:57	2025-06-05 08:58:57	\N
71	233	3	2025-06-05 08:58:57	2025-06-05 08:58:57	\N
72	233	6	2025-06-05 08:58:57	2025-06-05 08:58:57	\N
73	234	1	2025-06-05 09:08:58	2025-06-05 09:08:58	\N
74	234	4	2025-06-05 09:08:58	2025-06-05 09:08:58	\N
75	234	3	2025-06-05 09:08:58	2025-06-05 09:08:58	\N
90	243	3	2025-06-09 09:46:46	2025-06-09 09:46:46	\N
91	243	1	2025-06-09 09:46:46	2025-06-09 09:46:46	\N
92	244	5	2025-06-10 09:24:33	2025-06-10 09:24:33	\N
93	244	6	2025-06-10 09:24:33	2025-06-10 09:24:33	\N
94	244	1	2025-06-10 09:24:33	2025-06-10 09:24:33	\N
99	245	1	2025-06-11 10:12:01	2025-06-11 10:12:01	\N
100	245	3	2025-06-11 10:12:01	2025-06-11 10:12:01	\N
101	246	1	2025-06-11 10:14:31	2025-06-11 10:14:31	\N
102	246	4	2025-06-11 10:14:31	2025-06-11 10:14:31	\N
103	246	6	2025-06-11 10:14:31	2025-06-11 10:14:31	\N
106	249	1	2025-06-29 07:58:03	2025-06-29 07:58:03	\N
107	249	3	2025-06-29 07:58:03	2025-06-29 07:58:03	\N
111	253	2	2025-07-11 08:46:13	2025-07-11 08:46:13	\N
112	253	4	2025-07-11 08:46:13	2025-07-11 08:46:13	\N
113	253	1	2025-07-11 08:46:13	2025-07-11 08:46:13	\N
114	254	1	2025-07-11 11:29:34	2025-07-11 11:29:34	\N
115	254	3	2025-07-11 11:29:34	2025-07-11 11:29:34	\N
116	254	5	2025-07-11 11:29:34	2025-07-11 11:29:34	\N
117	262	1	2025-07-12 05:36:38	2025-07-12 05:36:38	\N
118	262	2	2025-07-12 05:36:38	2025-07-12 05:36:38	\N
122	264	3	2025-07-12 09:03:36	2025-07-12 09:03:36	\N
123	264	5	2025-07-12 09:03:36	2025-07-12 09:03:36	\N
124	271	2	2025-07-13 20:29:37	2025-07-13 20:29:37	\N
125	273	1	2025-07-16 07:27:56	2025-07-16 07:27:56	\N
131	277	1	2025-07-17 08:06:40	2025-07-17 08:06:40	\N
132	274	1	2025-07-17 08:08:15	2025-07-17 08:08:15	\N
133	192	1	2025-11-17 15:32:50	2025-11-17 15:32:50	\N
134	192	2	2025-11-17 15:32:50	2025-11-17 15:32:50	\N
135	192	4	2025-11-17 15:32:50	2025-11-17 15:32:50	\N
136	192	6	2025-11-17 15:32:50	2025-11-17 15:32:50	\N
137	307	3	2025-11-18 07:34:33	2025-11-18 07:34:33	\N
138	311	4	2025-11-18 09:35:50	2025-11-18 09:35:50	\N
139	312	1	2025-11-19 06:35:06	2025-11-19 06:35:06	\N
140	315	1	2025-11-27 18:27:25	2025-11-27 18:27:25	\N
151	313	1	2025-12-11 16:55:21	2025-12-11 16:55:21	\N
152	313	2	2025-12-11 16:55:21	2025-12-11 16:55:21	\N
153	313	3	2025-12-11 16:55:21	2025-12-11 16:55:21	\N
154	313	5	2025-12-11 16:55:21	2025-12-11 16:55:21	\N
155	313	6	2025-12-11 16:55:21	2025-12-11 16:55:21	\N
165	320	1	2025-12-15 17:25:26	2025-12-15 17:25:26	\N
166	320	4	2025-12-15 17:25:26	2025-12-15 17:25:26	\N
167	320	6	2025-12-15 17:25:26	2025-12-15 17:25:26	\N
169	267	3	2025-12-26 07:46:21	2025-12-26 07:46:21	\N
170	303	5	2025-12-26 11:06:01	2025-12-26 11:06:01	\N
171	303	4	2025-12-26 11:06:01	2025-12-26 11:06:01	\N
178	326	3	2025-12-29 09:43:26	2025-12-29 09:43:26	\N
179	326	5	2025-12-29 09:43:26	2025-12-29 09:43:26	\N
180	326	1	2025-12-29 09:43:26	2025-12-29 09:43:26	\N
182	331	3	2025-12-29 13:23:02	2025-12-29 13:23:02	\N
183	332	3	2025-12-29 17:02:47	2025-12-29 17:02:47	\N
184	332	4	2025-12-29 17:02:47	2025-12-29 17:02:47	\N
185	333	3	2025-12-30 07:37:42	2025-12-30 07:37:42	\N
186	276	3	2025-12-31 12:57:58	2025-12-31 12:57:58	\N
187	336	3	2025-12-31 12:58:29	2025-12-31 12:58:29	\N
188	341	1	2026-01-06 15:36:34	2026-01-06 15:36:34	\N
189	343	1	2026-01-06 16:35:24	2026-01-06 16:35:24	\N
190	340	1	2026-01-06 16:43:46	2026-01-06 16:43:46	\N
191	344	3	2026-01-08 08:13:11	2026-01-08 08:13:11	\N
\.


--
-- Data for Name: user_dress_codes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_dress_codes (id, user_id, dress_code_id, created_at, updated_at) FROM stdin;
1	53	1	\N	\N
2	176	3	\N	\N
3	176	2	\N	\N
5	181	3	\N	\N
6	181	4	\N	\N
7	50	4	\N	\N
8	50	3	\N	\N
9	50	2	\N	\N
10	50	1	\N	\N
11	189	3	\N	\N
12	189	2	\N	\N
13	191	4	\N	\N
14	191	3	\N	\N
15	192	2	\N	\N
16	194	2	\N	\N
17	194	4	\N	\N
18	195	2	\N	\N
19	195	3	\N	\N
20	195	4	\N	\N
21	196	3	\N	\N
22	200	4	\N	\N
23	200	2	\N	\N
24	202	2	\N	\N
25	202	4	\N	\N
30	215	3	\N	\N
31	215	1	\N	\N
41	216	6	\N	\N
42	214	5	\N	\N
43	214	6	\N	\N
44	214	7	\N	\N
45	219	5	\N	\N
46	219	6	\N	\N
47	219	8	\N	\N
48	223	5	\N	\N
49	222	6	\N	\N
50	222	7	\N	\N
51	232	7	\N	\N
52	232	6	\N	\N
53	233	5	\N	\N
54	233	6	\N	\N
55	234	7	\N	\N
56	234	5	\N	\N
60	239	1	\N	\N
61	239	2	\N	\N
62	240	1	\N	\N
63	240	2	\N	\N
64	240	3	\N	\N
69	243	7	\N	\N
70	243	6	\N	\N
71	246	7	\N	\N
72	249	1	\N	\N
73	249	2	\N	\N
74	253	1	\N	\N
75	253	2	\N	\N
76	254	1	\N	\N
77	262	2	\N	\N
78	262	3	\N	\N
79	264	3	\N	\N
80	264	1	\N	\N
81	265	4	\N	\N
82	265	2	\N	\N
83	265	3	\N	\N
84	271	3	\N	\N
85	271	2	\N	\N
86	274	2	\N	\N
88	307	1	\N	\N
92	344	2	\N	\N
\.


--
-- Data for Name: user_educations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_educations (id, user_id, education_id, created_at, updated_at) FROM stdin;
1	227	1	\N	\N
4	211	1	\N	\N
5	232	1	\N	\N
6	232	2	\N	\N
7	233	1	\N	\N
8	233	2	\N	\N
9	237	1	\N	\N
10	237	2	\N	\N
11	239	2	\N	\N
12	239	1	\N	\N
16	243	1	\N	\N
17	244	2	\N	\N
19	245	1	\N	\N
20	248	1	\N	\N
24	263	1	\N	\N
25	260	1	\N	\N
26	265	1	\N	\N
27	264	1	\N	\N
29	268	1	\N	\N
30	270	1	\N	\N
31	273	1	\N	\N
32	273	2	\N	\N
33	274	1	\N	\N
34	277	1	\N	\N
35	277	2	\N	\N
37	288	1	\N	\N
38	288	2	\N	\N
39	192	1	\N	\N
40	307	1	\N	\N
41	311	1	\N	\N
42	312	1	\N	\N
45	319	2	\N	\N
46	319	1	\N	\N
47	326	1	\N	\N
48	330	1	\N	\N
50	333	1	\N	\N
51	336	1	\N	\N
52	344	1	\N	\N
\.


--
-- Data for Name: user_images; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_images (id, user_id, url, is_hidden, created_at, updated_at) FROM stdin;
1	36	profile-1.jpg	0	2025-03-11 17:18:40	2025-03-11 17:18:40
2	36	profile-2.jpg	0	2025-03-11 17:18:40	2025-03-11 17:18:40
3	36	profile-3.jpg	0	2025-03-11 17:18:40	2025-03-11 17:18:40
4	36	profile-4.png	0	2025-03-11 17:18:40	2025-03-11 17:18:40
5	50	1747898240682ecf80293fa.png	0	2025-05-22 07:17:20	2025-05-22 07:17:20
6	50	17480239296830ba795a303.jpg	0	2025-05-23 18:12:09	2025-05-23 18:12:09
7	156	17480246566830bd50d38f8.jpg	0	2025-05-23 18:24:16	2025-05-23 18:24:16
8	157	17480362126830ea7452dd2.jpg	0	2025-05-23 21:36:52	2025-05-23 21:36:52
9	158	17480728486831799057945.jpg	0	2025-05-24 07:47:28	2025-05-24 07:47:28
10	158	1748072848683179906a116.jpg	0	2025-05-24 07:47:28	2025-05-24 07:47:28
11	169	174832316968354b61560d4.jpg	0	2025-05-27 05:19:29	2025-05-27 05:19:29
12	169	174832316968354b615e842.jpg	0	2025-05-27 05:19:29	2025-05-27 05:19:29
13	169	174832318568354b7180c6a.jpg	0	2025-05-27 05:19:45	2025-05-27 05:19:45
14	169	174832318568354b71888e8.jpg	0	2025-05-27 05:19:45	2025-05-27 05:19:45
15	169	174832337368354c2d1c98e.jpg	0	2025-05-27 05:22:53	2025-05-27 05:22:53
16	169	174832337368354c2d340f6.jpg	0	2025-05-27 05:22:53	2025-05-27 05:22:53
17	174	1748333728683574a07ee0b.jpg	0	2025-05-27 08:15:28	2025-05-27 08:15:28
18	175	1748334722683578826eb4d.jpg	0	2025-05-27 08:32:02	2025-05-27 08:32:02
19	176	174833547768357b75b52fe.jpg	0	2025-05-27 08:44:37	2025-05-27 08:44:37
20	177	17483488046835af84a99dc.jpg	0	2025-05-27 12:26:44	2025-05-27 12:26:44
21	177	17483488046835af84bd1c4.jpg	0	2025-05-27 12:26:44	2025-05-27 12:26:44
22	177	17483488046835af84ccad3.jpg	0	2025-05-27 12:26:44	2025-05-27 12:26:44
23	179	17483527796835bf0b2b96f.jpg	0	2025-05-27 13:32:59	2025-05-27 13:32:59
24	179	17483527796835bf0b34af7.jpg	0	2025-05-27 13:32:59	2025-05-27 13:32:59
25	182	174840932568369bed9a3e5.jpg	0	2025-05-28 05:15:25	2025-05-28 05:15:25
26	182	174840932568369beda077a.jpg	0	2025-05-28 05:15:25	2025-05-28 05:15:25
27	182	174840932568369bedb3bda.jpg	0	2025-05-28 05:15:25	2025-05-28 05:15:25
28	193	1748502852683809444e321.jpg	0	2025-05-29 07:14:12	2025-05-29 07:14:12
29	193	17485028526838094466583.jpg	0	2025-05-29 07:14:12	2025-05-29 07:14:12
30	193	174850285268380944715ae.jpg	0	2025-05-29 07:14:12	2025-05-29 07:14:12
31	194	17485061556838162b5bca9.jpg	0	2025-05-29 08:09:15	2025-05-29 08:09:15
32	194	17485061556838162b675c1.jpg	0	2025-05-29 08:09:15	2025-05-29 08:09:15
33	194	17485061556838162b7029c.jpg	0	2025-05-29 08:09:15	2025-05-29 08:09:15
34	196	174850781368381ca536e6b.jpg	0	2025-05-29 08:36:53	2025-05-29 08:36:53
35	196	174850781368381ca5412ee.jpg	0	2025-05-29 08:36:53	2025-05-29 08:36:53
36	196	174850781368381ca54876a.jpg	0	2025-05-29 08:36:53	2025-05-29 08:36:53
37	200	17486042806839957807ea5.jpg	0	2025-05-30 11:24:40	2025-05-30 11:24:40
38	200	17486042806839957819049.jpg	0	2025-05-30 11:24:40	2025-05-30 11:24:40
39	200	17486042806839957821d65.jpg	0	2025-05-30 11:24:40	2025-05-30 11:24:40
40	201	1748604890683997da4f0a4.jpg	0	2025-05-30 11:34:50	2025-05-30 11:34:50
41	201	1748604890683997da557a4.jpg	0	2025-05-30 11:34:50	2025-05-30 11:34:50
42	201	1748604890683997da6bce1.jpg	0	2025-05-30 11:34:50	2025-05-30 11:34:50
43	202	17486081416839a48dd9700.jpg	0	2025-05-30 12:29:01	2025-05-30 12:29:01
44	202	17486081416839a48de9341.jpg	0	2025-05-30 12:29:01	2025-05-30 12:29:01
45	202	17486081416839a48df065f.jpg	0	2025-05-30 12:29:02	2025-05-30 12:29:02
46	210	1748703785683b1a291031d.jpg	0	2025-05-31 15:03:05	2025-05-31 15:03:05
47	211	1748709791683b319fe392b.jpg	0	2025-05-31 16:43:12	2025-05-31 16:43:12
48	215	1748928138683e868ac3fc3.jpg	0	2025-06-03 05:22:18	2025-06-03 05:22:18
49	215	1748928138683e868ada476.jpg	0	2025-06-03 05:22:19	2025-06-03 05:22:19
50	216	1748939689683eb3a9a07c6.jpg	0	2025-06-03 08:34:49	2025-06-03 08:34:49
51	216	1748939689683eb3a9a8e52.jpg	0	2025-06-03 08:34:49	2025-06-03 08:34:49
52	219	1749019722683fec4a4fb49.jpg	0	2025-06-04 06:48:42	2025-06-04 06:48:42
53	220	1749020877683ff0cd70607.jpg	0	2025-06-04 07:07:57	2025-06-04 07:07:57
54	221	1749021743683ff42fbb998.jpg	0	2025-06-04 07:22:23	2025-06-04 07:22:23
55	221	1749021743683ff42fca599.jpg	0	2025-06-04 07:22:23	2025-06-04 07:22:23
56	223	1749022811683ff85bc4e36.jpg	0	2025-06-04 07:40:11	2025-06-04 07:40:11
57	223	1749022811683ff85bd60e6.jpg	0	2025-06-04 07:40:11	2025-06-04 07:40:11
58	224	1749023861683ffc75c3f7c.jpg	0	2025-06-04 07:57:41	2025-06-04 07:57:41
59	225	17490254006840027828b8d.jpg	0	2025-06-04 08:23:20	2025-06-04 08:23:20
60	225	1749025400684002783bad3.jpg	0	2025-06-04 08:23:20	2025-06-04 08:23:20
62	197	17490468066840561678f78.jpg	0	2025-06-04 14:20:06	2025-06-04 14:20:06
67	197	174904849568405caf57b3a.jpg	0	2025-06-04 14:48:15	2025-06-04 14:48:15
68	228	1749104552684137a818540.jpg	0	2025-06-05 06:22:32	2025-06-05 06:22:32
69	229	1749104744684138686dad6.jpg	0	2025-06-05 06:25:44	2025-06-05 06:25:44
70	230	1749106942684140fe38ebf.jpg	0	2025-06-05 07:02:22	2025-06-05 07:02:22
71	230	1749106942684140fe43950.jpg	0	2025-06-05 07:02:22	2025-06-05 07:02:22
72	230	1749106942684140fe58e01.jpg	0	2025-06-05 07:02:22	2025-06-05 07:02:22
73	230	1749106942684140fe63818.jpg	0	2025-06-05 07:02:22	2025-06-05 07:02:22
74	230	1749106942684140fe6eed3.jpg	0	2025-06-05 07:02:22	2025-06-05 07:02:22
77	231	174910957768414b49db504.jpg	0	2025-06-05 07:46:17	2025-06-05 07:46:17
78	211	174911040368414e835d6e1.jpg	0	2025-06-05 08:00:03	2025-06-05 08:00:03
79	233	174911367368415b490fbfe.jpg	0	2025-06-05 08:54:33	2025-06-05 08:54:33
81	234	174911427068415d9e6eab8.jpg	0	2025-06-05 09:04:30	2025-06-05 09:04:30
82	237	1749124966684187666e55c.jpg	0	2025-06-05 12:02:46	2025-06-05 12:02:46
83	237	174912496668418766819d7.jpg	0	2025-06-05 12:02:46	2025-06-05 12:02:46
84	237	1749124966684187668fbeb.jpg	0	2025-06-05 12:02:46	2025-06-05 12:02:46
85	238	1749128293684194656ebc4.jpg	0	2025-06-05 12:58:13	2025-06-05 12:58:13
86	239	174919239468428ecacac8a.jpg	0	2025-06-06 06:46:34	2025-06-06 06:46:34
87	243	17494604826846a6024b01e.jpg	0	2025-06-09 09:14:42	2025-06-09 09:14:42
88	243	17494604826846a60259405.jpg	0	2025-06-09 09:14:42	2025-06-09 09:14:42
89	243	17494604826846a60266c85.jpg	0	2025-06-09 09:14:42	2025-06-09 09:14:42
90	244	17495472436847f8eb35d6a.jpg	0	2025-06-10 09:20:43	2025-06-10 09:20:43
91	244	17495472436847f8eb404c5.jpg	0	2025-06-10 09:20:43	2025-06-10 09:20:43
92	247	1751027307685e8e6be9648.jpg	0	2025-06-27 12:28:28	2025-06-27 12:28:28
93	251	1752087876686ebd44a82b9.jpg	0	2025-07-09 19:04:36	2025-07-09 19:04:36
94	251	1752088408686ebf58de706.	0	2025-07-09 19:13:29	2025-07-09 19:13:29
95	252	1752128375686f5b7713c4e.	0	2025-07-10 06:19:35	2025-07-10 06:19:35
96	253	1752164678686fe946d2c58.	0	2025-07-10 16:24:39	2025-07-10 16:24:39
97	253	17522218446870c894a320f.	0	2025-07-11 08:17:24	2025-07-11 08:17:24
98	254	17522330296870f44591be3.	0	2025-07-11 11:23:49	2025-07-11 11:23:49
99	254	17522330296870f4459b2eb.	0	2025-07-11 11:23:49	2025-07-11 11:23:49
100	256	17522354226870fd9e0c1f7.	0	2025-07-11 12:03:42	2025-07-11 12:03:42
101	256	17522354226870fd9e13703.	0	2025-07-11 12:03:42	2025-07-11 12:03:42
102	263	175230885968721c7bf2400.	0	2025-07-12 08:27:40	2025-07-12 08:27:40
103	264	17523105396872230b96e11.	0	2025-07-12 08:55:39	2025-07-12 08:55:39
104	264	17523105396872230bb8125.	0	2025-07-12 08:55:39	2025-07-12 08:55:39
105	267	1752393433687366d90b8c6.	0	2025-07-13 07:57:13	2025-07-13 07:57:13
106	268	175240503168739427e3af9.	0	2025-07-13 11:10:32	2025-07-13 11:10:32
107	273	1752650209687751e102c2e.	0	2025-07-16 07:16:49	2025-07-16 07:16:49
108	273	1752650209687751e10ccf6.	0	2025-07-16 07:16:49	2025-07-16 07:16:49
109	274	175265126868775604750fd.jpg	0	2025-07-16 07:34:28	2025-07-16 07:34:28
110	290	175614180468ac98ec53fbd.	0	2025-08-25 17:10:04	2025-08-25 17:10:04
111	300	17628403256912cf05250d6.jpg	0	2025-11-11 05:52:05	2025-11-11 05:52:05
112	310	1763457650691c3a726deac.	0	2025-11-18 09:20:50	2025-11-18 09:20:50
113	311	1763458367691c3d3f5be57.jpg	0	2025-11-18 09:32:47	2025-11-18 09:32:47
114	311	1763458367691c3d3f6766a.jpg	0	2025-11-18 09:32:47	2025-11-18 09:32:47
115	313	176398278669243dc24a033.	0	2025-11-24 11:13:06	2025-11-24 11:13:06
116	315	17642679326928979cdb307.	0	2025-11-27 18:25:32	2025-11-27 18:25:32
117	315	17642679326928979ce5510.	0	2025-11-27 18:25:32	2025-11-27 18:25:32
118	317	1765468645693ae9e5466c9.	0	2025-12-11 15:57:25	2025-12-11 15:57:25
119	341	1767713475695d2ac3a56ef.	0	2026-01-06 15:31:15	2026-01-06 15:31:15
\.


--
-- Data for Name: user_marital_statuses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_marital_statuses (id, user_id, marital_status_id, created_at, updated_at) FROM stdin;
1	53	1	\N	\N
2	176	1	\N	\N
3	176	2	\N	\N
4	181	1	\N	\N
5	181	2	\N	\N
6	50	2	\N	\N
7	50	1	\N	\N
8	50	3	\N	\N
9	50	4	\N	\N
10	189	1	\N	\N
11	189	2	\N	\N
12	191	1	\N	\N
13	193	2	\N	\N
14	193	1	\N	\N
15	194	1	\N	\N
16	194	2	\N	\N
17	195	1	\N	\N
18	195	2	\N	\N
19	196	2	\N	\N
20	200	2	\N	\N
21	202	2	\N	\N
22	209	2	\N	\N
23	215	2	\N	\N
24	215	4	\N	\N
31	216	6	\N	\N
32	214	1	\N	\N
33	219	1	\N	\N
34	219	6	\N	\N
35	223	8	\N	\N
36	224	1	\N	\N
37	222	1	\N	\N
38	211	1	\N	\N
39	211	6	\N	\N
40	232	1	\N	\N
41	232	6	\N	\N
42	233	1	\N	\N
43	233	6	\N	\N
44	237	2	\N	\N
45	239	2	\N	\N
46	239	3	\N	\N
47	240	2	\N	\N
48	240	3	\N	\N
49	240	4	\N	\N
55	242	2	\N	\N
56	242	3	\N	\N
57	243	8	\N	\N
58	243	1	\N	\N
59	243	6	\N	\N
61	245	3	\N	\N
62	248	2	\N	\N
63	250	2	\N	\N
65	253	3	\N	\N
66	253	4	\N	\N
67	263	6	\N	\N
68	263	1	\N	\N
69	263	8	\N	\N
70	260	1	\N	\N
71	260	6	\N	\N
72	260	8	\N	\N
73	264	3	\N	\N
74	264	4	\N	\N
75	264	2	\N	\N
76	265	2	\N	\N
79	269	2	\N	\N
80	270	2	\N	\N
81	273	8	\N	\N
82	274	2	\N	\N
83	277	8	\N	\N
87	288	1	\N	\N
88	284	2	\N	\N
89	290	2	\N	\N
90	294	8	\N	\N
91	307	2	\N	\N
92	310	2	\N	\N
93	311	8	\N	\N
94	312	10	\N	\N
96	316	8	\N	\N
98	318	1	\N	\N
99	326	2	\N	\N
100	330	2	\N	\N
102	336	8	\N	\N
103	337	2	\N	\N
104	339	1	\N	\N
105	339	3	\N	\N
\.


--
-- Data for Name: user_matches; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_matches (id, user_id, matched_user_id, match_percentage, created_at, updated_at) FROM stdin;
1	36	48	50	2025-03-11 17:18:40	2025-03-11 17:18:40
2	36	47	70	2025-03-11 17:18:40	2025-03-11 17:18:40
3	35	55	88	2025-05-23 10:35:51	2025-05-23 10:35:51
4	35	57	88	2025-05-23 10:35:51	2025-05-23 10:35:51
5	35	59	77	2025-05-23 10:35:51	2025-05-23 10:35:51
6	35	60	77	2025-05-23 10:35:51	2025-05-23 10:35:51
7	35	61	77	2025-05-23 10:35:51	2025-05-23 10:35:51
8	35	62	88	2025-05-23 10:35:51	2025-05-23 10:35:51
9	35	64	88	2025-05-23 10:35:51	2025-05-23 10:35:51
10	35	65	77	2025-05-23 10:35:51	2025-05-23 10:35:51
11	35	72	88	2025-05-23 10:35:51	2025-05-23 10:35:51
12	35	73	88	2025-05-23 10:35:51	2025-05-23 10:35:51
13	35	126	88	2025-05-23 10:35:51	2025-05-23 10:35:51
14	35	127	100	2025-05-23 10:35:51	2025-05-23 10:35:51
15	35	74	88	2025-05-23 10:35:51	2025-05-23 10:35:51
16	35	77	77	2025-05-23 10:35:51	2025-05-23 10:35:51
17	35	130	88	2025-05-23 10:35:51	2025-05-23 10:35:51
18	35	132	100	2025-05-23 10:35:51	2025-05-23 10:35:51
19	35	134	88	2025-05-23 10:35:51	2025-05-23 10:35:51
20	35	136	100	2025-05-23 10:35:51	2025-05-23 10:35:51
21	35	137	88	2025-05-23 10:35:51	2025-05-23 10:35:51
22	35	138	88	2025-05-23 10:35:51	2025-05-23 10:35:51
23	35	94	100	2025-05-23 10:35:51	2025-05-23 10:35:51
24	35	95	100	2025-05-23 10:35:51	2025-05-23 10:35:51
25	35	96	88	2025-05-23 10:35:51	2025-05-23 10:35:51
26	35	98	88	2025-05-23 10:35:51	2025-05-23 10:35:51
27	35	101	100	2025-05-23 10:35:51	2025-05-23 10:35:51
28	35	103	100	2025-05-23 10:35:51	2025-05-23 10:35:51
29	35	80	88	2025-05-23 10:35:51	2025-05-23 10:35:51
30	35	81	88	2025-05-23 10:35:51	2025-05-23 10:35:51
31	35	82	77	2025-05-23 10:35:51	2025-05-23 10:35:51
32	35	83	77	2025-05-23 10:35:51	2025-05-23 10:35:51
33	35	84	77	2025-05-23 10:35:51	2025-05-23 10:35:51
34	35	87	88	2025-05-23 10:35:51	2025-05-23 10:35:51
35	35	89	88	2025-05-23 10:35:51	2025-05-23 10:35:51
36	35	90	77	2025-05-23 10:35:51	2025-05-23 10:35:51
37	35	91	77	2025-05-23 10:35:51	2025-05-23 10:35:51
38	35	92	88	2025-05-23 10:35:51	2025-05-23 10:35:51
39	35	105	88	2025-05-23 10:35:51	2025-05-23 10:35:51
40	35	106	100	2025-05-23 10:35:51	2025-05-23 10:35:51
41	35	107	100	2025-05-23 10:35:51	2025-05-23 10:35:51
42	35	108	88	2025-05-23 10:35:51	2025-05-23 10:35:51
43	35	109	100	2025-05-23 10:35:51	2025-05-23 10:35:51
44	35	110	100	2025-05-23 10:35:51	2025-05-23 10:35:51
45	35	111	88	2025-05-23 10:35:51	2025-05-23 10:35:51
46	35	112	88	2025-05-23 10:35:51	2025-05-23 10:35:51
47	35	116	88	2025-05-23 10:35:51	2025-05-23 10:35:51
48	35	118	100	2025-05-23 10:35:51	2025-05-23 10:35:51
49	35	121	100	2025-05-23 10:35:51	2025-05-23 10:35:51
50	35	144	88	2025-05-23 10:35:51	2025-05-23 10:35:51
51	35	146	100	2025-05-23 10:35:51	2025-05-23 10:35:51
52	35	150	88	2025-05-23 10:35:51	2025-05-23 10:35:51
53	35	151	100	2025-05-23 10:35:51	2025-05-23 10:35:51
54	165	130	44	2025-05-27 04:57:29	2025-05-27 04:57:29
55	165	98	44	2025-05-27 04:57:29	2025-05-27 04:57:29
56	165	109	55	2025-05-27 04:57:29	2025-05-27 04:57:29
57	165	144	44	2025-05-27 04:57:29	2025-05-27 04:57:29
58	35	166	77	2025-05-27 05:03:18	2025-05-27 05:03:18
59	166	165	77	2025-05-27 05:03:18	2025-05-27 05:03:18
60	166	131	44	2025-05-27 05:03:18	2025-05-27 05:03:18
61	166	142	44	2025-05-27 05:03:18	2025-05-27 05:03:18
62	166	97	44	2025-05-27 05:03:18	2025-05-27 05:03:18
63	166	145	44	2025-05-27 05:03:18	2025-05-27 05:03:18
64	166	139	44	2025-05-27 05:03:18	2025-05-27 05:03:18
67	35	168	77	2025-05-27 05:16:34	2025-05-27 05:16:34
68	168	165	88	2025-05-27 05:16:34	2025-05-27 05:18:14
72	168	66	88	2025-05-27 05:16:34	2025-05-27 05:18:14
71	168	63	100	2025-05-27 05:16:34	2025-05-27 05:18:02
73	168	67	88	2025-05-27 05:16:34	2025-05-27 05:18:14
74	168	68	88	2025-05-27 05:16:34	2025-05-27 05:18:14
76	168	70	88	2025-05-27 05:16:34	2025-05-27 05:18:14
75	168	69	100	2025-05-27 05:16:34	2025-05-27 05:18:02
77	168	71	88	2025-05-27 05:16:34	2025-05-27 05:18:14
79	168	125	88	2025-05-27 05:16:34	2025-05-27 05:18:14
80	168	128	88	2025-05-27 05:16:34	2025-05-27 05:18:14
82	168	76	88	2025-05-27 05:16:34	2025-05-27 05:18:14
83	168	78	88	2025-05-27 05:16:34	2025-05-27 05:18:14
84	168	129	88	2025-05-27 05:16:34	2025-05-27 05:18:14
85	168	131	88	2025-05-27 05:16:34	2025-05-27 05:18:14
87	168	135	88	2025-05-27 05:16:34	2025-05-27 05:18:14
88	168	142	88	2025-05-27 05:16:34	2025-05-27 05:18:14
90	168	99	88	2025-05-27 05:16:34	2025-05-27 05:18:14
91	168	100	100	2025-05-27 05:16:34	2025-05-27 05:18:02
93	168	79	88	2025-05-27 05:16:34	2025-05-27 05:18:14
94	168	85	88	2025-05-27 05:16:34	2025-05-27 05:18:14
96	168	88	88	2025-05-27 05:16:34	2025-05-27 05:18:14
95	168	86	100	2025-05-27 05:16:34	2025-05-27 05:18:02
97	168	93	88	2025-05-27 05:16:34	2025-05-27 05:18:14
98	168	104	88	2025-05-27 05:16:34	2025-05-27 05:18:14
99	168	113	88	2025-05-27 05:16:34	2025-05-27 05:18:14
100	168	114	88	2025-05-27 05:16:34	2025-05-27 05:18:14
102	168	117	88	2025-05-27 05:16:34	2025-05-27 05:18:14
103	168	119	88	2025-05-27 05:16:34	2025-05-27 05:18:14
104	168	120	88	2025-05-27 05:16:34	2025-05-27 05:18:14
105	168	122	88	2025-05-27 05:16:34	2025-05-27 05:18:14
106	168	123	88	2025-05-27 05:16:34	2025-05-27 05:18:14
107	168	145	88	2025-05-27 05:16:34	2025-05-27 05:18:14
66	168	35	88	2025-05-27 05:16:34	2025-05-27 05:18:14
69	168	56	88	2025-05-27 05:16:34	2025-05-27 05:18:14
70	168	58	88	2025-05-27 05:16:34	2025-05-27 05:18:14
81	168	75	88	2025-05-27 05:16:34	2025-05-27 05:18:14
86	168	133	88	2025-05-27 05:16:34	2025-05-27 05:18:14
89	168	97	88	2025-05-27 05:16:34	2025-05-27 05:18:14
92	168	102	88	2025-05-27 05:16:34	2025-05-27 05:18:14
173	173	61	55	2025-05-27 07:40:10	2025-05-27 07:40:10
174	173	62	55	2025-05-27 07:40:10	2025-05-27 07:40:10
175	173	64	55	2025-05-27 07:40:10	2025-05-27 07:40:10
176	173	65	55	2025-05-27 07:40:10	2025-05-27 07:40:10
177	173	72	55	2025-05-27 07:40:10	2025-05-27 07:40:10
178	173	73	55	2025-05-27 07:40:10	2025-05-27 07:40:10
179	173	126	55	2025-05-27 07:40:10	2025-05-27 07:40:10
65	168	54	88	2025-05-27 05:16:34	2025-05-27 05:18:14
78	168	124	88	2025-05-27 05:16:34	2025-05-27 05:18:14
101	168	115	88	2025-05-27 05:16:34	2025-05-27 05:18:14
108	168	143	88	2025-05-27 05:16:34	2025-05-27 05:18:14
109	168	139	88	2025-05-27 05:16:34	2025-05-27 05:18:14
110	168	140	88	2025-05-27 05:16:34	2025-05-27 05:18:14
111	168	141	88	2025-05-27 05:16:34	2025-05-27 05:18:14
112	168	147	88	2025-05-27 05:16:34	2025-05-27 05:18:14
113	168	148	88	2025-05-27 05:16:34	2025-05-27 05:18:14
114	168	149	88	2025-05-27 05:16:34	2025-05-27 05:18:14
115	168	152	88	2025-05-27 05:16:34	2025-05-27 05:18:14
116	168	153	88	2025-05-27 05:16:34	2025-05-27 05:18:14
117	171	54	44	2025-05-27 05:58:03	2025-05-27 05:58:03
118	171	35	44	2025-05-27 05:58:03	2025-05-27 05:58:03
119	35	171	77	2025-05-27 05:58:03	2025-05-27 05:58:03
120	171	165	66	2025-05-27 05:58:03	2025-05-27 05:58:03
121	171	56	44	2025-05-27 05:58:03	2025-05-27 05:58:03
122	171	58	44	2025-05-27 05:58:03	2025-05-27 05:58:03
124	171	66	44	2025-05-27 05:58:03	2025-05-27 05:58:03
125	171	67	44	2025-05-27 05:58:03	2025-05-27 05:58:03
126	171	68	44	2025-05-27 05:58:03	2025-05-27 05:58:03
128	171	70	44	2025-05-27 05:58:03	2025-05-27 05:58:03
129	171	71	44	2025-05-27 05:58:03	2025-05-27 05:58:03
131	171	125	44	2025-05-27 05:58:03	2025-05-27 05:58:03
132	171	128	44	2025-05-27 05:58:03	2025-05-27 05:58:03
133	171	75	44	2025-05-27 05:58:03	2025-05-27 05:58:03
134	171	76	44	2025-05-27 05:58:03	2025-05-27 05:58:03
136	171	129	44	2025-05-27 05:58:03	2025-05-27 05:58:03
137	171	131	55	2025-05-27 05:58:03	2025-05-27 05:58:03
139	171	135	44	2025-05-27 05:58:03	2025-05-27 05:58:03
140	171	142	44	2025-05-27 05:58:03	2025-05-27 05:58:03
141	171	97	44	2025-05-27 05:58:03	2025-05-27 05:58:03
142	171	99	44	2025-05-27 05:58:03	2025-05-27 05:58:03
144	171	102	44	2025-05-27 05:58:03	2025-05-27 05:58:03
145	171	79	55	2025-05-27 05:58:03	2025-05-27 05:58:03
146	171	85	44	2025-05-27 05:58:03	2025-05-27 05:58:03
148	171	88	44	2025-05-27 05:58:03	2025-05-27 05:58:03
149	171	93	55	2025-05-27 05:58:03	2025-05-27 05:58:03
150	171	104	55	2025-05-27 05:58:03	2025-05-27 05:58:03
151	171	113	44	2025-05-27 05:58:03	2025-05-27 05:58:03
152	171	114	44	2025-05-27 05:58:03	2025-05-27 05:58:03
153	171	115	44	2025-05-27 05:58:03	2025-05-27 05:58:03
154	171	117	55	2025-05-27 05:58:03	2025-05-27 05:58:03
155	171	119	44	2025-05-27 05:58:03	2025-05-27 05:58:03
158	171	123	44	2025-05-27 05:58:03	2025-05-27 05:58:03
159	171	145	55	2025-05-27 05:58:03	2025-05-27 05:58:03
160	171	143	44	2025-05-27 05:58:03	2025-05-27 05:58:03
161	171	139	55	2025-05-27 05:58:03	2025-05-27 05:58:03
162	171	140	44	2025-05-27 05:58:03	2025-05-27 05:58:03
164	171	147	44	2025-05-27 05:58:03	2025-05-27 05:58:03
165	171	148	44	2025-05-27 05:58:03	2025-05-27 05:58:03
166	171	149	44	2025-05-27 05:58:03	2025-05-27 05:58:03
167	171	152	55	2025-05-27 05:58:03	2025-05-27 05:58:03
168	171	153	44	2025-05-27 05:58:03	2025-05-27 05:58:03
123	171	63	66	2025-05-27 05:58:03	2025-05-27 06:42:38
127	171	69	55	2025-05-27 05:58:03	2025-05-27 06:42:38
130	171	124	44	2025-05-27 05:58:03	2025-05-27 06:42:38
135	171	78	44	2025-05-27 05:58:03	2025-05-27 06:42:38
138	171	133	44	2025-05-27 05:58:03	2025-05-27 06:42:38
143	171	100	55	2025-05-27 05:58:03	2025-05-27 06:42:38
147	171	86	55	2025-05-27 05:58:03	2025-05-27 06:42:38
156	171	120	44	2025-05-27 05:58:03	2025-05-27 06:42:38
157	171	122	44	2025-05-27 05:58:03	2025-05-27 06:42:38
163	171	141	44	2025-05-27 05:58:03	2025-05-27 06:42:38
169	173	55	55	2025-05-27 07:40:10	2025-05-27 07:40:10
170	173	57	66	2025-05-27 07:40:10	2025-05-27 07:40:10
171	173	59	55	2025-05-27 07:40:10	2025-05-27 07:40:10
172	173	60	55	2025-05-27 07:40:10	2025-05-27 07:40:10
180	173	127	55	2025-05-27 07:40:10	2025-05-27 07:40:10
181	173	166	77	2025-05-27 07:40:10	2025-05-27 07:40:10
182	173	74	55	2025-05-27 07:40:10	2025-05-27 07:40:10
183	173	77	55	2025-05-27 07:40:10	2025-05-27 07:40:10
184	173	130	66	2025-05-27 07:40:10	2025-05-27 07:40:10
185	173	132	55	2025-05-27 07:40:10	2025-05-27 07:40:10
186	173	134	55	2025-05-27 07:40:10	2025-05-27 07:40:10
187	173	136	55	2025-05-27 07:40:10	2025-05-27 07:40:10
188	173	137	66	2025-05-27 07:40:10	2025-05-27 07:40:10
189	173	138	66	2025-05-27 07:40:10	2025-05-27 07:40:10
190	173	168	55	2025-05-27 07:40:10	2025-05-27 07:40:10
191	168	173	88	2025-05-27 07:40:10	2025-05-27 07:40:10
192	173	171	77	2025-05-27 07:40:10	2025-05-27 07:40:10
193	171	173	44	2025-05-27 07:40:10	2025-05-27 07:40:10
194	173	94	55	2025-05-27 07:40:10	2025-05-27 07:40:10
195	173	95	55	2025-05-27 07:40:10	2025-05-27 07:40:10
196	173	96	55	2025-05-27 07:40:10	2025-05-27 07:40:10
197	173	98	66	2025-05-27 07:40:10	2025-05-27 07:40:10
198	173	101	55	2025-05-27 07:40:10	2025-05-27 07:40:10
199	173	103	55	2025-05-27 07:40:10	2025-05-27 07:40:10
200	173	80	55	2025-05-27 07:40:10	2025-05-27 07:40:10
201	173	81	55	2025-05-27 07:40:10	2025-05-27 07:40:10
202	173	82	55	2025-05-27 07:40:10	2025-05-27 07:40:10
203	173	83	55	2025-05-27 07:40:10	2025-05-27 07:40:10
204	173	84	55	2025-05-27 07:40:10	2025-05-27 07:40:10
205	173	87	55	2025-05-27 07:40:10	2025-05-27 07:40:10
206	173	89	55	2025-05-27 07:40:10	2025-05-27 07:40:10
207	173	90	55	2025-05-27 07:40:10	2025-05-27 07:40:10
208	173	91	66	2025-05-27 07:40:10	2025-05-27 07:40:10
209	173	92	55	2025-05-27 07:40:10	2025-05-27 07:40:10
210	173	105	55	2025-05-27 07:40:10	2025-05-27 07:40:10
211	173	106	66	2025-05-27 07:40:10	2025-05-27 07:40:10
212	173	107	55	2025-05-27 07:40:10	2025-05-27 07:40:10
213	173	108	55	2025-05-27 07:40:10	2025-05-27 07:40:10
214	173	109	66	2025-05-27 07:40:10	2025-05-27 07:40:10
215	173	110	55	2025-05-27 07:40:10	2025-05-27 07:40:10
216	173	111	55	2025-05-27 07:40:10	2025-05-27 07:40:10
217	173	112	55	2025-05-27 07:40:10	2025-05-27 07:40:10
218	173	116	55	2025-05-27 07:40:10	2025-05-27 07:40:10
219	173	118	55	2025-05-27 07:40:10	2025-05-27 07:40:10
220	173	121	55	2025-05-27 07:40:10	2025-05-27 07:40:10
221	173	144	55	2025-05-27 07:40:10	2025-05-27 07:40:10
222	173	146	55	2025-05-27 07:40:10	2025-05-27 07:40:10
223	173	150	55	2025-05-27 07:40:10	2025-05-27 07:40:10
224	173	151	55	2025-05-27 07:40:10	2025-05-27 07:40:10
225	174	54	44	2025-05-27 08:26:33	2025-05-27 08:26:33
226	174	35	44	2025-05-27 08:26:33	2025-05-27 08:26:33
227	35	174	77	2025-05-27 08:26:33	2025-05-27 08:26:33
228	174	165	66	2025-05-27 08:26:33	2025-05-27 08:26:33
229	174	56	44	2025-05-27 08:26:33	2025-05-27 08:26:33
230	174	58	44	2025-05-27 08:26:33	2025-05-27 08:26:33
231	174	63	66	2025-05-27 08:26:33	2025-05-27 08:26:33
232	174	66	44	2025-05-27 08:26:33	2025-05-27 08:26:33
233	174	67	44	2025-05-27 08:26:33	2025-05-27 08:26:33
234	174	68	44	2025-05-27 08:26:33	2025-05-27 08:26:33
235	174	69	55	2025-05-27 08:26:33	2025-05-27 08:26:33
236	174	70	44	2025-05-27 08:26:33	2025-05-27 08:26:33
237	174	71	44	2025-05-27 08:26:33	2025-05-27 08:26:33
238	174	124	44	2025-05-27 08:26:33	2025-05-27 08:26:33
239	174	125	44	2025-05-27 08:26:33	2025-05-27 08:26:33
240	174	128	44	2025-05-27 08:26:33	2025-05-27 08:26:33
241	174	75	44	2025-05-27 08:26:33	2025-05-27 08:26:33
242	174	76	44	2025-05-27 08:26:33	2025-05-27 08:26:33
243	174	78	44	2025-05-27 08:26:33	2025-05-27 08:26:33
244	174	129	44	2025-05-27 08:26:33	2025-05-27 08:26:33
245	174	131	55	2025-05-27 08:26:33	2025-05-27 08:26:33
246	174	133	44	2025-05-27 08:26:33	2025-05-27 08:26:33
247	174	135	44	2025-05-27 08:26:33	2025-05-27 08:26:33
248	174	142	44	2025-05-27 08:26:33	2025-05-27 08:26:33
249	174	97	44	2025-05-27 08:26:33	2025-05-27 08:26:33
250	174	99	44	2025-05-27 08:26:33	2025-05-27 08:26:33
251	174	100	55	2025-05-27 08:26:33	2025-05-27 08:26:33
252	174	102	44	2025-05-27 08:26:33	2025-05-27 08:26:33
253	174	79	55	2025-05-27 08:26:33	2025-05-27 08:26:33
254	174	85	44	2025-05-27 08:26:33	2025-05-27 08:26:33
255	174	86	55	2025-05-27 08:26:33	2025-05-27 08:26:33
256	174	88	44	2025-05-27 08:26:33	2025-05-27 08:26:33
257	174	93	55	2025-05-27 08:26:33	2025-05-27 08:26:33
258	174	104	55	2025-05-27 08:26:33	2025-05-27 08:26:33
259	174	113	44	2025-05-27 08:26:33	2025-05-27 08:26:33
260	174	114	44	2025-05-27 08:26:33	2025-05-27 08:26:33
261	174	115	44	2025-05-27 08:26:33	2025-05-27 08:26:33
262	174	117	55	2025-05-27 08:26:33	2025-05-27 08:26:33
263	174	119	44	2025-05-27 08:26:33	2025-05-27 08:26:33
264	174	120	44	2025-05-27 08:26:33	2025-05-27 08:26:33
265	174	122	44	2025-05-27 08:26:33	2025-05-27 08:26:33
266	174	123	44	2025-05-27 08:26:33	2025-05-27 08:26:33
267	174	145	55	2025-05-27 08:26:33	2025-05-27 08:26:33
268	174	143	44	2025-05-27 08:26:33	2025-05-27 08:26:33
269	174	139	55	2025-05-27 08:26:33	2025-05-27 08:26:33
270	174	140	44	2025-05-27 08:26:33	2025-05-27 08:26:33
271	174	141	44	2025-05-27 08:26:33	2025-05-27 08:26:33
272	174	147	44	2025-05-27 08:26:33	2025-05-27 08:26:33
273	174	148	44	2025-05-27 08:26:33	2025-05-27 08:26:33
274	174	149	44	2025-05-27 08:26:33	2025-05-27 08:26:33
275	174	152	55	2025-05-27 08:26:33	2025-05-27 08:26:33
276	174	153	44	2025-05-27 08:26:33	2025-05-27 08:26:33
277	174	173	66	2025-05-27 08:26:33	2025-05-27 08:26:33
278	173	174	55	2025-05-27 08:26:33	2025-05-27 08:26:33
279	176	54	44	2025-05-27 08:45:50	2025-05-27 08:45:50
280	176	35	44	2025-05-27 08:45:50	2025-05-27 08:45:50
281	35	176	77	2025-05-27 08:45:50	2025-05-27 08:45:50
283	176	56	44	2025-05-27 08:45:50	2025-05-27 08:45:50
284	176	58	44	2025-05-27 08:45:50	2025-05-27 08:45:50
286	176	66	44	2025-05-27 08:45:50	2025-05-27 08:45:50
287	176	67	44	2025-05-27 08:45:50	2025-05-27 08:45:50
288	176	68	44	2025-05-27 08:45:50	2025-05-27 08:45:50
290	176	70	44	2025-05-27 08:45:50	2025-05-27 08:45:50
291	176	71	44	2025-05-27 08:45:50	2025-05-27 08:45:50
293	176	125	44	2025-05-27 08:45:50	2025-05-27 08:45:50
294	176	128	44	2025-05-27 08:45:50	2025-05-27 08:45:50
295	176	75	44	2025-05-27 08:45:50	2025-05-27 08:45:50
296	176	76	44	2025-05-27 08:45:50	2025-05-27 08:45:50
297	176	78	44	2025-05-27 08:45:50	2025-05-27 08:45:50
298	176	129	44	2025-05-27 08:45:50	2025-05-27 08:45:50
300	176	133	44	2025-05-27 08:45:50	2025-05-27 08:45:50
301	176	135	44	2025-05-27 08:45:50	2025-05-27 08:45:50
302	176	142	44	2025-05-27 08:45:50	2025-05-27 08:45:50
303	176	97	44	2025-05-27 08:45:50	2025-05-27 08:45:50
304	176	99	44	2025-05-27 08:45:50	2025-05-27 08:45:50
306	176	102	44	2025-05-27 08:45:50	2025-05-27 08:45:50
308	176	85	44	2025-05-27 08:45:50	2025-05-27 08:45:50
310	176	88	44	2025-05-27 08:45:50	2025-05-27 08:45:50
313	176	113	44	2025-05-27 08:45:50	2025-05-27 08:45:50
314	176	114	44	2025-05-27 08:45:50	2025-05-27 08:45:50
315	176	115	44	2025-05-27 08:45:50	2025-05-27 08:45:50
317	176	119	44	2025-05-27 08:45:50	2025-05-27 08:45:50
289	176	69	44	2025-05-27 08:45:50	2025-05-27 08:56:27
299	176	131	44	2025-05-27 08:45:50	2025-05-27 08:45:59
305	176	100	44	2025-05-27 08:45:50	2025-05-27 08:45:59
309	176	86	44	2025-05-27 08:45:50	2025-05-27 08:45:59
311	176	93	44	2025-05-27 08:45:50	2025-05-27 08:45:59
316	176	117	44	2025-05-27 08:45:50	2025-05-27 08:45:59
285	176	63	44	2025-05-27 08:45:50	2025-05-27 08:56:27
312	176	104	44	2025-05-27 08:45:50	2025-05-27 09:01:14
292	176	124	44	2025-05-27 08:45:50	2025-05-27 09:01:14
318	176	120	44	2025-05-27 08:45:50	2025-05-27 08:45:50
319	176	122	44	2025-05-27 08:45:50	2025-05-27 08:45:50
320	176	123	44	2025-05-27 08:45:50	2025-05-27 08:45:50
322	176	143	44	2025-05-27 08:45:50	2025-05-27 08:45:50
324	176	140	44	2025-05-27 08:45:50	2025-05-27 08:45:50
325	176	141	44	2025-05-27 08:45:50	2025-05-27 08:45:50
326	176	147	44	2025-05-27 08:45:50	2025-05-27 08:45:50
327	176	148	44	2025-05-27 08:45:50	2025-05-27 08:45:50
328	176	149	44	2025-05-27 08:45:50	2025-05-27 08:45:50
330	176	153	44	2025-05-27 08:45:50	2025-05-27 08:45:50
332	173	176	55	2025-05-27 08:45:50	2025-05-27 08:45:50
321	176	145	44	2025-05-27 08:45:50	2025-05-27 08:45:59
323	176	139	44	2025-05-27 08:45:50	2025-05-27 08:45:59
329	176	152	44	2025-05-27 08:45:50	2025-05-27 08:45:59
282	176	165	44	2025-05-27 08:45:50	2025-05-27 09:01:14
307	176	79	44	2025-05-27 08:45:50	2025-05-27 09:01:14
331	176	173	44	2025-05-27 08:45:50	2025-05-27 09:01:14
334	174	177	44	2025-05-27 12:51:45	2025-05-27 12:51:45
337	177	59	44	2025-05-27 12:51:45	2025-05-27 12:51:45
338	177	60	44	2025-05-27 12:51:45	2025-05-27 12:51:45
340	177	62	44	2025-05-27 12:51:45	2025-05-27 12:51:45
341	177	64	44	2025-05-27 12:51:45	2025-05-27 12:51:45
342	177	65	44	2025-05-27 12:51:45	2025-05-27 12:51:45
343	177	72	44	2025-05-27 12:51:45	2025-05-27 12:51:45
344	177	73	44	2025-05-27 12:51:45	2025-05-27 12:51:45
345	177	126	44	2025-05-27 12:51:45	2025-05-27 12:51:45
346	177	127	44	2025-05-27 12:51:45	2025-05-27 12:51:45
348	177	74	44	2025-05-27 12:51:45	2025-05-27 12:51:45
349	177	77	44	2025-05-27 12:51:45	2025-05-27 12:51:45
350	177	130	44	2025-05-27 12:51:45	2025-05-27 12:51:45
351	177	176	55	2025-05-27 12:51:45	2025-05-27 12:51:45
352	177	132	44	2025-05-27 12:51:45	2025-05-27 12:51:45
353	177	134	44	2025-05-27 12:51:45	2025-05-27 12:51:45
354	177	136	44	2025-05-27 12:51:45	2025-05-27 12:51:45
355	177	137	44	2025-05-27 12:51:45	2025-05-27 12:51:45
356	177	138	44	2025-05-27 12:51:45	2025-05-27 12:51:45
357	177	168	55	2025-05-27 12:51:45	2025-05-27 12:51:45
358	168	177	88	2025-05-27 12:51:45	2025-05-27 12:51:45
360	171	177	44	2025-05-27 12:51:45	2025-05-27 12:51:45
361	177	94	44	2025-05-27 12:51:45	2025-05-27 12:51:45
362	177	95	44	2025-05-27 12:51:45	2025-05-27 12:51:45
363	177	96	44	2025-05-27 12:51:45	2025-05-27 12:51:45
364	177	98	44	2025-05-27 12:51:45	2025-05-27 12:51:45
365	177	101	44	2025-05-27 12:51:45	2025-05-27 12:51:45
367	177	80	44	2025-05-27 12:51:45	2025-05-27 12:51:45
368	177	81	44	2025-05-27 12:51:45	2025-05-27 12:51:45
369	177	82	44	2025-05-27 12:51:45	2025-05-27 12:51:45
370	177	83	44	2025-05-27 12:51:45	2025-05-27 12:51:45
371	177	84	44	2025-05-27 12:51:45	2025-05-27 12:51:45
372	177	87	44	2025-05-27 12:51:45	2025-05-27 12:51:45
373	177	89	44	2025-05-27 12:51:45	2025-05-27 12:51:45
374	177	90	44	2025-05-27 12:51:45	2025-05-27 12:51:45
375	177	91	55	2025-05-27 12:51:45	2025-05-27 12:51:45
377	177	105	44	2025-05-27 12:51:45	2025-05-27 12:51:45
378	177	106	44	2025-05-27 12:51:45	2025-05-27 12:51:45
379	177	107	44	2025-05-27 12:51:45	2025-05-27 12:51:45
380	177	108	44	2025-05-27 12:51:45	2025-05-27 12:51:45
381	177	109	44	2025-05-27 12:51:45	2025-05-27 12:51:45
382	177	110	44	2025-05-27 12:51:45	2025-05-27 12:51:45
383	177	111	44	2025-05-27 12:51:45	2025-05-27 12:51:45
384	177	112	44	2025-05-27 12:51:45	2025-05-27 12:51:45
385	177	116	44	2025-05-27 12:51:45	2025-05-27 12:51:45
386	177	118	44	2025-05-27 12:51:45	2025-05-27 12:51:45
387	177	121	44	2025-05-27 12:51:45	2025-05-27 12:51:45
388	177	144	44	2025-05-27 12:51:45	2025-05-27 12:51:45
389	177	146	44	2025-05-27 12:51:45	2025-05-27 12:51:45
390	177	150	44	2025-05-27 12:51:45	2025-05-27 12:51:45
391	177	151	44	2025-05-27 12:51:45	2025-05-27 12:51:45
333	177	174	44	2025-05-27 12:51:45	2025-05-27 12:52:53
335	177	55	44	2025-05-27 12:51:45	2025-05-27 12:52:53
336	177	57	44	2025-05-27 12:51:45	2025-05-27 12:52:53
339	177	61	44	2025-05-27 12:51:45	2025-05-27 12:52:53
347	177	166	44	2025-05-27 12:51:45	2025-05-27 12:52:53
359	177	171	44	2025-05-27 12:51:45	2025-05-27 12:52:53
366	177	103	44	2025-05-27 12:51:45	2025-05-27 12:52:53
376	177	92	44	2025-05-27 12:51:45	2025-05-27 12:52:53
394	35	179	77	2025-05-27 13:39:28	2025-05-27 13:39:28
393	179	35	44	2025-05-27 13:39:28	2025-05-27 13:40:03
395	179	165	55	2025-05-27 13:39:28	2025-05-27 13:40:03
396	179	56	44	2025-05-27 13:39:28	2025-05-27 13:40:03
398	179	63	44	2025-05-27 13:39:28	2025-05-28 10:05:22
410	179	78	55	2025-05-27 13:39:28	2025-05-28 10:05:22
399	179	66	44	2025-05-27 13:39:28	2025-05-27 13:40:03
400	179	67	44	2025-05-27 13:39:28	2025-05-27 13:40:03
401	179	68	44	2025-05-27 13:39:28	2025-05-27 13:40:03
402	179	69	44	2025-05-27 13:39:28	2025-05-27 13:40:03
403	179	70	44	2025-05-27 13:39:28	2025-05-27 13:40:03
404	179	71	44	2025-05-27 13:39:28	2025-05-27 13:40:03
405	179	124	55	2025-05-27 13:39:28	2025-05-27 13:40:03
406	179	125	44	2025-05-27 13:39:28	2025-05-27 13:40:03
407	179	128	55	2025-05-27 13:39:28	2025-05-27 13:40:03
408	179	75	44	2025-05-27 13:39:28	2025-05-27 13:40:03
421	179	79	44	2025-05-27 13:39:28	2025-05-28 10:05:22
411	179	129	44	2025-05-27 13:39:28	2025-05-27 13:40:03
412	179	131	66	2025-05-27 13:39:28	2025-05-27 13:40:03
413	179	133	55	2025-05-27 13:39:28	2025-05-27 13:40:03
414	179	135	44	2025-05-27 13:39:28	2025-05-27 13:40:03
415	179	142	44	2025-05-27 13:39:28	2025-05-27 13:40:03
416	179	177	44	2025-05-27 13:39:28	2025-05-27 13:40:03
417	179	97	44	2025-05-27 13:39:28	2025-05-27 13:40:03
418	179	99	55	2025-05-27 13:39:28	2025-05-27 13:40:03
419	179	100	55	2025-05-27 13:39:28	2025-05-27 13:40:03
420	179	102	44	2025-05-27 13:39:28	2025-05-27 13:40:03
397	179	58	44	2025-05-27 13:39:28	2025-05-28 10:05:22
446	173	179	55	2025-05-27 13:39:28	2025-05-27 13:39:28
392	179	54	44	2025-05-27 13:39:28	2025-05-27 13:40:03
409	179	76	44	2025-05-27 13:39:28	2025-05-27 13:40:03
423	179	86	55	2025-05-27 13:39:28	2025-05-28 10:05:22
424	179	88	44	2025-05-27 13:39:28	2025-05-28 10:05:22
425	179	93	44	2025-05-27 13:39:28	2025-05-28 10:05:22
445	179	173	44	2025-05-27 13:39:28	2025-05-28 10:05:22
426	179	104	55	2025-05-27 13:39:28	2025-05-27 13:40:03
427	179	113	44	2025-05-27 13:39:28	2025-05-27 13:40:03
428	179	114	55	2025-05-27 13:39:28	2025-05-27 13:40:03
429	179	115	55	2025-05-27 13:39:28	2025-05-27 13:40:03
430	179	117	55	2025-05-27 13:39:28	2025-05-27 13:40:03
431	179	119	44	2025-05-27 13:39:28	2025-05-27 13:40:03
432	179	120	55	2025-05-27 13:39:28	2025-05-27 13:40:03
433	179	122	55	2025-05-27 13:39:28	2025-05-27 13:40:03
434	179	123	44	2025-05-27 13:39:28	2025-05-27 13:40:03
435	179	145	44	2025-05-27 13:39:28	2025-05-27 13:40:03
436	179	143	55	2025-05-27 13:39:28	2025-05-27 13:40:03
437	179	139	55	2025-05-27 13:39:28	2025-05-27 13:40:03
438	179	140	55	2025-05-27 13:39:28	2025-05-27 13:40:03
439	179	141	55	2025-05-27 13:39:28	2025-05-27 13:40:03
440	179	147	55	2025-05-27 13:39:28	2025-05-27 13:40:03
441	179	148	44	2025-05-27 13:39:28	2025-05-27 13:40:03
442	179	149	44	2025-05-27 13:39:28	2025-05-27 13:40:03
443	179	152	55	2025-05-27 13:39:28	2025-05-27 13:40:03
444	179	153	44	2025-05-27 13:39:28	2025-05-27 13:40:03
447	53	54	44	2025-05-27 16:32:49	2025-05-27 16:32:49
448	53	35	44	2025-05-27 16:32:49	2025-05-27 16:32:49
449	35	53	77	2025-05-27 16:32:49	2025-05-27 16:32:49
450	53	165	66	2025-05-27 16:32:49	2025-05-27 16:32:49
451	53	63	55	2025-05-27 16:32:50	2025-05-27 16:32:50
452	53	69	44	2025-05-27 16:32:50	2025-05-27 16:32:50
453	53	124	44	2025-05-27 16:32:50	2025-05-27 16:32:50
454	53	125	44	2025-05-27 16:32:50	2025-05-27 16:32:50
455	53	128	44	2025-05-27 16:32:50	2025-05-27 16:32:50
456	53	129	44	2025-05-27 16:32:50	2025-05-27 16:32:50
457	53	131	55	2025-05-27 16:32:50	2025-05-27 16:32:50
458	53	133	44	2025-05-27 16:32:50	2025-05-27 16:32:50
459	53	135	44	2025-05-27 16:32:50	2025-05-27 16:32:50
460	53	142	44	2025-05-27 16:32:50	2025-05-27 16:32:50
461	53	177	55	2025-05-27 16:32:50	2025-05-27 16:32:50
462	53	97	44	2025-05-27 16:32:50	2025-05-27 16:32:50
463	53	99	44	2025-05-27 16:32:50	2025-05-27 16:32:50
464	53	100	55	2025-05-27 16:32:50	2025-05-27 16:32:50
465	53	102	44	2025-05-27 16:32:50	2025-05-27 16:32:50
466	53	79	44	2025-05-27 16:32:50	2025-05-27 16:32:50
467	53	86	44	2025-05-27 16:32:50	2025-05-27 16:32:50
468	53	93	44	2025-05-27 16:32:50	2025-05-27 16:32:50
469	53	104	55	2025-05-27 16:32:50	2025-05-27 16:32:50
470	53	113	44	2025-05-27 16:32:50	2025-05-27 16:32:50
471	53	114	44	2025-05-27 16:32:50	2025-05-27 16:32:50
472	53	115	44	2025-05-27 16:32:50	2025-05-27 16:32:50
473	53	117	55	2025-05-27 16:32:50	2025-05-27 16:32:50
474	53	119	44	2025-05-27 16:32:50	2025-05-27 16:32:50
475	53	120	44	2025-05-27 16:32:50	2025-05-27 16:32:50
476	53	122	44	2025-05-27 16:32:50	2025-05-27 16:32:50
477	53	123	44	2025-05-27 16:32:50	2025-05-27 16:32:50
478	53	145	55	2025-05-27 16:32:50	2025-05-27 16:32:50
479	53	143	44	2025-05-27 16:32:50	2025-05-27 16:32:50
480	53	139	55	2025-05-27 16:32:50	2025-05-27 16:32:50
481	53	140	44	2025-05-27 16:32:50	2025-05-27 16:32:50
482	53	141	44	2025-05-27 16:32:50	2025-05-27 16:32:50
483	53	147	44	2025-05-27 16:32:50	2025-05-27 16:32:50
484	53	148	44	2025-05-27 16:32:50	2025-05-27 16:32:50
485	53	149	44	2025-05-27 16:32:50	2025-05-27 16:32:50
486	53	152	55	2025-05-27 16:32:50	2025-05-27 16:32:50
487	53	153	44	2025-05-27 16:32:50	2025-05-27 16:32:50
488	53	173	55	2025-05-27 16:32:50	2025-05-27 16:32:50
489	173	53	55	2025-05-27 16:32:50	2025-05-27 16:32:50
490	176	177	44	2025-05-27 17:23:34	2025-05-27 17:23:34
491	181	54	44	2025-05-27 18:20:05	2025-05-27 18:20:05
492	181	35	44	2025-05-27 18:20:05	2025-05-27 18:20:05
493	35	181	77	2025-05-27 18:20:05	2025-05-27 18:20:05
495	181	56	44	2025-05-27 18:20:05	2025-05-27 18:20:05
496	181	58	44	2025-05-27 18:20:05	2025-05-27 18:20:05
498	181	66	44	2025-05-27 18:20:05	2025-05-27 18:20:05
499	181	67	44	2025-05-27 18:20:05	2025-05-27 18:20:05
500	181	68	44	2025-05-27 18:20:05	2025-05-27 18:20:05
502	181	70	44	2025-05-27 18:20:05	2025-05-27 18:20:05
503	181	71	44	2025-05-27 18:20:05	2025-05-27 18:20:05
504	181	124	44	2025-05-27 18:20:05	2025-05-27 18:20:05
505	181	125	44	2025-05-27 18:20:05	2025-05-27 18:20:05
506	181	128	44	2025-05-27 18:20:05	2025-05-27 18:20:05
507	181	75	44	2025-05-27 18:20:05	2025-05-27 18:20:05
508	181	76	44	2025-05-27 18:20:05	2025-05-27 18:20:05
509	181	78	44	2025-05-27 18:20:05	2025-05-27 18:20:05
510	181	129	44	2025-05-27 18:20:05	2025-05-27 18:20:05
511	181	131	55	2025-05-27 18:20:05	2025-05-27 18:20:05
512	181	133	44	2025-05-27 18:20:05	2025-05-27 18:20:05
513	181	135	44	2025-05-27 18:20:05	2025-05-27 18:20:05
514	181	142	44	2025-05-27 18:20:05	2025-05-27 18:20:05
516	181	97	44	2025-05-27 18:20:05	2025-05-27 18:20:05
517	181	99	44	2025-05-27 18:20:05	2025-05-27 18:20:05
518	181	100	55	2025-05-27 18:20:05	2025-05-27 18:20:05
519	181	102	44	2025-05-27 18:20:05	2025-05-27 18:20:05
521	181	85	44	2025-05-27 18:20:05	2025-05-27 18:20:05
523	181	88	44	2025-05-27 18:20:05	2025-05-27 18:20:05
525	181	104	55	2025-05-27 18:20:05	2025-05-27 18:20:05
515	181	177	55	2025-05-27 18:20:05	2025-05-27 18:23:44
501	181	69	44	2025-05-27 18:20:05	2025-05-27 18:20:13
522	181	86	44	2025-05-27 18:20:05	2025-05-27 18:20:13
524	181	93	44	2025-05-27 18:20:05	2025-05-27 18:20:13
520	181	79	44	2025-05-27 18:20:05	2025-05-27 18:23:44
422	179	85	44	2025-05-27 13:39:28	2025-05-28 10:05:22
526	181	113	44	2025-05-27 18:20:05	2025-05-27 18:20:05
527	181	114	44	2025-05-27 18:20:05	2025-05-27 18:20:05
528	181	115	44	2025-05-27 18:20:05	2025-05-27 18:20:05
530	181	119	44	2025-05-27 18:20:05	2025-05-27 18:20:05
531	181	120	44	2025-05-27 18:20:05	2025-05-27 18:20:05
532	181	122	44	2025-05-27 18:20:05	2025-05-27 18:20:05
533	181	123	44	2025-05-27 18:20:05	2025-05-27 18:20:05
534	181	145	55	2025-05-27 18:20:05	2025-05-27 18:20:05
535	181	143	44	2025-05-27 18:20:05	2025-05-27 18:20:05
536	181	139	55	2025-05-27 18:20:05	2025-05-27 18:20:05
537	181	140	44	2025-05-27 18:20:05	2025-05-27 18:20:05
538	181	141	44	2025-05-27 18:20:05	2025-05-27 18:20:05
539	181	147	44	2025-05-27 18:20:05	2025-05-27 18:20:05
540	181	148	44	2025-05-27 18:20:05	2025-05-27 18:20:05
541	181	149	44	2025-05-27 18:20:05	2025-05-27 18:20:05
542	181	152	55	2025-05-27 18:20:05	2025-05-27 18:20:05
543	181	153	44	2025-05-27 18:20:05	2025-05-27 18:20:05
545	173	181	55	2025-05-27 18:20:05	2025-05-27 18:20:05
494	181	165	55	2025-05-27 18:20:05	2025-05-27 18:20:13
529	181	117	44	2025-05-27 18:20:05	2025-05-27 18:20:13
570	50	138	66	2025-05-28 08:20:55	2025-05-28 08:49:06
497	181	63	44	2025-05-27 18:20:05	2025-05-27 18:23:44
544	181	173	44	2025-05-27 18:20:05	2025-05-27 18:23:44
547	174	50	44	2025-05-28 08:20:55	2025-05-28 08:20:55
572	168	50	88	2025-05-28 08:20:55	2025-05-28 08:20:55
574	171	50	44	2025-05-28 08:20:55	2025-05-28 08:20:55
562	50	74	66	2025-05-28 08:20:55	2025-05-28 14:26:46
601	50	116	66	2025-05-28 08:20:55	2025-05-28 14:26:46
608	50	53	77	2025-05-28 08:20:55	2025-05-28 14:26:46
550	50	57	66	2025-05-28 08:20:55	2025-05-28 08:48:58
556	50	65	44	2025-05-28 08:20:55	2025-05-28 08:49:06
559	50	126	55	2025-05-28 08:20:55	2025-05-28 08:49:06
609	189	54	77	2025-05-28 17:42:58	2025-05-28 17:42:58
554	50	62	55	2025-05-28 08:20:55	2025-05-28 08:48:58
557	50	72	55	2025-05-28 08:20:55	2025-05-28 08:48:58
560	50	127	66	2025-05-28 08:20:55	2025-05-28 08:48:58
546	50	174	66	2025-05-28 08:20:55	2025-05-28 14:26:46
579	50	96	55	2025-05-28 08:20:55	2025-05-28 08:49:07
580	50	98	66	2025-05-28 08:20:55	2025-05-28 08:49:07
548	50	181	88	2025-05-28 08:20:55	2025-05-28 14:26:46
585	50	82	44	2025-05-28 08:20:55	2025-05-28 08:49:07
568	50	136	66	2025-05-28 08:20:55	2025-05-28 08:48:58
586	50	83	44	2025-05-28 08:20:55	2025-05-28 08:49:07
590	50	90	44	2025-05-28 08:20:55	2025-05-28 08:49:07
591	50	91	55	2025-05-28 08:20:55	2025-05-28 08:49:07
593	50	105	55	2025-05-28 08:20:55	2025-05-28 08:49:07
596	50	108	55	2025-05-28 08:20:55	2025-05-28 08:49:07
577	50	94	66	2025-05-28 08:20:55	2025-05-28 08:48:58
549	50	55	55	2025-05-28 08:20:55	2025-05-28 14:26:46
599	50	111	55	2025-05-28 08:20:55	2025-05-28 08:49:07
600	50	112	55	2025-05-28 08:20:55	2025-05-28 08:49:07
581	50	101	66	2025-05-28 08:20:55	2025-05-28 08:48:58
553	50	61	44	2025-05-28 08:20:55	2025-05-28 14:26:46
583	50	80	55	2025-05-28 08:20:55	2025-05-28 08:48:58
584	50	81	55	2025-05-28 08:20:55	2025-05-28 08:48:58
565	50	176	77	2025-05-28 08:20:55	2025-05-28 14:26:46
604	50	144	55	2025-05-28 08:20:55	2025-05-28 08:49:07
606	50	150	55	2025-05-28 08:20:55	2025-05-28 08:49:07
588	50	87	55	2025-05-28 08:20:55	2025-05-28 08:48:58
589	50	89	55	2025-05-28 08:20:55	2025-05-28 08:48:58
566	50	132	77	2025-05-28 08:20:55	2025-05-28 14:26:46
576	179	50	66	2025-05-28 08:20:55	2025-05-28 10:05:16
571	50	168	44	2025-05-28 08:20:55	2025-05-28 14:26:46
594	50	106	77	2025-05-28 08:20:55	2025-05-28 08:48:58
595	50	107	66	2025-05-28 08:20:55	2025-05-28 08:48:58
555	50	64	66	2025-05-28 08:20:55	2025-05-28 14:26:46
597	50	109	77	2025-05-28 08:20:55	2025-05-28 08:48:58
598	50	110	66	2025-05-28 08:20:55	2025-05-28 08:48:58
573	50	171	66	2025-05-28 08:20:55	2025-05-28 14:26:46
578	50	95	77	2025-05-28 08:20:55	2025-05-28 14:26:46
602	50	118	66	2025-05-28 08:20:55	2025-05-28 08:48:58
603	50	121	66	2025-05-28 08:20:55	2025-05-28 08:48:58
582	50	103	66	2025-05-28 08:20:55	2025-05-28 14:26:46
605	50	146	66	2025-05-28 08:20:55	2025-05-28 08:48:58
592	50	92	55	2025-05-28 08:20:55	2025-05-28 14:26:46
607	50	151	66	2025-05-28 08:20:55	2025-05-28 08:48:58
551	50	59	44	2025-05-28 08:20:55	2025-05-28 08:49:06
552	50	60	44	2025-05-28 08:20:55	2025-05-28 08:49:06
561	50	166	77	2025-05-28 08:20:55	2025-05-28 08:49:06
563	50	77	44	2025-05-28 08:20:55	2025-05-28 08:49:06
564	50	130	66	2025-05-28 08:20:55	2025-05-28 08:49:06
558	50	73	66	2025-05-28 08:20:55	2025-05-28 14:26:46
567	50	134	55	2025-05-28 08:20:55	2025-05-28 08:49:06
569	50	137	66	2025-05-28 08:20:55	2025-05-28 08:49:06
587	50	84	44	2025-05-28 08:20:55	2025-05-28 08:49:07
620	189	124	77	2025-05-28 17:42:58	2025-05-28 17:42:58
621	189	125	77	2025-05-28 17:42:58	2025-05-28 17:42:58
627	189	50	88	2025-05-28 17:42:58	2025-05-28 17:42:58
611	189	56	66	2025-05-28 17:42:58	2025-05-28 17:43:10
612	189	58	55	2025-05-28 17:42:58	2025-05-28 17:43:10
613	189	63	77	2025-05-28 17:42:58	2025-05-28 17:43:10
614	189	66	55	2025-05-28 17:42:58	2025-05-28 17:43:10
616	189	68	55	2025-05-28 17:42:58	2025-05-28 17:43:10
617	189	69	66	2025-05-28 17:42:58	2025-05-28 17:43:10
618	189	70	55	2025-05-28 17:42:58	2025-05-28 17:43:10
619	189	71	66	2025-05-28 17:42:58	2025-05-28 17:43:10
622	189	128	66	2025-05-28 17:42:58	2025-05-28 17:43:10
623	189	75	55	2025-05-28 17:42:58	2025-05-28 17:43:10
624	189	76	55	2025-05-28 17:42:58	2025-05-28 17:43:10
625	189	78	55	2025-05-28 17:42:58	2025-05-28 17:43:10
626	189	129	66	2025-05-28 17:42:58	2025-05-28 17:43:10
575	50	179	44	2025-05-28 08:20:55	2025-05-29 18:10:55
628	50	189	44	2025-05-28 17:42:58	2025-05-28 17:42:58
629	189	131	77	2025-05-28 17:42:58	2025-05-28 17:42:58
631	189	135	77	2025-05-28 17:42:58	2025-05-28 17:42:58
632	189	142	77	2025-05-28 17:42:58	2025-05-28 17:42:58
635	189	99	77	2025-05-28 17:42:58	2025-05-28 17:42:58
636	189	100	88	2025-05-28 17:42:58	2025-05-28 17:42:58
637	189	102	77	2025-05-28 17:42:58	2025-05-28 17:42:58
643	189	104	77	2025-05-28 17:42:58	2025-05-28 17:42:58
646	189	115	77	2025-05-28 17:42:58	2025-05-28 17:42:58
650	189	122	77	2025-05-28 17:42:58	2025-05-28 17:42:58
652	189	145	88	2025-05-28 17:42:58	2025-05-28 17:42:58
654	189	139	77	2025-05-28 17:42:58	2025-05-28 17:42:58
656	189	141	77	2025-05-28 17:42:58	2025-05-28 17:42:58
658	189	148	77	2025-05-28 17:42:58	2025-05-28 17:42:58
660	189	152	77	2025-05-28 17:42:58	2025-05-28 17:42:58
661	189	153	77	2025-05-28 17:42:58	2025-05-28 17:42:58
663	173	189	55	2025-05-28 17:42:58	2025-05-28 17:42:58
610	189	165	77	2025-05-28 17:42:58	2025-05-28 17:43:10
615	189	67	66	2025-05-28 17:42:58	2025-05-28 17:43:10
630	189	133	66	2025-05-28 17:42:58	2025-05-28 17:43:10
633	189	177	88	2025-05-28 17:42:58	2025-05-28 17:43:10
634	189	97	66	2025-05-28 17:42:58	2025-05-28 17:43:10
638	189	79	66	2025-05-28 17:42:58	2025-05-28 17:43:10
639	189	85	55	2025-05-28 17:42:58	2025-05-28 17:43:10
640	189	86	66	2025-05-28 17:42:58	2025-05-28 17:43:10
641	189	88	55	2025-05-28 17:42:58	2025-05-28 17:43:10
642	189	93	55	2025-05-28 17:42:58	2025-05-28 17:43:10
644	189	113	66	2025-05-28 17:42:58	2025-05-28 17:43:10
645	189	114	66	2025-05-28 17:42:58	2025-05-28 17:43:10
647	189	117	77	2025-05-28 17:42:58	2025-05-28 17:43:10
648	189	119	66	2025-05-28 17:42:58	2025-05-28 17:43:10
649	189	120	66	2025-05-28 17:42:58	2025-05-28 17:43:10
651	189	123	66	2025-05-28 17:42:58	2025-05-28 17:43:10
653	189	143	66	2025-05-28 17:42:58	2025-05-28 17:43:10
655	189	140	66	2025-05-28 17:42:58	2025-05-28 17:43:10
657	189	147	66	2025-05-28 17:42:58	2025-05-28 17:43:10
659	189	149	66	2025-05-28 17:42:58	2025-05-28 17:43:10
662	189	173	66	2025-05-28 17:42:58	2025-05-28 17:43:10
664	191	174	88	2025-05-28 17:52:07	2025-05-28 17:52:07
665	174	191	44	2025-05-28 17:52:07	2025-05-28 17:52:07
666	191	181	100	2025-05-28 17:52:07	2025-05-28 17:52:07
667	191	55	88	2025-05-28 17:52:07	2025-05-28 17:52:07
668	191	57	88	2025-05-28 17:52:07	2025-05-28 17:52:07
669	191	59	88	2025-05-28 17:52:07	2025-05-28 17:52:07
670	191	60	88	2025-05-28 17:52:07	2025-05-28 17:52:07
671	191	61	88	2025-05-28 17:52:07	2025-05-28 17:52:07
672	191	62	88	2025-05-28 17:52:07	2025-05-28 17:52:07
673	191	64	88	2025-05-28 17:52:07	2025-05-28 17:52:07
674	191	65	88	2025-05-28 17:52:07	2025-05-28 17:52:07
675	191	72	88	2025-05-28 17:52:07	2025-05-28 17:52:07
676	191	73	88	2025-05-28 17:52:07	2025-05-28 17:52:07
677	191	126	100	2025-05-28 17:52:07	2025-05-28 17:52:07
678	191	127	100	2025-05-28 17:52:07	2025-05-28 17:52:07
679	191	166	100	2025-05-28 17:52:07	2025-05-28 17:52:07
680	191	74	88	2025-05-28 17:52:07	2025-05-28 17:52:07
681	191	77	88	2025-05-28 17:52:07	2025-05-28 17:52:07
682	191	130	100	2025-05-28 17:52:07	2025-05-28 17:52:07
683	191	176	88	2025-05-28 17:52:07	2025-05-28 17:52:07
684	191	132	100	2025-05-28 17:52:07	2025-05-28 17:52:07
685	191	134	100	2025-05-28 17:52:07	2025-05-28 17:52:07
686	191	136	100	2025-05-28 17:52:07	2025-05-28 17:52:07
687	191	137	100	2025-05-28 17:52:07	2025-05-28 17:52:07
688	191	138	100	2025-05-28 17:52:07	2025-05-28 17:52:07
689	191	168	88	2025-05-28 17:52:07	2025-05-28 17:52:07
690	168	191	88	2025-05-28 17:52:07	2025-05-28 17:52:07
691	191	189	100	2025-05-28 17:52:07	2025-05-28 17:52:07
692	189	191	55	2025-05-28 17:52:07	2025-05-28 17:52:07
693	191	171	88	2025-05-28 17:52:07	2025-05-28 17:52:07
694	171	191	44	2025-05-28 17:52:07	2025-05-28 17:52:07
696	191	94	100	2025-05-28 17:52:07	2025-05-28 17:52:07
697	191	95	100	2025-05-28 17:52:07	2025-05-28 17:52:07
698	191	96	100	2025-05-28 17:52:07	2025-05-28 17:52:07
699	191	98	100	2025-05-28 17:52:07	2025-05-28 17:52:07
700	191	101	100	2025-05-28 17:52:07	2025-05-28 17:52:07
701	191	103	100	2025-05-28 17:52:07	2025-05-28 17:52:07
702	191	80	88	2025-05-28 17:52:07	2025-05-28 17:52:07
703	191	81	88	2025-05-28 17:52:07	2025-05-28 17:52:07
704	191	82	88	2025-05-28 17:52:07	2025-05-28 17:52:07
705	191	83	88	2025-05-28 17:52:07	2025-05-28 17:52:07
706	191	84	88	2025-05-28 17:52:07	2025-05-28 17:52:07
707	191	87	88	2025-05-28 17:52:07	2025-05-28 17:52:07
708	191	89	88	2025-05-28 17:52:07	2025-05-28 17:52:07
709	191	90	88	2025-05-28 17:52:07	2025-05-28 17:52:07
710	191	91	88	2025-05-28 17:52:07	2025-05-28 17:52:07
711	191	92	88	2025-05-28 17:52:07	2025-05-28 17:52:07
712	191	105	100	2025-05-28 17:52:07	2025-05-28 17:52:07
713	191	106	100	2025-05-28 17:52:07	2025-05-28 17:52:07
714	191	107	100	2025-05-28 17:52:07	2025-05-28 17:52:07
715	191	108	100	2025-05-28 17:52:07	2025-05-28 17:52:07
716	191	109	100	2025-05-28 17:52:07	2025-05-28 17:52:07
717	191	110	100	2025-05-28 17:52:07	2025-05-28 17:52:07
718	191	111	100	2025-05-28 17:52:07	2025-05-28 17:52:07
719	191	112	100	2025-05-28 17:52:07	2025-05-28 17:52:07
720	191	116	100	2025-05-28 17:52:07	2025-05-28 17:52:07
721	191	118	100	2025-05-28 17:52:07	2025-05-28 17:52:07
722	191	121	100	2025-05-28 17:52:07	2025-05-28 17:52:07
723	191	144	100	2025-05-28 17:52:07	2025-05-28 17:52:07
724	191	146	100	2025-05-28 17:52:07	2025-05-28 17:52:07
725	191	150	100	2025-05-28 17:52:07	2025-05-28 17:52:07
726	191	151	100	2025-05-28 17:52:07	2025-05-28 17:52:07
727	191	53	100	2025-05-28 17:52:07	2025-05-28 17:52:07
728	192	54	100	2025-05-28 17:54:29	2025-05-28 17:54:29
729	192	165	100	2025-05-28 17:54:29	2025-05-28 17:54:29
730	192	56	88	2025-05-28 17:54:29	2025-05-28 17:54:29
731	192	58	88	2025-05-28 17:54:29	2025-05-28 17:54:29
732	192	63	88	2025-05-28 17:54:29	2025-05-28 17:54:29
733	192	66	88	2025-05-28 17:54:29	2025-05-28 17:54:29
734	192	67	88	2025-05-28 17:54:29	2025-05-28 17:54:29
735	192	68	88	2025-05-28 17:54:29	2025-05-28 17:54:29
736	192	69	88	2025-05-28 17:54:29	2025-05-28 17:54:29
737	192	70	88	2025-05-28 17:54:29	2025-05-28 17:54:29
738	192	71	88	2025-05-28 17:54:29	2025-05-28 17:54:29
739	192	124	100	2025-05-28 17:54:29	2025-05-28 17:54:29
740	192	125	100	2025-05-28 17:54:29	2025-05-28 17:54:29
741	192	128	100	2025-05-28 17:54:29	2025-05-28 17:54:29
742	192	75	88	2025-05-28 17:54:29	2025-05-28 17:54:29
743	192	76	88	2025-05-28 17:54:29	2025-05-28 17:54:29
744	192	78	88	2025-05-28 17:54:29	2025-05-28 17:54:29
745	192	129	100	2025-05-28 17:54:29	2025-05-28 17:54:29
747	50	192	44	2025-05-28 17:54:29	2025-05-28 17:54:29
748	192	131	100	2025-05-28 17:54:29	2025-05-28 17:54:29
749	192	133	100	2025-05-28 17:54:29	2025-05-28 17:54:29
750	192	135	100	2025-05-28 17:54:29	2025-05-28 17:54:29
751	192	142	100	2025-05-28 17:54:29	2025-05-28 17:54:29
752	192	177	88	2025-05-28 17:54:29	2025-05-28 17:54:29
755	192	97	100	2025-05-28 17:54:29	2025-05-28 17:54:29
756	192	99	100	2025-05-28 17:54:29	2025-05-28 17:54:29
757	192	100	100	2025-05-28 17:54:29	2025-05-28 17:54:29
758	192	102	100	2025-05-28 17:54:29	2025-05-28 17:54:29
759	192	79	88	2025-05-28 17:54:29	2025-05-28 17:54:29
760	192	85	88	2025-05-28 17:54:29	2025-05-28 17:54:29
761	192	86	88	2025-05-28 17:54:29	2025-05-28 17:54:29
762	192	88	88	2025-05-28 17:54:29	2025-05-28 17:54:29
763	192	93	88	2025-05-28 17:54:29	2025-05-28 17:54:29
764	192	104	100	2025-05-28 17:54:29	2025-05-28 17:54:29
765	192	113	100	2025-05-28 17:54:29	2025-05-28 17:54:29
766	192	114	100	2025-05-28 17:54:29	2025-05-28 17:54:29
767	192	115	100	2025-05-28 17:54:29	2025-05-28 17:54:29
768	192	117	100	2025-05-28 17:54:29	2025-05-28 17:54:29
769	192	119	100	2025-05-28 17:54:29	2025-05-28 17:54:29
770	192	120	100	2025-05-28 17:54:29	2025-05-28 17:54:29
771	192	122	100	2025-05-28 17:54:29	2025-05-28 17:54:29
772	192	123	100	2025-05-28 17:54:29	2025-05-28 17:54:29
773	192	145	100	2025-05-28 17:54:29	2025-05-28 17:54:29
774	192	143	100	2025-05-28 17:54:29	2025-05-28 17:54:29
775	192	139	100	2025-05-28 17:54:29	2025-05-28 17:54:29
776	192	140	100	2025-05-28 17:54:29	2025-05-28 17:54:29
777	192	141	100	2025-05-28 17:54:29	2025-05-28 17:54:29
778	192	147	100	2025-05-28 17:54:29	2025-05-28 17:54:29
779	192	148	100	2025-05-28 17:54:29	2025-05-28 17:54:29
780	192	149	100	2025-05-28 17:54:29	2025-05-28 17:54:29
781	192	152	100	2025-05-28 17:54:29	2025-05-28 17:54:29
782	192	153	100	2025-05-28 17:54:29	2025-05-28 17:54:29
783	192	173	88	2025-05-28 17:54:29	2025-05-28 17:54:29
784	173	192	55	2025-05-28 17:54:29	2025-05-28 17:54:29
785	193	54	77	2025-05-29 07:34:14	2025-05-29 07:34:14
786	193	165	77	2025-05-29 07:34:14	2025-05-29 07:34:14
796	193	124	88	2025-05-29 07:34:14	2025-05-29 07:34:14
797	193	125	77	2025-05-29 07:34:14	2025-05-29 07:34:14
798	193	128	88	2025-05-29 07:34:14	2025-05-29 07:34:14
802	193	129	77	2025-05-29 07:34:14	2025-05-29 07:34:14
803	193	50	88	2025-05-29 07:34:14	2025-05-29 07:34:14
804	50	193	44	2025-05-29 07:34:14	2025-05-29 07:34:14
805	193	131	88	2025-05-29 07:34:14	2025-05-29 07:34:14
806	193	133	88	2025-05-29 07:34:14	2025-05-29 07:34:14
807	193	135	77	2025-05-29 07:34:14	2025-05-29 07:34:14
808	193	142	77	2025-05-29 07:34:14	2025-05-29 07:34:14
810	193	191	77	2025-05-29 07:34:14	2025-05-29 07:34:14
811	191	193	88	2025-05-29 07:34:14	2025-05-29 07:34:14
812	193	97	77	2025-05-29 07:34:14	2025-05-29 07:34:14
813	193	99	88	2025-05-29 07:34:14	2025-05-29 07:34:14
814	193	100	77	2025-05-29 07:34:14	2025-05-29 07:34:14
815	193	102	77	2025-05-29 07:34:14	2025-05-29 07:34:14
821	193	104	77	2025-05-29 07:34:14	2025-05-29 07:34:14
822	193	113	77	2025-05-29 07:34:14	2025-05-29 07:34:14
823	193	114	77	2025-05-29 07:34:14	2025-05-29 07:34:14
824	193	115	88	2025-05-29 07:34:14	2025-05-29 07:34:14
825	193	117	77	2025-05-29 07:34:14	2025-05-29 07:34:14
826	193	119	77	2025-05-29 07:34:14	2025-05-29 07:34:14
827	193	120	88	2025-05-29 07:34:14	2025-05-29 07:34:14
828	193	122	88	2025-05-29 07:34:14	2025-05-29 07:34:14
829	193	123	77	2025-05-29 07:34:14	2025-05-29 07:34:14
830	193	145	77	2025-05-29 07:34:14	2025-05-29 07:34:14
831	193	143	88	2025-05-29 07:34:14	2025-05-29 07:34:14
832	193	139	77	2025-05-29 07:34:14	2025-05-29 07:34:14
833	193	140	77	2025-05-29 07:34:14	2025-05-29 07:34:14
834	193	141	88	2025-05-29 07:34:14	2025-05-29 07:34:14
835	193	147	77	2025-05-29 07:34:14	2025-05-29 07:34:14
836	193	148	77	2025-05-29 07:34:14	2025-05-29 07:34:14
837	193	149	77	2025-05-29 07:34:14	2025-05-29 07:34:14
838	193	152	77	2025-05-29 07:34:14	2025-05-29 07:34:14
788	193	58	77	2025-05-29 07:34:14	2025-05-29 07:35:04
789	193	63	66	2025-05-29 07:34:14	2025-05-29 07:35:04
790	193	66	66	2025-05-29 07:34:14	2025-05-29 07:35:04
791	193	67	66	2025-05-29 07:34:14	2025-05-29 07:35:04
792	193	68	66	2025-05-29 07:34:14	2025-05-29 07:35:04
793	193	69	66	2025-05-29 07:34:14	2025-05-29 07:35:04
794	193	70	66	2025-05-29 07:34:14	2025-05-29 07:35:04
795	193	71	66	2025-05-29 07:34:14	2025-05-29 07:35:04
799	193	75	66	2025-05-29 07:34:14	2025-05-29 07:35:04
801	193	78	77	2025-05-29 07:34:14	2025-05-29 07:35:04
809	193	177	66	2025-05-29 07:34:14	2025-05-29 07:35:04
816	193	79	66	2025-05-29 07:34:14	2025-05-29 07:35:04
817	193	85	77	2025-05-29 07:34:14	2025-05-29 07:35:04
818	193	86	77	2025-05-29 07:34:14	2025-05-29 07:35:04
819	193	88	77	2025-05-29 07:34:14	2025-05-29 07:35:04
820	193	93	66	2025-05-29 07:34:14	2025-05-29 07:35:04
839	193	153	77	2025-05-29 07:34:14	2025-05-29 07:34:14
841	173	193	55	2025-05-29 07:34:14	2025-05-29 07:34:14
787	193	56	66	2025-05-29 07:34:14	2025-05-29 07:35:04
800	193	76	66	2025-05-29 07:34:14	2025-05-29 07:35:04
840	193	173	66	2025-05-29 07:34:14	2025-05-29 07:35:04
843	174	194	44	2025-05-29 08:26:09	2025-05-29 08:26:09
844	194	181	66	2025-05-29 08:26:09	2025-05-29 08:26:09
845	194	193	55	2025-05-29 08:26:09	2025-05-29 08:26:09
846	193	194	66	2025-05-29 08:26:09	2025-05-29 08:26:09
857	194	126	55	2025-05-29 08:26:09	2025-05-29 08:26:09
858	194	127	55	2025-05-29 08:26:09	2025-05-29 08:26:09
859	194	166	66	2025-05-29 08:26:09	2025-05-29 08:26:09
860	194	74	55	2025-05-29 08:26:09	2025-05-29 08:26:09
861	194	77	55	2025-05-29 08:26:09	2025-05-29 08:26:09
862	194	130	66	2025-05-29 08:26:09	2025-05-29 08:26:09
864	194	132	55	2025-05-29 08:26:09	2025-05-29 08:26:09
865	194	134	66	2025-05-29 08:26:09	2025-05-29 08:26:09
866	194	136	55	2025-05-29 08:26:09	2025-05-29 08:26:09
867	194	137	66	2025-05-29 08:26:09	2025-05-29 08:26:09
868	194	138	77	2025-05-29 08:26:09	2025-05-29 08:26:09
870	168	194	88	2025-05-29 08:26:09	2025-05-29 08:26:09
754	191	192	66	2025-05-28 17:54:29	2025-11-17 15:32:36
871	194	189	55	2025-05-29 08:26:09	2025-05-29 08:26:09
872	189	194	55	2025-05-29 08:26:09	2025-05-29 08:26:09
874	171	194	44	2025-05-29 08:26:09	2025-05-29 08:26:09
876	194	94	55	2025-05-29 08:26:09	2025-05-29 08:26:09
877	194	95	55	2025-05-29 08:26:09	2025-05-29 08:26:09
878	194	96	55	2025-05-29 08:26:09	2025-05-29 08:26:09
879	194	98	66	2025-05-29 08:26:09	2025-05-29 08:26:09
880	194	101	55	2025-05-29 08:26:09	2025-05-29 08:26:09
881	194	103	55	2025-05-29 08:26:09	2025-05-29 08:26:09
882	194	80	55	2025-05-29 08:26:10	2025-05-29 08:26:10
883	194	81	66	2025-05-29 08:26:10	2025-05-29 08:26:10
884	194	82	55	2025-05-29 08:26:10	2025-05-29 08:26:10
885	194	83	55	2025-05-29 08:26:10	2025-05-29 08:26:10
886	194	84	55	2025-05-29 08:26:10	2025-05-29 08:26:10
887	194	87	55	2025-05-29 08:26:10	2025-05-29 08:26:10
888	194	89	55	2025-05-29 08:26:10	2025-05-29 08:26:10
889	194	90	66	2025-05-29 08:26:10	2025-05-29 08:26:10
890	194	91	55	2025-05-29 08:26:10	2025-05-29 08:26:10
891	194	92	55	2025-05-29 08:26:10	2025-05-29 08:26:10
892	194	105	55	2025-05-29 08:26:10	2025-05-29 08:26:10
893	194	106	77	2025-05-29 08:26:10	2025-05-29 08:26:10
894	194	107	55	2025-05-29 08:26:10	2025-05-29 08:26:10
895	194	108	55	2025-05-29 08:26:10	2025-05-29 08:26:10
896	194	109	66	2025-05-29 08:26:10	2025-05-29 08:26:10
897	194	110	55	2025-05-29 08:26:10	2025-05-29 08:26:10
898	194	111	55	2025-05-29 08:26:10	2025-05-29 08:26:10
899	194	112	55	2025-05-29 08:26:10	2025-05-29 08:26:10
900	194	116	55	2025-05-29 08:26:10	2025-05-29 08:26:10
901	194	118	55	2025-05-29 08:26:10	2025-05-29 08:26:10
902	194	121	66	2025-05-29 08:26:10	2025-05-29 08:26:10
903	194	144	55	2025-05-29 08:26:10	2025-05-29 08:26:10
904	194	146	55	2025-05-29 08:26:10	2025-05-29 08:26:10
905	194	150	55	2025-05-29 08:26:10	2025-05-29 08:26:10
906	194	151	55	2025-05-29 08:26:10	2025-05-29 08:26:10
907	194	53	66	2025-05-29 08:26:10	2025-05-29 08:26:10
909	192	194	88	2025-05-29 08:26:10	2025-05-29 08:26:10
842	194	174	55	2025-05-29 08:26:09	2025-05-29 08:26:32
847	194	55	44	2025-05-29 08:26:09	2025-05-29 08:26:32
848	194	57	44	2025-05-29 08:26:09	2025-05-29 08:26:32
849	194	59	44	2025-05-29 08:26:09	2025-05-29 08:26:32
850	194	60	44	2025-05-29 08:26:09	2025-05-29 08:26:32
851	194	61	44	2025-05-29 08:26:09	2025-05-29 08:26:32
852	194	62	44	2025-05-29 08:26:09	2025-05-29 08:26:32
853	194	64	44	2025-05-29 08:26:09	2025-05-29 08:26:32
854	194	65	44	2025-05-29 08:26:09	2025-05-29 08:26:32
855	194	72	44	2025-05-29 08:26:09	2025-05-29 08:26:32
856	194	73	44	2025-05-29 08:26:09	2025-05-29 08:26:32
863	194	176	55	2025-05-29 08:26:09	2025-05-29 08:26:32
869	194	168	44	2025-05-29 08:26:09	2025-05-29 08:26:32
873	194	171	55	2025-05-29 08:26:09	2025-05-29 08:26:32
911	174	195	44	2025-05-29 08:29:33	2025-05-29 08:29:33
912	195	181	55	2025-05-29 08:29:33	2025-05-29 08:29:33
913	195	193	55	2025-05-29 08:29:33	2025-05-29 08:29:33
914	193	195	66	2025-05-29 08:29:33	2025-05-29 08:29:33
915	195	55	44	2025-05-29 08:29:33	2025-05-29 08:29:33
916	195	57	44	2025-05-29 08:29:33	2025-05-29 08:29:33
917	195	59	44	2025-05-29 08:29:33	2025-05-29 08:29:33
918	195	60	44	2025-05-29 08:29:33	2025-05-29 08:29:33
919	195	61	44	2025-05-29 08:29:33	2025-05-29 08:29:33
920	195	62	44	2025-05-29 08:29:33	2025-05-29 08:29:33
922	195	65	44	2025-05-29 08:29:33	2025-05-29 08:29:33
923	195	72	44	2025-05-29 08:29:34	2025-05-29 08:29:34
925	195	126	44	2025-05-29 08:29:34	2025-05-29 08:29:34
926	195	127	44	2025-05-29 08:29:34	2025-05-29 08:29:34
927	195	166	55	2025-05-29 08:29:34	2025-05-29 08:29:34
929	195	77	44	2025-05-29 08:29:34	2025-05-29 08:29:34
930	195	130	55	2025-05-29 08:29:34	2025-05-29 08:29:34
932	195	132	55	2025-05-29 08:29:34	2025-05-29 08:29:34
933	195	134	44	2025-05-29 08:29:34	2025-05-29 08:29:34
934	195	136	55	2025-05-29 08:29:34	2025-05-29 08:29:34
935	195	137	55	2025-05-29 08:29:34	2025-05-29 08:29:34
936	195	138	55	2025-05-29 08:29:34	2025-05-29 08:29:34
937	195	168	44	2025-05-29 08:29:34	2025-05-29 08:29:34
938	168	195	88	2025-05-29 08:29:34	2025-05-29 08:29:34
939	195	189	44	2025-05-29 08:29:34	2025-05-29 08:29:34
940	189	195	55	2025-05-29 08:29:34	2025-05-29 08:29:34
942	171	195	44	2025-05-29 08:29:34	2025-05-29 08:29:34
921	195	64	44	2025-05-29 08:29:33	2025-05-29 08:30:08
924	195	73	44	2025-05-29 08:29:34	2025-05-29 08:30:08
928	195	74	44	2025-05-29 08:29:34	2025-05-29 08:30:08
931	195	176	55	2025-05-29 08:29:34	2025-05-29 08:30:08
941	195	171	44	2025-05-29 08:29:34	2025-05-29 08:30:08
875	194	179	44	2025-05-29 08:26:09	2025-05-29 18:10:55
943	195	179	66	2025-05-29 08:29:34	2025-05-29 08:29:34
944	195	94	44	2025-05-29 08:29:34	2025-05-29 08:29:34
945	195	95	55	2025-05-29 08:29:34	2025-05-29 08:29:34
946	195	96	44	2025-05-29 08:29:34	2025-05-29 08:29:34
947	195	98	66	2025-05-29 08:29:34	2025-05-29 08:29:34
948	195	101	44	2025-05-29 08:29:34	2025-05-29 08:29:34
949	195	103	44	2025-05-29 08:29:34	2025-05-29 08:29:34
950	195	80	44	2025-05-29 08:29:34	2025-05-29 08:29:34
951	195	81	44	2025-05-29 08:29:34	2025-05-29 08:29:34
952	195	82	44	2025-05-29 08:29:34	2025-05-29 08:29:34
954	195	84	44	2025-05-29 08:29:34	2025-05-29 08:29:34
955	195	87	44	2025-05-29 08:29:34	2025-05-29 08:29:34
956	195	89	44	2025-05-29 08:29:34	2025-05-29 08:29:34
957	195	90	44	2025-05-29 08:29:34	2025-05-29 08:29:34
958	195	91	44	2025-05-29 08:29:34	2025-05-29 08:29:34
959	195	92	44	2025-05-29 08:29:34	2025-05-29 08:29:34
960	195	105	44	2025-05-29 08:29:34	2025-05-29 08:29:34
961	195	106	55	2025-05-29 08:29:34	2025-05-29 08:29:34
962	195	107	44	2025-05-29 08:29:34	2025-05-29 08:29:34
963	195	108	44	2025-05-29 08:29:34	2025-05-29 08:29:34
964	195	109	55	2025-05-29 08:29:34	2025-05-29 08:29:34
965	195	110	44	2025-05-29 08:29:34	2025-05-29 08:29:34
966	195	111	44	2025-05-29 08:29:34	2025-05-29 08:29:34
967	195	112	44	2025-05-29 08:29:34	2025-05-29 08:29:34
968	195	116	55	2025-05-29 08:29:34	2025-05-29 08:29:34
969	195	118	44	2025-05-29 08:29:34	2025-05-29 08:29:34
970	195	121	44	2025-05-29 08:29:34	2025-05-29 08:29:34
971	195	144	44	2025-05-29 08:29:34	2025-05-29 08:29:34
972	195	146	44	2025-05-29 08:29:34	2025-05-29 08:29:34
973	195	150	55	2025-05-29 08:29:34	2025-05-29 08:29:34
974	195	151	44	2025-05-29 08:29:34	2025-05-29 08:29:34
975	195	53	55	2025-05-29 08:29:34	2025-05-29 08:29:34
976	195	192	44	2025-05-29 08:29:34	2025-05-29 08:29:34
910	195	174	44	2025-05-29 08:29:33	2025-05-29 08:30:08
953	195	83	44	2025-05-29 08:29:34	2025-05-29 08:30:08
979	174	196	44	2025-05-29 08:40:59	2025-05-29 08:40:59
980	196	181	88	2025-05-29 08:40:59	2025-05-29 08:40:59
981	196	193	88	2025-05-29 08:40:59	2025-05-29 08:40:59
982	193	196	66	2025-05-29 08:40:59	2025-05-29 08:40:59
993	196	126	77	2025-05-29 08:40:59	2025-05-29 08:40:59
994	196	127	77	2025-05-29 08:40:59	2025-05-29 08:40:59
995	196	166	88	2025-05-29 08:40:59	2025-05-29 08:40:59
998	196	130	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1000	196	132	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1001	196	134	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1002	196	136	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1003	196	137	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1004	196	138	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1006	168	196	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1007	196	189	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1008	189	196	55	2025-05-29 08:40:59	2025-05-29 08:40:59
1010	171	196	44	2025-05-29 08:40:59	2025-05-29 08:40:59
1012	196	94	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1013	196	95	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1014	196	96	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1015	196	98	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1016	196	101	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1017	196	103	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1028	196	105	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1029	196	106	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1030	196	107	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1031	196	108	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1032	196	109	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1033	196	110	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1034	196	111	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1035	196	112	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1036	196	116	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1037	196	118	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1038	196	121	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1039	196	144	88	2025-05-29 08:40:59	2025-05-29 08:40:59
1040	196	146	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1041	196	150	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1042	196	151	77	2025-05-29 08:40:59	2025-05-29 08:40:59
1043	196	53	88	2025-05-29 08:40:59	2025-05-29 08:40:59
978	196	174	77	2025-05-29 08:40:59	2025-05-29 08:41:14
983	196	55	77	2025-05-29 08:40:59	2025-05-29 08:41:14
984	196	57	66	2025-05-29 08:40:59	2025-05-29 08:41:14
985	196	59	66	2025-05-29 08:40:59	2025-05-29 08:41:14
986	196	60	66	2025-05-29 08:40:59	2025-05-29 08:41:14
987	196	61	66	2025-05-29 08:40:59	2025-05-29 08:41:14
988	196	62	66	2025-05-29 08:40:59	2025-05-29 08:41:14
989	196	64	77	2025-05-29 08:40:59	2025-05-29 08:41:14
990	196	65	66	2025-05-29 08:40:59	2025-05-29 08:41:14
991	196	72	66	2025-05-29 08:40:59	2025-05-29 08:41:14
992	196	73	77	2025-05-29 08:40:59	2025-05-29 08:41:14
996	196	74	66	2025-05-29 08:40:59	2025-05-29 08:41:14
997	196	77	66	2025-05-29 08:40:59	2025-05-29 08:41:14
999	196	176	77	2025-05-29 08:40:59	2025-05-29 08:41:14
1005	196	168	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1009	196	171	77	2025-05-29 08:40:59	2025-05-29 08:41:14
1018	196	80	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1019	196	81	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1020	196	82	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1021	196	83	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1022	196	84	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1023	196	87	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1024	196	89	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1025	196	90	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1026	196	91	66	2025-05-29 08:40:59	2025-05-29 08:41:14
1027	196	92	77	2025-05-29 08:40:59	2025-05-29 08:41:14
1046	197	174	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1047	174	197	44	2025-05-29 17:27:21	2025-05-29 17:27:21
1048	197	181	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1049	197	193	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1050	193	197	66	2025-05-29 17:27:21	2025-05-29 17:27:21
1051	197	55	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1052	197	57	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1053	197	59	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1054	197	60	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1055	197	61	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1056	197	62	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1057	197	64	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1058	197	65	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1059	197	72	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1060	197	73	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1061	197	126	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1062	197	127	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1063	197	166	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1064	197	74	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1065	197	77	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1066	197	130	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1067	197	176	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1068	197	132	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1069	197	134	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1070	197	136	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1071	197	137	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1072	197	138	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1045	192	196	55	2025-05-29 08:40:59	2025-11-17 15:32:36
1044	196	192	44	2025-05-29 08:40:59	2025-11-17 15:32:36
15583	325	229	100	2025-12-22 17:20:12	2025-12-22 17:20:12
1073	197	168	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1074	168	197	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1075	197	189	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1076	189	197	55	2025-05-29 17:27:21	2025-05-29 17:27:21
1077	197	171	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1078	171	197	44	2025-05-29 17:27:21	2025-05-29 17:27:21
1080	197	94	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1081	197	95	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1082	197	96	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1083	197	98	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1084	197	101	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1085	197	103	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1086	197	80	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1087	197	81	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1088	197	82	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1089	197	83	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1090	197	84	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1091	197	87	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1092	197	89	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1093	197	90	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1094	197	91	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1095	197	92	88	2025-05-29 17:27:21	2025-05-29 17:27:21
1096	197	105	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1097	197	106	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1098	197	107	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1099	197	108	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1100	197	109	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1101	197	110	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1102	197	111	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1103	197	112	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1104	197	116	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1105	197	118	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1106	197	121	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1107	197	144	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1108	197	146	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1109	197	150	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1110	197	151	100	2025-05-29 17:27:21	2025-05-29 17:27:21
1111	197	53	100	2025-05-29 17:27:21	2025-05-29 17:27:21
15215	318	241	77	2025-12-17 06:58:24	2025-12-17 07:57:15
1114	179	197	44	2025-05-29 18:10:55	2025-05-29 18:10:55
1079	197	179	88	2025-05-29 17:27:21	2025-05-29 18:10:55
1115	179	194	44	2025-05-29 18:10:55	2025-05-29 18:10:55
1116	179	195	66	2025-05-29 18:10:55	2025-05-29 18:10:55
1117	179	191	44	2025-05-29 18:10:55	2025-05-29 18:10:55
695	191	179	88	2025-05-28 17:52:07	2025-05-29 18:10:55
1118	179	196	66	2025-05-29 18:10:55	2025-05-29 18:10:55
1011	196	179	66	2025-05-29 08:40:59	2025-05-29 18:10:55
1120	174	200	44	2025-05-30 11:28:50	2025-05-30 11:28:50
1124	200	55	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1125	200	57	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1126	200	59	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1127	200	60	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1128	200	61	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1129	61	200	44	2025-05-30 11:28:50	2025-05-30 11:28:50
1130	200	62	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1131	200	64	66	2025-05-30 11:28:50	2025-05-30 11:28:50
1132	200	65	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1133	200	72	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1134	200	73	66	2025-05-30 11:28:50	2025-05-30 11:28:50
1135	73	200	44	2025-05-30 11:28:50	2025-05-30 11:28:50
1136	200	126	55	2025-05-30 11:28:50	2025-05-30 11:28:50
1137	126	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1138	200	127	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1139	127	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1140	200	166	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1141	200	74	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1142	74	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1143	200	77	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1144	77	200	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1145	200	130	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1146	130	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1148	200	132	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1149	132	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1150	200	134	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1151	134	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1152	200	136	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1121	200	181	66	2025-05-30 11:28:50	2025-05-30 11:29:50
1122	200	193	55	2025-05-30 11:28:50	2025-05-30 11:29:50
1123	193	200	66	2025-05-30 11:28:50	2025-05-30 11:29:50
1147	200	176	66	2025-05-30 11:28:51	2025-05-30 11:29:50
1153	200	137	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1154	137	200	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1155	200	138	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1156	138	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1157	200	168	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1158	168	200	88	2025-05-30 11:28:51	2025-05-30 11:28:51
1161	171	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1163	179	200	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1164	200	94	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1165	94	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1166	200	95	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1167	200	96	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1168	96	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1169	200	98	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1170	98	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1171	200	101	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1172	200	103	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1173	200	80	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1174	200	81	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1175	200	82	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1176	82	200	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1177	200	83	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1178	83	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1179	200	84	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1180	84	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1181	200	87	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1112	197	192	88	2025-05-29 17:27:21	2025-11-17 15:32:36
1182	200	89	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1183	200	90	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1184	90	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1185	200	91	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1186	91	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1187	200	92	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1188	200	105	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1189	200	106	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1190	200	107	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1191	200	108	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1192	108	200	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1193	200	109	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1194	200	110	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1195	200	111	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1196	200	112	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1197	112	200	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1198	200	116	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1199	200	118	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1200	200	121	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1201	200	144	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1202	144	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1203	200	146	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1204	200	150	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1205	150	200	44	2025-05-30 11:28:51	2025-05-30 11:28:51
1206	200	151	55	2025-05-30 11:28:51	2025-05-30 11:28:51
1207	200	53	66	2025-05-30 11:28:51	2025-05-30 11:28:51
1119	200	174	44	2025-05-30 11:28:50	2025-05-30 11:29:50
1210	176	200	44	2025-05-30 11:29:50	2025-05-30 11:29:50
1159	200	189	55	2025-05-30 11:28:51	2025-05-30 11:29:50
1211	189	200	55	2025-05-30 11:29:50	2025-05-30 11:29:50
1160	200	171	44	2025-05-30 11:28:51	2025-05-30 11:29:50
1162	200	179	55	2025-05-30 11:28:51	2025-05-30 11:29:50
15227	318	58	55	2025-12-17 06:58:24	2025-12-17 07:57:15
1213	174	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1217	202	55	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1218	202	57	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1219	202	59	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1220	202	60	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1221	202	61	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1222	61	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1223	202	62	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1225	202	65	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1226	202	72	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1228	73	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1229	202	126	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1230	126	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1231	202	127	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1232	127	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1233	202	166	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1235	74	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1236	202	77	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1237	77	202	55	2025-05-30 12:33:43	2025-05-30 12:33:43
1239	130	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1242	132	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1243	202	134	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1244	134	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1245	202	136	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1247	137	202	55	2025-05-30 12:33:43	2025-05-30 12:33:43
1249	138	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1250	202	168	55	2025-05-30 12:33:43	2025-05-30 12:33:43
1251	168	202	88	2025-05-30 12:33:43	2025-05-30 12:33:43
1254	171	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1256	179	202	55	2025-05-30 12:33:43	2025-05-30 12:33:43
1257	202	94	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1258	94	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1214	202	181	77	2025-05-30 12:33:43	2025-05-30 12:33:54
1215	202	193	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1216	193	202	66	2025-05-30 12:33:43	2025-05-30 12:33:54
1224	202	64	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1234	202	74	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1238	202	130	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1240	202	176	77	2025-05-30 12:33:43	2025-05-30 12:33:54
1241	202	132	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1246	202	137	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1248	202	138	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1252	202	189	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1253	202	171	55	2025-05-30 12:33:43	2025-05-30 12:33:54
1255	202	179	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1260	202	96	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1261	96	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1263	98	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1264	202	101	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1265	202	103	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1266	202	80	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1267	202	81	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1268	202	82	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1269	82	202	55	2025-05-30 12:33:43	2025-05-30 12:33:43
1270	202	83	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1271	83	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1272	202	84	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1273	84	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1274	202	87	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1275	202	89	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1276	202	90	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1277	90	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1278	202	91	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1279	91	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1280	202	92	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1281	202	105	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1283	202	107	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1284	202	108	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1285	108	202	55	2025-05-30 12:33:43	2025-05-30 12:33:43
1287	202	110	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1288	202	111	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1289	202	112	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1290	112	202	55	2025-05-30 12:33:43	2025-05-30 12:33:43
1208	200	192	55	2025-05-30 11:28:51	2025-11-17 15:32:36
1292	202	118	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1293	202	121	66	2025-05-30 12:33:43	2025-05-30 12:33:43
1295	144	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1298	150	202	44	2025-05-30 12:33:43	2025-05-30 12:33:43
1300	202	53	66	2025-05-30 12:33:43	2025-05-30 12:33:43
15249	318	75	55	2025-12-17 06:58:24	2025-12-17 07:57:15
1212	202	174	55	2025-05-30 12:33:43	2025-05-30 12:33:54
1227	202	73	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1303	176	202	44	2025-05-30 12:33:54	2025-05-30 12:33:54
1304	189	202	55	2025-05-30 12:33:54	2025-05-30 12:33:54
1259	202	95	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1262	202	98	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1282	202	106	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1286	202	109	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1291	202	116	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1294	202	144	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1296	202	146	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1297	202	150	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1299	202	151	44	2025-05-30 12:33:43	2025-05-30 12:33:54
1302	192	202	88	2025-05-30 12:33:44	2025-05-30 12:33:54
1305	204	174	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1306	174	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1307	204	181	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1308	204	193	100	2025-05-31 06:16:32	2025-05-31 06:16:32
1309	193	204	55	2025-05-31 06:16:32	2025-05-31 06:16:32
1310	204	55	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1311	204	57	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1312	204	59	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1313	204	60	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1314	204	61	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1315	61	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1316	204	62	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1317	204	64	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1318	204	65	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1319	204	72	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1320	204	73	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1321	73	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1322	204	126	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1323	126	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1324	204	127	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1325	127	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1326	204	166	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1327	204	74	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1328	74	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1329	204	77	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1330	77	204	55	2025-05-31 06:16:32	2025-05-31 06:16:32
1331	204	130	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1332	130	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1333	204	176	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1334	204	132	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1335	132	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1336	204	134	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1337	134	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1338	204	136	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1339	204	137	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1340	137	204	55	2025-05-31 06:16:32	2025-05-31 06:16:32
1341	204	138	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1342	138	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1343	204	168	88	2025-05-31 06:16:32	2025-05-31 06:16:32
1344	168	204	88	2025-05-31 06:16:32	2025-05-31 06:16:32
1345	204	189	100	2025-05-31 06:16:32	2025-05-31 06:16:32
1346	204	171	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1347	171	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1348	204	179	100	2025-05-31 06:16:32	2025-05-31 06:16:32
1349	179	204	55	2025-05-31 06:16:32	2025-05-31 06:16:32
1350	204	94	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1351	94	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1352	204	95	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1353	204	96	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1354	96	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1355	204	98	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1356	98	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1357	204	101	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1358	204	103	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1359	204	80	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1360	204	81	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1361	204	82	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1362	82	204	55	2025-05-31 06:16:32	2025-05-31 06:16:32
1363	204	83	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1364	83	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1365	204	84	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1366	84	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1367	204	87	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1368	204	89	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1369	204	90	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1370	90	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1371	204	91	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1372	91	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1373	204	92	66	2025-05-31 06:16:32	2025-05-31 06:16:32
1374	204	105	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1375	204	106	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1376	204	107	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1377	204	108	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1378	108	204	55	2025-05-31 06:16:32	2025-05-31 06:16:32
1379	204	109	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1380	204	110	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1381	204	111	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1382	204	112	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1383	112	204	55	2025-05-31 06:16:32	2025-05-31 06:16:32
1384	204	116	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1385	204	118	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1386	204	121	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1387	204	144	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1388	144	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1389	204	146	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1390	204	150	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1391	150	204	44	2025-05-31 06:16:32	2025-05-31 06:16:32
1392	204	151	77	2025-05-31 06:16:32	2025-05-31 06:16:32
1393	204	53	77	2025-05-31 06:16:32	2025-05-31 06:16:32
15410	50	318	44	2025-12-17 07:57:15	2025-12-17 07:57:15
1396	51	54	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1397	51	165	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1398	51	197	100	2025-05-31 06:25:19	2025-05-31 06:25:19
1399	197	51	88	2025-05-31 06:25:19	2025-05-31 06:25:19
1400	51	204	100	2025-05-31 06:25:19	2025-05-31 06:25:19
1401	204	51	88	2025-05-31 06:25:19	2025-05-31 06:25:19
1402	51	56	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1403	51	58	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1404	58	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1405	51	63	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1406	63	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1407	51	66	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1408	51	67	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1409	51	68	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1410	68	51	55	2025-05-31 06:25:19	2025-05-31 06:25:19
1411	51	69	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1412	69	51	55	2025-05-31 06:25:19	2025-05-31 06:25:19
1413	51	70	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1414	70	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1415	51	71	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1416	51	124	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1417	51	125	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1418	51	128	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1419	128	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1420	51	75	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1421	75	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1422	51	76	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1423	76	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1424	51	78	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1425	51	129	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1426	51	200	88	2025-05-31 06:25:19	2025-05-31 06:25:19
1427	51	50	100	2025-05-31 06:25:19	2025-05-31 06:25:19
1428	51	194	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1429	51	131	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1430	51	133	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1431	51	135	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1432	135	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1433	51	142	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1434	51	177	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1435	51	195	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1436	51	202	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1437	51	191	100	2025-05-31 06:25:19	2025-05-31 06:25:19
1438	191	51	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1439	51	196	100	2025-05-31 06:25:19	2025-05-31 06:25:19
1440	196	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1441	51	97	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1442	97	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1443	51	99	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1444	99	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1445	51	100	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1446	51	102	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1447	51	79	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1448	51	85	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1449	51	86	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1450	86	51	55	2025-05-31 06:25:19	2025-05-31 06:25:19
1451	51	88	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1452	51	93	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1453	51	104	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1454	51	113	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1455	113	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1456	51	114	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1457	51	115	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1458	51	117	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1459	51	119	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1460	119	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1461	51	120	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1462	120	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1463	51	122	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1464	51	123	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1465	123	51	55	2025-05-31 06:25:19	2025-05-31 06:25:19
1466	51	145	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1467	145	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1468	51	143	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1469	143	51	55	2025-05-31 06:25:19	2025-05-31 06:25:19
1470	51	139	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1471	51	140	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1472	140	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1473	51	141	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1474	141	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1475	51	147	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1476	147	51	44	2025-05-31 06:25:19	2025-05-31 06:25:19
1477	51	148	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1478	51	149	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1479	51	152	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1480	51	153	77	2025-05-31 06:25:19	2025-05-31 06:25:19
1481	51	173	66	2025-05-31 06:25:19	2025-05-31 06:25:19
1482	173	51	55	2025-05-31 06:25:19	2025-05-31 06:25:19
1483	209	174	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1484	174	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1485	209	181	77	2025-05-31 09:09:46	2025-05-31 09:09:46
1486	209	193	100	2025-05-31 09:09:46	2025-05-31 09:09:46
1487	193	209	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1488	209	55	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1489	209	57	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1490	209	59	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1491	209	60	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1492	209	61	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1493	61	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1494	209	62	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1495	209	64	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1496	209	65	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1497	209	72	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1498	209	73	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1394	204	192	88	2025-05-31 06:16:32	2025-11-17 15:32:36
1499	73	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1500	209	126	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1501	126	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1502	209	127	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1503	127	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1504	209	166	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1505	209	74	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1506	74	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1507	209	77	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1508	77	209	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1509	209	130	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1510	130	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1511	209	51	88	2025-05-31 09:09:46	2025-05-31 09:09:46
1512	51	209	88	2025-05-31 09:09:46	2025-05-31 09:09:46
1513	209	176	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1514	209	132	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1515	132	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1516	209	134	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1517	134	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1518	209	136	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1519	209	137	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1520	137	209	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1521	209	138	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1522	138	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1523	209	168	77	2025-05-31 09:09:46	2025-05-31 09:09:46
1524	168	209	88	2025-05-31 09:09:46	2025-05-31 09:09:46
1525	209	189	100	2025-05-31 09:09:46	2025-05-31 09:09:46
1526	189	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1527	209	171	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1528	171	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1529	209	179	88	2025-05-31 09:09:46	2025-05-31 09:09:46
1530	179	209	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1531	209	94	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1532	94	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1533	209	95	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1534	209	96	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1535	96	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1536	209	98	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1537	98	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1538	209	101	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1539	209	103	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1540	209	80	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1541	209	81	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1542	209	82	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1543	82	209	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1544	209	83	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1545	83	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1546	209	84	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1547	84	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1548	209	87	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1549	209	89	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1550	209	90	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1551	90	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1552	209	91	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1553	91	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1554	209	92	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1555	209	105	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1556	209	106	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1557	209	107	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1558	209	108	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1559	108	209	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1560	209	109	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1561	209	110	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1562	209	111	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1563	209	112	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1564	112	209	55	2025-05-31 09:09:46	2025-05-31 09:09:46
1565	209	116	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1566	209	118	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1567	209	121	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1568	209	144	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1569	144	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1570	209	146	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1571	209	150	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1572	150	209	44	2025-05-31 09:09:46	2025-05-31 09:09:46
1573	209	151	66	2025-05-31 09:09:46	2025-05-31 09:09:46
1574	209	53	66	2025-05-31 09:09:46	2025-05-31 09:09:46
15411	194	318	44	2025-12-17 07:57:15	2025-12-17 07:57:15
1606	51	210	88	2025-05-31 15:04:08	2025-05-31 15:04:08
1673	197	211	88	2025-05-31 16:48:23	2025-05-31 16:48:23
1675	204	211	88	2025-05-31 16:48:23	2025-05-31 16:48:23
1678	58	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1680	63	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1676	211	56	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1681	211	66	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1672	211	197	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1674	211	204	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1670	211	54	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1677	211	58	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1679	211	63	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1682	211	67	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1683	211	68	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1586	210	61	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1588	210	62	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1587	61	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1593	73	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1595	126	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1597	127	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1600	74	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1602	77	210	66	2025-05-31 15:04:08	2025-06-06 13:16:20
1604	130	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1609	132	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1611	134	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1614	137	210	66	2025-05-31 15:04:08	2025-06-06 13:16:20
1616	138	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
1618	168	210	100	2025-05-31 15:04:08	2025-06-06 13:16:21
1575	209	192	77	2025-05-31 09:09:46	2025-11-17 15:32:36
1669	192	210	44	2025-05-31 15:04:08	2025-11-17 15:32:36
1634	210	81	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1621	171	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1625	94	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1628	96	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1630	98	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1636	82	210	66	2025-05-31 15:04:08	2025-06-06 13:16:21
1638	83	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1640	84	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1644	90	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1646	91	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1652	108	210	66	2025-05-31 15:04:08	2025-06-06 13:16:21
1657	112	210	66	2025-05-31 15:04:08	2025-06-06 13:16:21
1662	144	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1665	150	210	55	2025-05-31 15:04:08	2025-06-06 13:16:21
1584	210	59	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1585	210	60	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1598	210	166	77	2025-05-31 15:04:08	2025-06-06 13:40:53
1610	210	134	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1617	210	168	100	2025-05-31 15:04:08	2025-06-06 14:13:35
1626	210	95	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1624	210	94	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1627	210	96	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1631	210	101	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1632	210	103	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1635	210	82	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1637	210	83	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1639	210	84	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1641	210	87	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1642	210	89	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1656	210	112	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1658	210	116	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1660	210	121	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1661	210	144	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1663	210	146	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1664	210	150	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1666	210	151	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1668	210	192	100	2025-05-31 15:04:08	2025-06-06 14:13:35
1577	210	174	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1583	210	57	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1589	210	64	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1581	193	210	66	2025-05-31 15:04:08	2025-06-06 13:40:53
1590	210	65	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1591	210	72	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1592	210	73	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1594	210	126	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1596	210	127	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1599	210	74	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1601	210	77	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1603	210	130	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1605	210	51	100	2025-05-31 15:04:08	2025-06-06 14:13:35
1613	210	137	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1612	210	136	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1619	210	189	100	2025-05-31 15:04:08	2025-06-06 14:13:35
1615	210	138	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1622	210	179	100	2025-05-31 15:04:08	2025-06-06 14:13:35
1629	210	98	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1633	210	80	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1643	210	90	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1645	210	91	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1647	210	92	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1648	210	105	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1649	210	106	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1650	210	107	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1651	210	108	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1653	210	109	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1654	210	110	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1655	210	111	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1579	210	181	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1580	210	193	100	2025-05-31 15:04:08	2025-06-06 14:13:35
1667	210	53	77	2025-05-31 15:04:08	2025-06-06 13:40:53
1582	210	55	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1607	210	176	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1684	68	211	55	2025-05-31 16:48:23	2025-05-31 16:48:23
1686	69	211	55	2025-05-31 16:48:23	2025-05-31 16:48:23
1688	70	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1693	128	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1695	75	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1697	76	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1706	135	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1720	97	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1722	99	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1728	86	211	55	2025-05-31 16:48:23	2025-05-31 16:48:23
1733	113	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1738	119	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1740	120	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1743	123	211	55	2025-05-31 16:48:23	2025-05-31 16:48:23
1745	145	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1747	143	211	55	2025-05-31 16:48:23	2025-05-31 16:48:23
1750	140	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1752	141	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1754	147	211	44	2025-05-31 16:48:23	2025-05-31 16:48:23
1760	173	211	55	2025-05-31 16:48:23	2025-05-31 16:48:23
1761	212	174	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1762	174	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1763	212	181	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1764	212	193	100	2025-06-01 17:27:33	2025-06-01 17:27:33
1765	193	212	55	2025-06-01 17:27:33	2025-06-01 17:27:33
1766	212	55	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1767	212	57	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1768	212	59	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1769	212	60	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1770	212	61	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1771	61	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1772	212	62	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1773	212	64	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1774	212	65	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1775	212	72	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1776	212	73	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1777	73	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1778	212	126	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1779	126	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1780	212	127	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1781	127	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1782	212	166	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1783	212	74	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1784	74	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1785	212	77	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1786	77	212	55	2025-06-01 17:27:33	2025-06-01 17:27:33
1787	212	130	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1788	130	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1789	212	51	100	2025-06-01 17:27:33	2025-06-01 17:27:33
1790	51	212	88	2025-06-01 17:27:33	2025-06-01 17:27:33
1710	211	202	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1709	211	195	77	2025-05-31 16:48:23	2025-06-05 07:58:35
1718	210	211	88	2025-05-31 16:48:23	2025-06-06 14:13:35
1721	211	99	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1746	211	143	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1691	211	125	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1734	211	114	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1723	211	100	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1725	211	79	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1715	211	196	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1719	211	97	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1748	211	139	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1739	211	120	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1685	211	69	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1751	211	141	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1759	211	173	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1712	209	211	77	2025-05-31 16:48:23	2025-06-03 15:34:13
1701	211	50	88	2025-05-31 16:48:23	2025-06-05 07:58:35
1705	211	135	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1704	211	133	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1753	211	147	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1703	211	131	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1713	211	191	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1694	211	75	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1714	191	211	77	2025-05-31 16:48:23	2025-06-05 07:40:43
1707	211	142	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1711	211	209	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1724	211	102	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1726	211	85	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1732	211	113	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1749	211	140	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1735	211	115	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1736	211	117	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1758	211	153	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1741	211	122	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1742	211	123	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1744	211	145	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1702	211	194	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1755	211	148	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1756	211	149	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1757	211	152	66	2025-05-31 16:48:23	2025-06-05 07:58:35
1716	196	211	44	2025-05-31 16:48:23	2025-06-03 15:34:13
1737	211	119	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1687	211	70	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1689	211	71	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1690	211	124	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1696	211	76	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1698	211	78	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1699	211	129	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1727	211	86	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1729	211	88	44	2025-05-31 16:48:23	2025-06-05 07:58:35
1730	211	93	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1717	211	210	66	2025-05-31 16:48:23	2025-06-06 13:16:21
1791	212	176	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1792	212	132	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1793	132	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1794	212	134	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1795	134	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1796	212	136	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1797	212	137	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1798	137	212	55	2025-06-01 17:27:33	2025-06-01 17:27:33
1799	212	138	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1800	138	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1801	212	168	88	2025-06-01 17:27:33	2025-06-01 17:27:33
1802	168	212	88	2025-06-01 17:27:33	2025-06-01 17:27:33
1803	212	189	100	2025-06-01 17:27:33	2025-06-01 17:27:33
1804	212	171	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1805	171	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1806	212	179	100	2025-06-01 17:27:33	2025-06-01 17:27:33
1807	179	212	55	2025-06-01 17:27:33	2025-06-01 17:27:33
1808	212	94	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1809	94	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1810	212	95	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1811	212	96	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1812	96	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1813	212	98	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1814	98	212	44	2025-06-01 17:27:33	2025-06-01 17:27:33
1815	212	101	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1816	212	103	77	2025-06-01 17:27:33	2025-06-01 17:27:33
1817	212	80	66	2025-06-01 17:27:33	2025-06-01 17:27:33
1818	212	81	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1819	212	82	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1820	82	212	55	2025-06-01 17:27:34	2025-06-01 17:27:34
1821	212	83	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1822	83	212	44	2025-06-01 17:27:34	2025-06-01 17:27:34
1823	212	84	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1824	84	212	44	2025-06-01 17:27:34	2025-06-01 17:27:34
1825	212	87	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1826	212	89	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1827	212	90	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1828	90	212	44	2025-06-01 17:27:34	2025-06-01 17:27:34
1829	212	91	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1830	91	212	44	2025-06-01 17:27:34	2025-06-01 17:27:34
1831	212	92	66	2025-06-01 17:27:34	2025-06-01 17:27:34
1832	212	105	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1833	212	106	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1834	212	107	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1835	212	108	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1836	108	212	55	2025-06-01 17:27:34	2025-06-01 17:27:34
1837	212	109	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1838	212	110	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1839	212	111	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1840	212	112	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1841	112	212	55	2025-06-01 17:27:34	2025-06-01 17:27:34
1842	212	116	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1843	212	118	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1844	212	121	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1845	212	144	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1846	144	212	44	2025-06-01 17:27:34	2025-06-01 17:27:34
1847	212	146	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1848	212	150	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1849	150	212	44	2025-06-01 17:27:34	2025-06-01 17:27:34
1850	212	151	77	2025-06-01 17:27:34	2025-06-01 17:27:34
1851	212	53	77	2025-06-01 17:27:34	2025-06-01 17:27:34
15295	318	264	88	2025-12-17 06:58:24	2025-12-17 07:57:15
1857	214	165	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1858	214	197	100	2025-06-03 03:26:41	2025-06-03 03:26:41
1859	197	214	88	2025-06-03 03:26:41	2025-06-03 03:26:41
1860	214	204	100	2025-06-03 03:26:41	2025-06-03 03:26:41
1861	204	214	88	2025-06-03 03:26:41	2025-06-03 03:26:41
1862	214	212	100	2025-06-03 03:26:41	2025-06-03 03:26:41
1863	212	214	88	2025-06-03 03:26:41	2025-06-03 03:26:41
1864	214	56	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1865	214	58	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1866	58	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1868	63	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1869	214	66	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1870	214	67	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1871	214	68	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1872	68	214	55	2025-06-03 03:26:41	2025-06-03 03:26:41
1873	214	69	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1874	69	214	55	2025-06-03 03:26:41	2025-06-03 03:26:41
1875	214	70	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1876	70	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1877	214	71	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1880	214	128	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1881	128	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1882	214	75	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1883	75	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1884	214	76	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1885	76	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1886	214	78	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1887	214	129	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1888	214	200	88	2025-06-03 03:26:41	2025-06-03 03:26:41
1890	214	194	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1892	214	133	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1894	135	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1854	212	211	88	2025-06-01 17:27:34	2025-06-03 15:15:01
1856	214	54	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1867	214	63	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1878	214	124	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1879	214	125	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1889	214	50	55	2025-06-03 03:26:41	2025-06-04 04:18:02
1891	214	131	55	2025-06-03 03:26:41	2025-06-04 04:18:02
1893	214	135	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1895	214	142	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1897	214	195	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1898	214	202	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1899	214	209	100	2025-06-03 03:26:41	2025-06-03 03:26:41
1900	209	214	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1901	214	191	100	2025-06-03 03:26:41	2025-06-03 03:26:41
1903	214	196	100	2025-06-03 03:26:41	2025-06-03 03:26:41
1904	196	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1905	214	210	100	2025-06-03 03:26:41	2025-06-03 03:26:41
1907	214	97	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1908	97	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1910	99	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1914	214	85	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1915	214	86	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1916	86	214	55	2025-06-03 03:26:41	2025-06-03 03:26:41
1917	214	88	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1918	214	93	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1920	214	113	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1921	113	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1922	214	114	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1925	214	119	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1926	119	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1927	214	120	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1928	120	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1930	214	123	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1931	123	214	55	2025-06-03 03:26:41	2025-06-03 03:26:41
1933	145	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1934	214	143	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1935	143	214	55	2025-06-03 03:26:41	2025-06-03 03:26:41
1937	214	140	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1938	140	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1940	141	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1941	214	147	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1942	147	214	44	2025-06-03 03:26:41	2025-06-03 03:26:41
1944	214	149	77	2025-06-03 03:26:41	2025-06-03 03:26:41
1947	214	173	66	2025-06-03 03:26:41	2025-06-03 03:26:41
1948	173	214	55	2025-06-03 03:26:41	2025-06-03 03:26:41
1950	174	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1959	61	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1965	73	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1967	126	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1969	127	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1972	74	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1852	212	192	88	2025-06-01 17:27:34	2025-11-17 15:32:36
1974	77	215	55	2025-06-03 05:39:44	2025-06-03 05:39:44
1976	130	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1977	215	51	66	2025-06-03 05:39:44	2025-06-03 05:39:44
1978	51	215	88	2025-06-03 05:39:44	2025-06-03 05:39:44
1980	214	215	88	2025-06-03 05:39:44	2025-06-03 05:39:44
1983	132	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1985	134	215	44	2025-06-03 05:39:44	2025-06-03 05:39:44
1988	137	215	55	2025-06-03 05:39:45	2025-06-03 05:39:45
1990	138	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
1991	215	168	66	2025-06-03 05:39:45	2025-06-03 05:39:45
1992	168	215	88	2025-06-03 05:39:45	2025-06-03 05:39:45
1995	171	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
1997	179	215	55	2025-06-03 05:39:45	2025-06-03 05:39:45
1999	94	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
2002	96	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
2004	98	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
1955	215	57	44	2025-06-03 05:39:44	2025-06-04 09:13:31
1952	215	193	44	2025-06-03 05:39:44	2025-06-03 05:40:06
1953	193	215	66	2025-06-03 05:39:44	2025-06-03 05:40:06
1970	215	166	44	2025-06-03 05:39:44	2025-06-03 05:40:06
1982	215	132	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1998	215	94	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2003	215	98	44	2025-06-03 05:39:45	2025-06-04 09:13:31
1996	215	179	44	2025-06-03 05:39:45	2025-06-03 05:40:06
1902	191	214	77	2025-06-03 03:26:41	2025-06-04 04:18:02
1911	214	100	55	2025-06-03 03:26:41	2025-06-04 04:18:02
1912	214	102	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1913	214	79	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1919	214	104	55	2025-06-03 03:26:41	2025-06-04 04:18:02
1923	214	115	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1924	214	117	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1929	214	122	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1932	214	145	55	2025-06-03 03:26:41	2025-06-04 04:18:02
1936	214	139	55	2025-06-03 03:26:41	2025-06-04 04:18:02
1939	214	141	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1943	214	148	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1945	214	152	55	2025-06-03 03:26:41	2025-06-04 04:18:02
1946	214	153	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1954	215	55	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1975	215	130	44	2025-06-03 05:39:44	2025-06-04 09:13:31
1956	215	59	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1957	215	60	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1958	215	61	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1961	215	64	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1962	215	65	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1963	215	72	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1964	215	73	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1966	215	126	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1968	215	127	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1971	215	74	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1973	215	77	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1979	215	214	55	2025-06-03 05:39:44	2025-06-04 09:13:31
1987	215	137	44	2025-06-03 05:39:44	2025-06-04 09:13:31
1984	215	134	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1986	215	136	44	2025-06-03 05:39:44	2025-06-04 07:08:51
1989	215	138	44	2025-06-03 05:39:45	2025-06-04 09:13:31
1993	215	189	44	2025-06-03 05:39:45	2025-06-04 09:13:31
1994	215	171	44	2025-06-03 05:39:45	2025-06-04 09:13:31
2000	215	95	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2001	215	96	44	2025-06-03 05:39:45	2025-06-04 07:08:51
1981	215	176	77	2025-06-03 05:39:44	2025-06-04 09:13:31
1906	210	214	77	2025-06-03 03:26:41	2025-06-06 14:13:35
2010	82	215	55	2025-06-03 05:39:45	2025-06-03 05:39:45
2012	83	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
2014	84	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
2018	90	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
2020	91	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
2026	108	215	55	2025-06-03 05:39:45	2025-06-03 05:39:45
2031	112	215	55	2025-06-03 05:39:45	2025-06-03 05:39:45
2036	144	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
2039	150	215	44	2025-06-03 05:39:45	2025-06-03 05:39:45
2040	215	151	55	2025-06-03 05:39:45	2025-06-03 05:39:45
2042	215	192	66	2025-06-03 05:39:45	2025-06-03 05:39:45
2043	192	215	77	2025-06-03 05:39:45	2025-06-03 05:39:45
2046	176	215	44	2025-06-03 05:40:06	2025-06-03 05:40:06
2047	189	215	55	2025-06-03 05:40:06	2025-06-03 05:40:06
2101	97	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2049	216	165	55	2025-06-03 08:40:56	2025-06-03 08:40:56
2050	216	197	66	2025-06-03 08:40:56	2025-06-03 08:40:56
2051	197	216	88	2025-06-03 08:40:56	2025-06-03 08:40:56
2052	216	204	66	2025-06-03 08:40:56	2025-06-03 08:40:56
2053	204	216	88	2025-06-03 08:40:56	2025-06-03 08:40:56
2054	216	212	66	2025-06-03 08:40:56	2025-06-03 08:40:56
2055	212	216	88	2025-06-03 08:40:56	2025-06-03 08:40:56
2080	216	200	55	2025-06-03 08:40:57	2025-06-03 08:40:57
2085	216	135	55	2025-06-03 08:40:57	2025-06-03 08:40:57
2089	216	195	44	2025-06-03 08:40:57	2025-06-03 08:40:57
2090	216	202	44	2025-06-03 08:40:57	2025-06-03 08:40:57
2091	216	209	66	2025-06-03 08:40:57	2025-06-03 08:40:57
2092	209	216	77	2025-06-03 08:40:57	2025-06-03 08:40:57
2096	216	196	66	2025-06-03 08:40:57	2025-06-03 08:40:57
2097	196	216	44	2025-06-03 08:40:57	2025-06-03 08:40:57
2098	216	210	44	2025-06-03 08:40:57	2025-07-10 19:24:02
2094	216	191	44	2025-06-03 08:40:57	2025-06-03 08:41:37
2105	216	102	55	2025-06-03 08:40:57	2025-06-03 16:29:55
1949	215	174	44	2025-06-03 05:39:44	2025-06-04 09:13:31
2044	215	211	44	2025-06-03 05:39:45	2025-06-03 15:33:54
2060	63	216	55	2025-06-03 08:40:56	2025-07-10 19:24:02
2083	216	131	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2088	216	177	44	2025-06-03 08:40:57	2025-06-03 15:48:21
2079	216	129	55	2025-06-03 08:40:57	2025-06-03 16:34:24
2100	216	97	55	2025-06-03 08:40:57	2025-06-03 16:34:24
2005	215	101	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2006	215	103	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2007	215	80	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2008	215	81	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2009	215	82	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2011	215	83	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2013	215	84	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2015	215	87	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2016	215	89	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2017	215	90	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2019	215	91	55	2025-06-03 05:39:45	2025-06-04 07:08:51
2021	215	92	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2022	215	105	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2035	215	144	44	2025-06-03 05:39:45	2025-06-04 09:13:31
2024	215	107	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2025	215	108	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2028	215	110	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2029	215	111	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2030	215	112	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2032	215	116	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2033	215	118	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2034	215	121	44	2025-06-03 05:39:45	2025-06-04 07:08:51
2045	211	215	77	2025-06-03 05:39:45	2025-06-05 07:58:35
2023	215	106	44	2025-06-03 05:39:45	2025-06-04 09:13:31
2037	215	146	44	2025-06-03 05:39:45	2025-06-04 09:13:31
2038	215	150	44	2025-06-03 05:39:45	2025-06-04 09:13:31
2041	215	53	44	2025-06-03 05:39:45	2025-06-04 09:13:31
2048	216	54	55	2025-06-03 08:40:56	2025-07-10 19:24:01
2056	216	56	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2057	216	58	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2058	58	216	55	2025-06-03 08:40:56	2025-07-10 19:24:02
2059	216	63	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2061	216	66	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2062	216	67	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2064	68	216	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2065	216	69	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2066	69	216	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2067	216	70	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2068	70	216	55	2025-06-03 08:40:56	2025-07-10 19:24:02
2069	216	71	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2070	216	124	55	2025-06-03 08:40:56	2025-07-10 19:24:02
2071	216	125	55	2025-06-03 08:40:56	2025-07-10 19:24:02
2072	216	128	55	2025-06-03 08:40:56	2025-07-10 19:24:02
2073	128	216	55	2025-06-03 08:40:56	2025-07-10 19:24:02
2074	216	75	66	2025-06-03 08:40:56	2025-07-10 19:24:02
2075	75	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2076	216	76	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2077	76	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2078	216	78	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2082	216	194	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2084	216	133	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2086	135	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2093	216	215	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2099	210	216	100	2025-06-03 08:40:57	2025-07-10 19:24:02
2102	216	99	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2103	99	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2104	216	100	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2106	216	79	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2107	216	85	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2108	216	86	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2109	86	216	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2110	216	88	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2140	216	173	55	2025-06-03 08:40:57	2025-06-03 08:40:57
2141	173	216	55	2025-06-03 08:40:57	2025-06-03 08:40:57
2162	69	219	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2163	219	70	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2164	70	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2165	219	71	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2166	219	124	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2167	219	125	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2168	219	128	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2169	128	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2170	219	75	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2171	75	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2172	219	76	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2173	76	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
1671	211	165	66	2025-05-31 16:48:23	2025-06-05 07:58:35
2174	219	78	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2175	219	129	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2142	200	211	44	2025-06-03 15:33:54	2025-06-03 15:33:54
1692	211	128	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1708	211	177	55	2025-05-31 16:48:23	2025-06-05 07:58:35
2111	216	93	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2114	113	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2118	216	119	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2176	219	200	66	2025-06-04 07:24:04	2025-06-04 07:24:04
2081	216	50	44	2025-06-03 08:40:57	2025-06-03 16:07:03
2095	191	216	66	2025-06-03 08:40:57	2025-06-03 16:29:55
2112	216	104	55	2025-06-03 08:40:57	2025-06-03 16:29:55
2126	145	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2178	219	194	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2138	216	152	55	2025-06-03 08:40:57	2025-06-03 16:29:56
2113	216	113	55	2025-06-03 08:40:57	2025-06-03 16:34:24
2115	216	114	55	2025-06-03 08:40:57	2025-06-03 16:34:24
2123	216	123	55	2025-06-03 08:40:57	2025-06-03 16:34:24
2127	216	143	55	2025-06-03 08:40:57	2025-06-03 16:34:24
2131	140	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
1896	214	177	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1909	214	99	44	2025-06-03 03:26:41	2025-06-04 04:18:02
1960	215	62	44	2025-06-03 05:39:44	2025-06-04 07:08:51
2143	215	216	44	2025-06-04 07:08:51	2025-06-04 07:08:51
2144	219	54	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2145	219	165	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2146	219	197	66	2025-06-04 07:24:04	2025-06-04 07:24:04
2147	197	219	88	2025-06-04 07:24:04	2025-06-04 07:24:04
2148	219	204	66	2025-06-04 07:24:04	2025-06-04 07:24:04
2149	204	219	88	2025-06-04 07:24:04	2025-06-04 07:24:04
2150	219	212	66	2025-06-04 07:24:04	2025-06-04 07:24:04
2151	212	219	88	2025-06-04 07:24:04	2025-06-04 07:24:04
2152	219	56	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2153	219	58	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2154	58	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2155	219	63	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2156	63	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2157	219	66	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2158	219	67	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2159	219	68	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2160	68	219	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2161	219	69	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2179	219	131	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2180	219	133	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2181	219	135	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2182	135	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2183	219	142	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2184	219	177	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2185	219	195	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2186	219	202	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2187	219	209	66	2025-06-04 07:24:04	2025-06-04 07:24:04
2188	209	219	77	2025-06-04 07:24:04	2025-06-04 07:24:04
2189	219	215	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2190	219	191	66	2025-06-04 07:24:04	2025-06-04 07:24:04
2192	219	196	66	2025-06-04 07:24:04	2025-06-04 07:24:04
2193	196	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2194	219	210	66	2025-06-04 07:24:04	2025-06-04 07:24:04
2196	219	97	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2197	97	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2198	219	99	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2199	99	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2200	219	100	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2201	219	102	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2202	219	79	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2203	219	85	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2204	219	86	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2191	191	219	77	2025-06-04 07:24:04	2025-06-04 07:28:04
2027	215	109	44	2025-06-03 05:39:45	2025-06-04 09:13:31
1855	211	212	55	2025-06-01 17:27:34	2025-06-05 07:58:35
1700	211	200	55	2025-05-31 16:48:23	2025-06-05 07:58:35
1731	211	104	66	2025-05-31 16:48:23	2025-06-05 07:58:35
2195	210	219	100	2025-06-04 07:24:04	2025-06-06 14:13:35
2116	216	115	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2117	216	117	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2119	119	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2120	216	120	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2121	120	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2124	123	216	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2125	216	145	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2128	143	216	66	2025-06-03 08:40:57	2025-07-10 19:24:02
2129	216	139	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2130	216	140	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2132	216	141	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2133	141	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2134	216	147	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2135	147	216	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2136	216	148	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2137	216	149	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2139	216	153	55	2025-06-03 08:40:57	2025-07-10 19:24:02
2205	86	219	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2206	219	88	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2207	219	93	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2208	219	104	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2209	219	113	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2210	113	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2211	219	114	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2212	219	115	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2213	219	117	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2214	219	119	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2215	119	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2216	219	120	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2217	120	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2218	219	122	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2219	219	123	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2220	123	219	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2221	219	145	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2222	145	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2223	219	143	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2224	143	219	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2225	219	139	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2226	219	140	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2227	140	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2228	219	141	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2229	141	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2230	219	147	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2231	147	219	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2232	219	148	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2233	219	149	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2234	219	152	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2235	219	153	44	2025-06-04 07:24:04	2025-06-04 07:24:04
2236	219	173	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2237	173	219	55	2025-06-04 07:24:04	2025-06-04 07:24:04
2177	219	50	66	2025-06-04 07:24:04	2025-06-04 07:28:04
2238	223	54	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2241	197	223	88	2025-06-04 07:44:17	2025-06-04 07:44:17
2243	204	223	88	2025-06-04 07:44:17	2025-06-04 07:44:17
2245	212	223	88	2025-06-04 07:44:17	2025-06-04 07:44:17
2246	223	56	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2247	223	58	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2248	58	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2249	223	63	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2250	63	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2251	223	66	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2252	223	67	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2253	223	68	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2254	68	223	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2255	223	69	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2256	69	223	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2257	223	70	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2258	70	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2259	223	71	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2261	223	125	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2262	223	128	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2263	128	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2264	223	75	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2265	75	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2266	223	76	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2267	76	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2268	223	78	66	2025-06-04 07:44:17	2025-06-04 07:44:17
2269	223	129	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2272	223	194	66	2025-06-04 07:44:17	2025-06-04 07:44:17
2275	223	135	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2276	135	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2277	223	142	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2278	223	177	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2282	209	223	77	2025-06-04 07:44:17	2025-06-04 07:44:17
2285	191	223	66	2025-06-04 07:44:17	2025-06-04 07:44:17
2287	196	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2290	223	97	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2291	97	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2292	223	99	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2293	99	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2294	223	100	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2295	223	102	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2296	223	79	66	2025-06-04 07:44:17	2025-06-04 07:44:17
2297	223	85	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2298	223	86	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2299	86	223	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2300	223	88	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2301	223	93	66	2025-06-04 07:44:17	2025-06-04 07:44:17
2303	223	113	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2304	113	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2305	223	114	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2306	223	115	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2307	223	117	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2308	223	119	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2309	119	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2240	223	197	55	2025-06-04 07:44:17	2025-06-04 07:46:10
2242	223	204	55	2025-06-04 07:44:17	2025-06-04 07:46:10
2244	223	212	55	2025-06-04 07:44:17	2025-06-04 07:46:10
2260	223	124	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2270	223	200	66	2025-06-04 07:44:17	2025-06-04 07:46:10
2271	223	50	77	2025-06-04 07:44:17	2025-06-04 07:46:10
2273	223	131	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2274	223	133	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2279	223	195	55	2025-06-04 07:44:17	2025-06-04 07:46:10
2281	223	209	55	2025-06-04 07:44:17	2025-06-04 07:46:10
2283	223	215	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2284	223	191	55	2025-06-04 07:44:17	2025-06-04 07:46:10
2286	223	196	66	2025-06-04 07:44:17	2025-06-04 07:46:10
2288	223	210	55	2025-06-04 07:44:17	2025-06-04 07:46:10
2302	223	104	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2310	223	120	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2289	210	223	100	2025-06-04 07:44:17	2025-06-06 14:13:35
2311	120	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2313	223	123	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2314	123	223	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2315	223	145	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2316	145	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2317	223	143	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2318	143	223	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2320	223	140	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2321	140	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2323	141	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2324	223	147	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2325	147	223	44	2025-06-04 07:44:17	2025-06-04 07:44:17
2326	223	148	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2327	223	149	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2329	223	153	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2330	223	173	66	2025-06-04 07:44:17	2025-06-04 07:44:17
2331	173	223	55	2025-06-04 07:44:17	2025-06-04 07:44:17
2239	223	165	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2280	223	202	55	2025-06-04 07:44:17	2025-06-04 07:46:10
2312	223	122	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2319	223	139	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2322	223	141	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2328	223	152	44	2025-06-04 07:44:17	2025-06-04 07:46:10
2335	197	224	88	2025-06-04 08:00:12	2025-06-04 08:00:12
2337	204	224	88	2025-06-04 08:00:12	2025-06-04 08:00:12
2339	212	224	88	2025-06-04 08:00:12	2025-06-04 08:00:12
2376	209	224	77	2025-06-04 08:00:13	2025-06-04 08:00:13
2381	196	224	44	2025-06-04 08:00:13	2025-06-04 08:00:13
2351	224	70	55	2025-06-04 08:00:13	2025-07-10 21:25:04
2367	224	131	66	2025-06-04 08:00:13	2025-07-10 21:25:04
2375	224	209	88	2025-06-04 08:00:13	2025-07-10 21:25:05
2391	224	85	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2394	224	88	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2334	224	197	88	2025-06-04 08:00:12	2025-07-10 21:25:04
2336	224	204	88	2025-06-04 08:00:12	2025-07-10 21:25:04
2338	224	212	88	2025-06-04 08:00:12	2025-07-10 21:25:04
2340	224	56	55	2025-06-04 08:00:12	2025-07-10 21:25:04
2366	224	194	66	2025-06-04 08:00:13	2025-07-10 21:25:04
2368	224	133	66	2025-06-04 08:00:13	2025-07-10 21:25:04
2373	224	195	77	2025-06-04 08:00:13	2025-07-10 21:25:05
2377	224	215	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2342	58	224	55	2025-06-04 08:00:12	2025-07-10 21:12:01
2379	191	224	77	2025-06-04 08:00:13	2025-06-04 08:11:51
2385	97	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2384	224	97	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2389	224	102	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2397	224	113	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2402	224	119	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2411	224	143	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2414	224	140	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2382	224	210	77	2025-06-04 08:00:13	2025-07-10 21:25:05
2344	63	224	55	2025-06-04 08:00:12	2025-07-10 21:12:01
2348	68	224	66	2025-06-04 08:00:13	2025-07-10 21:12:01
2350	69	224	66	2025-06-04 08:00:13	2025-07-10 21:12:01
2352	70	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2357	128	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2359	75	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2361	76	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2365	224	50	100	2025-06-04 08:00:13	2025-07-10 21:25:04
2370	135	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2374	224	202	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2378	224	191	100	2025-06-04 08:00:13	2025-07-10 21:25:05
2387	99	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2393	86	224	66	2025-06-04 08:00:13	2025-07-10 21:12:01
2398	113	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2403	119	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2405	120	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2408	123	224	66	2025-06-04 08:00:13	2025-07-10 21:12:01
2410	145	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2415	140	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2332	224	54	66	2025-06-04 08:00:12	2025-07-10 21:25:04
2333	224	165	66	2025-06-04 08:00:12	2025-07-10 21:25:04
2341	224	58	55	2025-06-04 08:00:12	2025-07-10 21:25:04
2345	224	66	55	2025-06-04 08:00:12	2025-07-10 21:25:04
2346	224	67	55	2025-06-04 08:00:12	2025-07-10 21:25:04
2347	224	68	55	2025-06-04 08:00:12	2025-07-10 21:25:04
2349	224	69	55	2025-06-04 08:00:13	2025-07-10 21:25:04
2353	224	71	55	2025-06-04 08:00:13	2025-07-10 21:25:04
2354	224	124	66	2025-06-04 08:00:13	2025-07-10 21:25:04
2355	224	125	66	2025-06-04 08:00:13	2025-07-10 21:25:04
2356	224	128	66	2025-06-04 08:00:13	2025-07-10 21:25:04
2358	224	75	55	2025-06-04 08:00:13	2025-07-10 21:25:04
2360	224	76	55	2025-06-04 08:00:13	2025-07-10 21:25:04
2362	224	78	55	2025-06-04 08:00:13	2025-07-10 21:25:04
2363	224	129	66	2025-06-04 08:00:13	2025-07-10 21:25:04
2364	224	200	77	2025-06-04 08:00:13	2025-07-10 21:25:04
2369	224	135	66	2025-06-04 08:00:13	2025-07-10 21:25:04
2372	224	177	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2380	224	196	88	2025-06-04 08:00:13	2025-07-10 21:25:05
2386	224	99	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2388	224	100	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2390	224	79	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2392	224	86	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2396	224	104	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2399	224	114	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2400	224	115	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2401	224	117	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2404	224	120	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2406	224	122	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2407	224	123	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2409	224	145	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2413	224	139	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2425	173	224	55	2025-06-04 08:00:13	2025-06-04 08:00:13
2506	143	222	55	2025-06-04 10:17:59	2025-06-04 10:17:59
2395	224	93	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2423	224	153	55	2025-06-04 08:00:13	2025-07-10 21:25:05
1951	215	181	66	2025-06-03 05:39:44	2025-06-04 09:13:31
2429	197	222	88	2025-06-04 10:17:58	2025-06-04 10:17:58
2431	204	222	88	2025-06-04 10:17:58	2025-06-04 10:17:58
2433	212	222	88	2025-06-04 10:17:58	2025-06-04 10:17:58
2436	58	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2438	63	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2442	68	222	55	2025-06-04 10:17:58	2025-06-04 10:17:58
2444	69	222	55	2025-06-04 10:17:58	2025-06-04 10:17:58
2446	70	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2451	128	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2453	75	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2455	76	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2464	135	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2470	209	222	77	2025-06-04 10:17:58	2025-06-04 10:17:58
2475	196	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2479	97	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2481	99	222	44	2025-06-04 10:17:58	2025-06-04 10:17:58
2487	86	222	55	2025-06-04 10:17:58	2025-06-04 10:17:58
2492	113	222	44	2025-06-04 10:17:59	2025-06-04 10:17:59
2497	119	222	44	2025-06-04 10:17:59	2025-06-04 10:17:59
2499	120	222	44	2025-06-04 10:17:59	2025-06-04 10:17:59
2502	123	222	55	2025-06-04 10:17:59	2025-06-04 10:17:59
2504	145	222	44	2025-06-04 10:17:59	2025-06-04 10:17:59
2509	140	222	44	2025-06-04 10:17:59	2025-06-04 10:17:59
2511	141	222	44	2025-06-04 10:17:59	2025-06-04 10:17:59
2513	147	222	44	2025-06-04 10:17:59	2025-06-04 10:17:59
2519	173	222	55	2025-06-04 10:17:59	2025-06-04 10:17:59
2427	222	165	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2428	222	197	77	2025-06-04 10:17:58	2025-06-04 10:18:08
2430	222	204	77	2025-06-04 10:17:58	2025-06-04 10:18:08
2432	222	212	77	2025-06-04 10:17:58	2025-06-04 10:18:08
2434	222	56	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2435	222	58	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2439	222	66	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2440	222	67	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2441	222	68	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2443	222	69	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2445	222	70	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2447	222	71	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2448	222	124	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2449	222	125	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2450	222	128	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2452	222	75	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2454	222	76	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2456	222	78	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2457	222	129	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2458	222	200	66	2025-06-04 10:17:58	2025-06-04 10:18:08
2459	222	50	88	2025-06-04 10:17:58	2025-06-04 10:18:08
2460	222	194	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2461	222	131	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2462	222	133	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2465	222	142	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2466	222	177	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2467	222	195	66	2025-06-04 10:17:58	2025-06-04 10:18:08
2468	222	202	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2469	222	209	77	2025-06-04 10:17:58	2025-06-04 10:18:08
2471	222	215	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2472	222	191	88	2025-06-04 10:17:58	2025-06-04 10:18:08
2473	191	222	77	2025-06-04 10:17:58	2025-06-04 10:18:08
2474	222	196	77	2025-06-04 10:17:58	2025-06-04 10:18:08
2477	210	222	100	2025-06-04 10:17:58	2025-06-06 14:13:35
2478	222	97	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2480	222	99	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2482	222	100	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2483	222	102	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2484	222	79	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2485	222	85	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2486	222	86	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2488	222	88	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2490	222	104	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2491	222	113	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2493	222	114	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2494	222	115	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2495	222	117	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2496	222	119	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2498	222	120	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2500	222	122	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2501	222	123	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2503	222	145	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2505	222	143	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2507	222	139	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2508	222	140	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2510	222	141	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2512	222	147	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2514	222	148	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2515	222	149	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2516	222	152	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2518	222	173	44	2025-06-04 10:17:59	2025-06-04 10:18:08
2476	222	210	66	2025-06-04 10:17:58	2025-06-06 13:16:21
2417	141	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2419	147	224	55	2025-06-04 08:00:13	2025-07-10 21:12:01
2343	224	63	55	2025-06-04 08:00:12	2025-07-10 21:25:04
2416	224	141	66	2025-06-04 08:00:13	2025-07-10 21:25:05
2418	224	147	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2420	224	148	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2421	224	149	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2422	224	152	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2424	224	173	55	2025-06-04 08:00:13	2025-07-10 21:25:05
2426	222	54	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2437	222	63	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2463	222	135	55	2025-06-04 10:17:58	2025-06-04 10:18:08
2489	222	93	44	2025-06-04 10:17:58	2025-06-04 10:18:08
2517	222	153	55	2025-06-04 10:17:59	2025-06-04 10:18:08
2520	226	174	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2521	174	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2522	226	181	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2523	226	193	100	2025-06-04 12:14:58	2025-06-04 12:14:58
2524	193	226	55	2025-06-04 12:14:58	2025-06-04 12:14:58
2525	226	223	100	2025-06-04 12:14:58	2025-06-04 12:14:58
2526	223	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2527	226	55	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2528	226	57	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2529	226	59	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2530	226	60	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2531	226	61	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2532	61	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2533	226	62	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2534	226	64	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2535	226	65	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2536	226	72	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2537	226	73	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2538	73	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2539	226	126	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2540	126	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2541	226	127	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2542	127	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2543	226	166	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2544	226	74	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2545	74	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2546	226	77	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2547	77	226	55	2025-06-04 12:14:58	2025-06-04 12:14:58
2548	226	130	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2549	130	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2550	226	51	100	2025-06-04 12:14:58	2025-06-04 12:14:58
2551	51	226	88	2025-06-04 12:14:58	2025-06-04 12:14:58
2552	226	214	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2553	226	176	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2556	226	132	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2557	132	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2558	226	134	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2559	134	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2560	226	136	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2561	226	137	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2562	137	226	55	2025-06-04 12:14:58	2025-06-04 12:14:58
2563	226	138	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2564	138	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2565	226	168	88	2025-06-04 12:14:58	2025-06-04 12:14:58
2566	168	226	88	2025-06-04 12:14:58	2025-06-04 12:14:58
2567	226	189	100	2025-06-04 12:14:58	2025-06-04 12:14:58
2568	226	222	100	2025-06-04 12:14:58	2025-06-04 12:14:58
2569	222	226	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2570	226	171	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2571	171	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2572	226	179	100	2025-06-04 12:14:58	2025-06-04 12:14:58
2573	179	226	55	2025-06-04 12:14:58	2025-06-04 12:14:58
2574	226	94	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2575	94	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2576	226	95	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2577	226	96	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2578	96	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2579	226	98	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2580	98	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2581	226	101	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2582	226	103	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2583	226	80	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2584	226	81	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2585	226	82	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2586	82	226	55	2025-06-04 12:14:58	2025-06-04 12:14:58
2587	226	83	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2588	83	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2589	226	84	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2590	84	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2591	226	87	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2592	226	89	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2593	226	90	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2594	90	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2595	226	91	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2596	91	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2597	226	92	66	2025-06-04 12:14:58	2025-06-04 12:14:58
2599	226	105	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2600	226	106	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2601	226	107	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2602	226	108	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2603	108	226	55	2025-06-04 12:14:58	2025-06-04 12:14:58
2604	226	109	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2605	226	110	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2606	226	111	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2607	226	112	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2608	112	226	55	2025-06-04 12:14:58	2025-06-04 12:14:58
2609	226	116	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2610	226	118	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2611	226	121	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2612	226	144	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2613	144	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2614	226	146	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2615	226	150	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2616	150	226	44	2025-06-04 12:14:58	2025-06-04 12:14:58
2617	226	151	77	2025-06-04 12:14:58	2025-06-04 12:14:58
2618	226	53	77	2025-06-04 12:14:58	2025-06-04 12:14:58
15299	318	210	77	2025-12-17 06:58:24	2025-12-17 07:57:15
2598	226	216	88	2025-06-04 12:14:58	2025-07-10 19:24:02
2554	226	224	88	2025-06-04 12:14:58	2025-07-10 21:12:01
2555	224	226	88	2025-06-04 12:14:58	2025-07-10 21:25:05
2623	226	219	100	2025-06-04 12:14:58	2025-06-04 12:14:58
2624	227	54	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2625	227	165	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2626	227	197	100	2025-06-04 17:28:08	2025-06-04 17:28:08
2627	197	227	88	2025-06-04 17:28:08	2025-06-04 17:28:08
2628	227	204	100	2025-06-04 17:28:08	2025-06-04 17:28:08
2629	204	227	88	2025-06-04 17:28:08	2025-06-04 17:28:08
2630	227	212	100	2025-06-04 17:28:08	2025-06-04 17:28:08
2631	212	227	88	2025-06-04 17:28:08	2025-06-04 17:28:08
2632	227	56	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2633	227	58	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2634	58	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2635	227	63	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2636	63	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2637	227	66	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2638	227	67	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2639	227	68	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2640	68	227	55	2025-06-04 17:28:08	2025-06-04 17:28:08
2641	227	69	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2642	69	227	55	2025-06-04 17:28:08	2025-06-04 17:28:08
2643	227	70	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2644	70	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2645	227	71	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2646	227	124	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2647	227	125	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2648	227	128	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2649	128	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2650	227	75	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2651	75	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2652	227	76	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2653	76	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2654	227	78	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2655	227	129	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2656	227	200	88	2025-06-04 17:28:08	2025-06-04 17:28:08
2657	227	50	100	2025-06-04 17:28:08	2025-06-04 17:28:08
2658	227	194	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2659	227	131	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2660	227	133	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2661	227	135	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2662	135	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2663	227	142	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2664	227	177	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2665	227	195	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2666	227	202	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2667	227	209	100	2025-06-04 17:28:08	2025-06-04 17:28:08
2668	209	227	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2669	227	215	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2670	227	191	100	2025-06-04 17:28:08	2025-06-04 17:28:08
2671	191	227	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2672	227	196	100	2025-06-04 17:28:08	2025-06-04 17:28:08
2673	196	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2676	227	97	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2677	97	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2678	227	99	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2679	99	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2680	227	100	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2681	227	102	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2682	227	79	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2683	227	85	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2684	227	86	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2685	86	227	55	2025-06-04 17:28:08	2025-06-04 17:28:08
2686	227	88	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2687	227	93	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2688	227	226	100	2025-06-04 17:28:08	2025-06-04 17:28:08
2689	226	227	88	2025-06-04 17:28:08	2025-06-04 17:28:08
2690	227	104	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2619	226	192	88	2025-06-04 12:14:58	2025-11-17 15:32:36
2691	227	113	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2692	113	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2693	227	114	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2694	227	115	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2695	227	117	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2696	227	119	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2697	119	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2698	227	120	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2699	120	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2700	227	122	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2701	227	123	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2702	123	227	55	2025-06-04 17:28:08	2025-06-04 17:28:08
2703	227	145	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2704	145	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2705	227	143	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2706	143	227	55	2025-06-04 17:28:08	2025-06-04 17:28:08
2707	227	139	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2708	227	140	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2709	140	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2710	227	141	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2711	141	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2712	227	147	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2713	147	227	44	2025-06-04 17:28:08	2025-06-04 17:28:08
2714	227	148	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2715	227	149	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2716	227	152	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2717	227	153	77	2025-06-04 17:28:08	2025-06-04 17:28:08
2718	227	173	66	2025-06-04 17:28:08	2025-06-04 17:28:08
2719	173	227	55	2025-06-04 17:28:08	2025-06-04 17:28:08
2720	230	174	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2721	174	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2722	230	181	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2723	230	193	100	2025-06-05 07:04:13	2025-06-05 07:04:13
2724	193	230	55	2025-06-05 07:04:13	2025-06-05 07:04:13
2725	230	223	100	2025-06-05 07:04:13	2025-06-05 07:04:13
2726	223	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2727	230	55	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2728	230	57	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2674	227	210	77	2025-06-04 17:28:08	2025-06-06 13:29:37
2675	210	227	100	2025-06-04 17:28:08	2025-06-06 14:13:35
2729	230	59	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2730	230	60	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2731	230	61	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2732	61	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2733	230	62	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2734	230	64	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2735	230	65	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2736	230	72	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2737	230	73	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2738	73	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2739	230	126	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2740	126	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2741	230	127	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2742	127	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2743	230	166	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2744	230	74	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2745	74	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2746	230	77	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2747	77	230	55	2025-06-05 07:04:13	2025-06-05 07:04:13
2748	230	130	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2749	130	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2750	230	51	100	2025-06-05 07:04:13	2025-06-05 07:04:13
2751	51	230	88	2025-06-05 07:04:13	2025-06-05 07:04:13
2752	230	214	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2753	230	176	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2756	230	132	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2757	132	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2758	230	134	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2759	134	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2760	230	136	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2761	230	137	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2762	137	230	55	2025-06-05 07:04:13	2025-06-05 07:04:13
2763	230	138	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2764	138	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2765	230	168	88	2025-06-05 07:04:13	2025-06-05 07:04:13
2766	168	230	88	2025-06-05 07:04:13	2025-06-05 07:04:13
2767	230	189	100	2025-06-05 07:04:13	2025-06-05 07:04:13
2768	230	222	100	2025-06-05 07:04:13	2025-06-05 07:04:13
2769	222	230	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2770	230	171	66	2025-06-05 07:04:13	2025-06-05 07:04:13
2771	171	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2772	230	179	100	2025-06-05 07:04:13	2025-06-05 07:04:13
2773	179	230	55	2025-06-05 07:04:13	2025-06-05 07:04:13
2774	230	94	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2775	94	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2776	230	95	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2777	230	96	77	2025-06-05 07:04:13	2025-06-05 07:04:13
2778	96	230	44	2025-06-05 07:04:13	2025-06-05 07:04:13
2779	230	98	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2780	98	230	44	2025-06-05 07:04:14	2025-06-05 07:04:14
2781	230	101	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2782	230	103	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2783	230	80	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2784	230	81	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2785	230	82	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2786	82	230	55	2025-06-05 07:04:14	2025-06-05 07:04:14
2787	230	83	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2788	83	230	44	2025-06-05 07:04:14	2025-06-05 07:04:14
2789	230	84	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2790	84	230	44	2025-06-05 07:04:14	2025-06-05 07:04:14
2791	230	87	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2792	230	89	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2793	230	90	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2794	90	230	44	2025-06-05 07:04:14	2025-06-05 07:04:14
2795	230	91	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2796	91	230	44	2025-06-05 07:04:14	2025-06-05 07:04:14
2797	230	92	66	2025-06-05 07:04:14	2025-06-05 07:04:14
2799	230	105	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2800	230	106	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2801	230	107	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2802	230	108	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2803	108	230	55	2025-06-05 07:04:14	2025-06-05 07:04:14
2804	230	109	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2805	230	110	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2806	230	111	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2807	230	112	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2808	112	230	55	2025-06-05 07:04:14	2025-06-05 07:04:14
2809	230	116	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2810	230	118	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2811	230	121	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2812	230	144	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2813	144	230	44	2025-06-05 07:04:14	2025-06-05 07:04:14
2814	230	146	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2815	230	150	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2816	150	230	44	2025-06-05 07:04:14	2025-06-05 07:04:14
2817	230	151	77	2025-06-05 07:04:14	2025-06-05 07:04:14
2818	230	53	77	2025-06-05 07:04:14	2025-06-05 07:04:14
15339	318	120	66	2025-12-17 06:58:24	2025-12-17 07:57:15
2823	230	219	100	2025-06-05 07:04:14	2025-06-05 07:04:14
2622	211	226	55	2025-06-04 12:14:58	2025-06-05 07:58:35
2821	230	211	88	2025-06-05 07:04:14	2025-06-05 07:40:43
2621	226	211	88	2025-06-04 12:14:58	2025-06-05 07:40:43
2825	227	230	100	2025-06-05 07:04:14	2025-06-05 07:45:52
2824	230	227	88	2025-06-05 07:04:14	2025-06-05 07:45:52
2826	231	54	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2827	231	165	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2828	231	197	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2829	197	231	88	2025-06-05 07:55:48	2025-06-05 07:55:48
2830	231	204	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2831	204	231	88	2025-06-05 07:55:48	2025-06-05 07:55:48
2832	231	212	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2833	212	231	88	2025-06-05 07:55:48	2025-06-05 07:55:48
2798	230	216	88	2025-06-05 07:04:14	2025-07-10 19:24:01
2754	230	224	88	2025-06-05 07:04:13	2025-07-10 21:12:01
2755	224	230	88	2025-06-05 07:04:13	2025-07-10 21:25:04
2834	231	230	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2835	230	231	88	2025-06-05 07:55:48	2025-06-05 07:55:48
2836	231	56	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2837	231	58	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2838	58	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2839	231	63	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2840	63	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2841	231	66	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2842	231	67	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2843	231	68	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2844	68	231	55	2025-06-05 07:55:48	2025-06-05 07:55:48
2845	231	69	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2846	69	231	55	2025-06-05 07:55:48	2025-06-05 07:55:48
2847	231	70	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2848	70	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2849	231	71	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2850	231	124	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2851	231	125	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2852	231	128	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2853	128	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2854	231	75	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2855	75	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2856	231	76	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2857	76	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2858	231	78	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2859	231	129	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2860	231	200	88	2025-06-05 07:55:48	2025-06-05 07:55:48
2861	231	50	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2862	231	194	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2863	231	131	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2864	231	133	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2865	231	135	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2866	135	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2867	231	142	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2868	231	177	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2869	231	195	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2870	231	202	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2871	231	209	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2872	209	231	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2873	231	215	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2874	231	191	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2875	191	231	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2876	231	196	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2877	196	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2880	231	97	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2881	97	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2882	231	99	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2883	99	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2884	231	100	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2885	231	102	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2886	231	79	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2887	231	85	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2888	231	86	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2889	86	231	55	2025-06-05 07:55:48	2025-06-05 07:55:48
2890	231	88	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2891	231	93	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2892	231	226	100	2025-06-05 07:55:48	2025-06-05 07:55:48
2893	226	231	88	2025-06-05 07:55:48	2025-06-05 07:55:48
2894	231	104	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2895	231	113	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2896	113	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2897	231	114	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2898	231	115	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2899	231	117	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2900	231	119	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2901	119	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2902	231	120	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2903	120	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2819	230	192	88	2025-06-05 07:04:14	2025-11-17 15:32:36
2904	231	122	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2905	231	123	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2906	123	231	55	2025-06-05 07:55:48	2025-06-05 07:55:48
2907	231	145	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2908	145	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2909	231	143	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2910	143	231	55	2025-06-05 07:55:48	2025-06-05 07:55:48
2911	231	139	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2912	231	140	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2913	140	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2914	231	141	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2915	141	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2916	231	147	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2917	147	231	44	2025-06-05 07:55:48	2025-06-05 07:55:48
2918	231	148	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2919	231	149	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2920	231	152	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2921	231	153	77	2025-06-05 07:55:48	2025-06-05 07:55:48
2922	231	173	66	2025-06-05 07:55:48	2025-06-05 07:55:48
2923	173	231	55	2025-06-05 07:55:48	2025-06-05 07:55:48
2822	211	230	55	2025-06-05 07:04:14	2025-06-05 07:58:35
2924	232	54	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2925	232	165	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2926	232	197	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2927	197	232	88	2025-06-05 08:09:26	2025-06-05 08:09:26
2928	232	204	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2929	204	232	88	2025-06-05 08:09:26	2025-06-05 08:09:26
2930	232	212	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2931	212	232	88	2025-06-05 08:09:26	2025-06-05 08:09:26
2932	232	230	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2933	230	232	88	2025-06-05 08:09:26	2025-06-05 08:09:26
2934	232	56	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2935	232	58	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2936	58	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2937	232	63	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2938	63	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2939	232	66	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2879	210	231	100	2025-06-05 07:55:48	2025-06-06 14:13:35
2940	232	67	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2941	232	68	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2942	68	232	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2943	232	69	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2944	69	232	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2945	232	70	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2946	70	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2947	232	71	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2948	232	124	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2949	232	125	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2950	232	128	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2951	128	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2952	232	75	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2953	75	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2954	232	76	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2955	76	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2956	232	78	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2957	232	129	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2958	232	200	66	2025-06-05 08:09:26	2025-06-05 08:09:26
2959	232	50	88	2025-06-05 08:09:26	2025-06-05 08:09:26
2960	232	194	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2961	232	131	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2962	232	133	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2963	232	135	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2964	135	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2965	232	142	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2966	232	177	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2967	232	195	66	2025-06-05 08:09:26	2025-06-05 08:09:26
2968	232	202	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2969	232	209	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2970	209	232	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2971	232	215	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2972	232	191	88	2025-06-05 08:09:26	2025-06-05 08:09:26
2973	191	232	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2974	232	196	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2975	196	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2978	232	97	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2979	97	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2980	232	99	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2981	99	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2982	232	100	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2983	232	102	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2984	232	79	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2985	232	85	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2986	232	86	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2987	86	232	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2988	232	88	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2989	232	93	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2990	232	226	77	2025-06-05 08:09:26	2025-06-05 08:09:26
2991	226	232	88	2025-06-05 08:09:26	2025-06-05 08:09:26
2992	232	104	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2993	232	113	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2994	113	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
2995	232	114	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2996	232	115	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2997	232	117	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2998	232	119	55	2025-06-05 08:09:26	2025-06-05 08:09:26
2999	119	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
3000	232	120	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3001	120	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
3002	232	122	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3003	232	123	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3004	123	232	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3005	232	145	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3006	145	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
3007	232	143	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3008	143	232	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3009	232	139	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3010	232	140	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3011	140	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
3012	232	141	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3013	141	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
3014	232	147	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3015	147	232	44	2025-06-05 08:09:26	2025-06-05 08:09:26
3016	232	148	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3017	232	149	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3018	232	152	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3019	232	153	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3020	232	173	44	2025-06-05 08:09:26	2025-06-05 08:09:26
3021	173	232	55	2025-06-05 08:09:26	2025-06-05 08:09:26
3025	197	233	88	2025-06-05 09:00:49	2025-06-05 09:00:49
3027	204	233	88	2025-06-05 09:00:49	2025-06-05 09:00:49
3029	212	233	88	2025-06-05 09:00:49	2025-06-05 09:00:49
3031	230	233	88	2025-06-05 09:00:49	2025-06-05 09:00:49
3033	233	58	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3034	58	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3035	233	63	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3036	63	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3037	233	66	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3039	233	68	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3040	68	233	55	2025-06-05 09:00:49	2025-06-05 09:00:49
3041	233	69	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3042	69	233	55	2025-06-05 09:00:49	2025-06-05 09:00:49
3043	233	70	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3044	70	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3023	233	165	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3024	233	197	66	2025-06-05 09:00:49	2025-06-05 09:01:43
3026	233	204	66	2025-06-05 09:00:49	2025-06-05 09:01:43
3028	233	212	66	2025-06-05 09:00:49	2025-06-05 09:01:43
3030	233	230	66	2025-06-05 09:00:49	2025-06-05 09:01:43
3032	233	56	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3038	233	67	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3045	233	71	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3046	233	124	55	2025-06-05 09:00:49	2025-06-05 09:01:43
2976	232	210	55	2025-06-05 08:09:26	2025-06-06 13:29:36
3049	128	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3050	233	75	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3051	75	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3052	233	76	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3053	76	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3054	233	78	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3062	135	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3068	209	233	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3073	196	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3077	97	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3079	99	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3083	233	85	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3084	233	86	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3085	86	233	55	2025-06-05 09:00:49	2025-06-05 09:00:49
3086	233	88	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3087	233	93	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3089	226	233	88	2025-06-05 09:00:49	2025-06-05 09:00:49
3092	113	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3097	119	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3099	120	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3102	123	233	55	2025-06-05 09:00:49	2025-06-05 09:00:49
3104	145	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3106	143	233	55	2025-06-05 09:00:49	2025-06-05 09:00:49
3109	140	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3111	141	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3113	147	233	44	2025-06-05 09:00:49	2025-06-05 09:00:49
3118	233	173	77	2025-06-05 09:00:49	2025-06-05 09:00:49
3119	173	233	55	2025-06-05 09:00:49	2025-06-05 09:00:49
3022	233	54	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3047	233	125	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3048	233	128	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3055	233	129	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3056	233	200	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3057	233	50	88	2025-06-05 09:00:49	2025-06-05 09:01:43
3058	233	194	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3059	233	131	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3060	233	133	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3061	233	135	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3063	233	142	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3064	233	177	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3065	233	195	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3066	233	202	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3067	233	209	66	2025-06-05 09:00:49	2025-06-05 09:01:43
3069	233	215	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3070	233	191	77	2025-06-05 09:00:49	2025-06-05 09:01:43
3071	191	233	77	2025-06-05 09:00:49	2025-06-05 09:01:43
3072	233	196	66	2025-06-05 09:00:49	2025-06-05 09:01:43
3074	233	210	44	2025-06-05 09:00:49	2025-06-06 13:29:37
3076	233	97	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3078	233	99	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3080	233	100	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3081	233	102	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3082	233	79	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3088	233	226	66	2025-06-05 09:00:49	2025-06-05 09:01:43
3090	233	104	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3091	233	113	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3093	233	114	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3094	233	115	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3095	233	117	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3096	233	119	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3098	233	120	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3100	233	122	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3101	233	123	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3103	233	145	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3105	233	143	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3107	233	139	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3108	233	140	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3110	233	141	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3112	233	147	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3114	233	148	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3115	233	149	44	2025-06-05 09:00:49	2025-06-05 09:01:43
3116	233	152	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3117	233	153	55	2025-06-05 09:00:49	2025-06-05 09:01:43
3120	234	54	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3121	234	165	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3122	234	197	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3123	197	234	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3124	234	204	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3125	204	234	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3126	234	212	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3127	212	234	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3128	234	230	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3129	230	234	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3130	234	56	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3131	234	58	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3132	58	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3133	234	63	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3134	63	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3135	234	66	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3136	234	67	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3137	234	68	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3138	68	234	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3139	234	69	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3140	69	234	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3141	234	70	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3142	70	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3143	234	71	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3144	234	124	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3145	234	125	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3146	234	128	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3147	128	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3148	234	75	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3149	75	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3150	234	76	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3151	76	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3152	234	78	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3153	234	129	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3154	234	200	77	2025-06-05 09:10:35	2025-06-05 09:10:35
3155	234	50	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3156	234	194	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3157	234	131	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3158	234	133	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3159	234	135	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3160	135	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3161	234	142	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3162	234	177	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3163	234	195	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3164	234	202	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3165	234	209	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3166	209	234	77	2025-06-05 09:10:35	2025-06-05 09:10:35
3167	234	215	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3168	234	191	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3169	191	234	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3170	234	196	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3171	196	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3174	234	97	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3175	97	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3176	234	99	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3177	99	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3178	234	100	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3179	234	102	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3180	234	79	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3181	234	85	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3182	234	86	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3183	86	234	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3184	234	88	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3185	234	93	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3186	234	226	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3187	226	234	88	2025-06-05 09:10:35	2025-06-05 09:10:35
3188	234	104	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3189	234	113	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3190	113	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3191	234	114	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3192	234	115	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3193	234	117	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3194	234	119	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3195	119	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3196	234	120	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3197	120	234	44	2025-06-05 09:10:35	2025-06-05 09:10:35
3198	234	122	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3199	234	123	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3200	123	234	55	2025-06-05 09:10:35	2025-06-05 09:10:35
3201	234	145	66	2025-06-05 09:10:35	2025-06-05 09:10:35
3202	145	234	44	2025-06-05 09:10:36	2025-06-05 09:10:36
3203	234	143	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3204	143	234	55	2025-06-05 09:10:36	2025-06-05 09:10:36
3205	234	139	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3206	234	140	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3207	140	234	44	2025-06-05 09:10:36	2025-06-05 09:10:36
3208	234	141	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3209	141	234	44	2025-06-05 09:10:36	2025-06-05 09:10:36
3210	234	147	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3211	147	234	44	2025-06-05 09:10:36	2025-06-05 09:10:36
3212	234	148	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3213	234	149	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3214	234	152	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3215	234	153	66	2025-06-05 09:10:36	2025-06-05 09:10:36
3216	234	173	55	2025-06-05 09:10:36	2025-06-05 09:10:36
3217	173	234	55	2025-06-05 09:10:36	2025-06-05 09:10:36
3218	235	174	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3219	174	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3220	235	181	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3221	235	193	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3222	193	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3223	235	223	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3224	223	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3225	235	55	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3226	55	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3227	235	57	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3228	57	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3229	235	59	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3230	59	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3231	235	60	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3232	60	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3233	235	61	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3234	61	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3235	235	62	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3236	235	64	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3237	235	65	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3238	65	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3239	235	72	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3240	72	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3241	235	73	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3242	73	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3243	235	126	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3244	126	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3245	235	127	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3246	127	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3247	235	166	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3248	166	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3249	235	74	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3250	74	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3251	235	77	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3252	77	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3253	235	130	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3254	130	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3255	235	51	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3256	51	235	88	2025-06-05 10:31:02	2025-06-05 10:31:02
3257	235	214	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3172	234	210	66	2025-06-05 09:10:35	2025-06-06 13:16:21
3258	235	176	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3261	235	231	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3262	231	235	88	2025-06-05 10:31:02	2025-06-05 10:31:02
3263	235	132	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3264	132	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3265	235	134	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3266	134	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3267	235	136	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3268	136	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3269	235	137	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3270	137	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3271	235	138	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3272	138	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3273	235	168	88	2025-06-05 10:31:02	2025-06-05 10:31:02
3274	168	235	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3275	235	189	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3276	189	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3277	235	222	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3278	222	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3279	235	232	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3280	232	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3281	235	171	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3282	171	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3283	235	179	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3284	179	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3285	235	94	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3286	94	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3287	235	95	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3288	95	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3289	235	96	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3290	96	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3291	235	98	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3292	98	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3293	235	101	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3294	235	103	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3295	103	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3296	235	80	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3297	80	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3298	235	81	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3299	235	82	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3300	82	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3301	235	83	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3302	83	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3303	235	84	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3304	84	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3305	235	87	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3306	87	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3307	235	89	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3308	89	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3309	235	90	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3310	90	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3311	235	91	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3312	91	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3313	235	92	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3314	92	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3316	235	233	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3317	233	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3318	235	105	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3319	105	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3320	235	106	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3321	235	107	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3322	235	108	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3323	108	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3324	235	109	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3325	235	110	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3326	235	111	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3327	111	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3328	235	112	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3329	112	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3330	235	116	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3331	116	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3332	235	118	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3333	118	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3334	235	121	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3335	121	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3336	235	144	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3337	144	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3338	235	146	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3339	146	235	44	2025-06-05 10:31:02	2025-06-05 10:31:02
3340	235	150	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3341	150	235	55	2025-06-05 10:31:02	2025-06-05 10:31:02
3342	235	151	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3343	235	53	77	2025-06-05 10:31:02	2025-06-05 10:31:02
15359	318	148	55	2025-12-17 06:58:24	2025-12-17 07:57:15
3346	235	219	88	2025-06-05 10:31:02	2025-06-05 10:31:02
3347	235	227	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3348	227	235	77	2025-06-05 10:31:02	2025-06-05 10:31:02
3349	235	211	88	2025-06-05 10:31:02	2025-06-05 10:31:02
3350	235	234	100	2025-06-05 10:31:02	2025-06-05 10:31:02
3351	234	235	66	2025-06-05 10:31:02	2025-06-05 10:31:02
3352	237	174	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3353	174	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3358	223	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3359	237	55	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3360	55	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3361	237	57	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3362	57	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3363	237	59	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3364	59	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3355	237	193	66	2025-06-05 12:06:28	2025-06-05 12:30:01
3315	235	216	88	2025-06-05 10:31:02	2025-07-10 19:24:01
3356	193	237	77	2025-06-05 12:06:28	2025-06-05 12:30:16
3357	237	223	55	2025-06-05 12:06:28	2025-06-05 12:30:16
3259	235	224	88	2025-06-05 10:31:02	2025-07-10 21:12:01
3260	224	235	88	2025-06-05 10:31:02	2025-07-10 21:25:04
3365	237	60	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3366	60	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3367	237	61	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3368	61	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3369	237	62	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3370	237	64	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3371	237	65	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3372	65	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3373	237	72	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3374	72	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3375	237	73	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3376	73	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3378	126	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3380	127	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3382	166	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3383	237	74	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3384	74	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3385	237	77	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3386	77	237	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3388	130	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3390	51	237	88	2025-06-05 12:06:28	2025-06-05 12:06:28
3392	237	176	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3396	231	237	88	2025-06-05 12:06:28	2025-06-05 12:06:28
3398	132	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3400	134	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3402	136	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3404	137	237	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3406	138	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3408	168	237	100	2025-06-05 12:06:28	2025-06-05 12:06:28
3412	222	237	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3415	237	171	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3416	171	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3418	179	237	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3420	94	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3422	95	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3424	96	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3426	98	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3429	103	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3430	237	80	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3431	80	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3432	237	81	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3433	237	82	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3434	82	237	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3435	237	83	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3436	83	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3437	237	84	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3438	84	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3439	237	87	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3440	87	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3441	237	89	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3442	89	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3443	237	90	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3444	90	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3445	237	91	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3446	91	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3447	237	92	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3448	92	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3453	105	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3457	108	237	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3461	111	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3463	112	237	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3465	116	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3467	118	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3469	121	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3470	237	144	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3471	144	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3379	237	127	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3381	237	166	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3387	237	130	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3394	224	237	88	2025-06-05 12:06:28	2025-07-10 21:25:05
3391	237	214	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3395	237	231	55	2025-06-05 12:06:28	2025-06-05 12:30:16
3407	237	168	44	2025-06-05 12:06:28	2025-06-05 12:30:16
3397	237	132	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3399	237	134	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3403	237	137	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3344	235	192	88	2025-06-05 10:31:02	2025-11-17 15:32:36
3405	237	138	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3410	189	237	55	2025-06-05 12:06:28	2025-06-05 12:30:16
3409	237	189	66	2025-06-05 12:06:28	2025-06-05 12:30:01
3413	237	232	88	2025-06-05 12:06:28	2025-06-05 12:30:16
3414	232	237	66	2025-06-05 12:06:28	2025-06-05 12:30:01
3450	237	233	88	2025-06-05 12:06:28	2025-06-05 12:30:16
3419	237	94	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3421	237	95	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3423	237	96	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3425	237	98	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3427	237	101	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3428	237	103	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3451	233	237	55	2025-06-05 12:06:28	2025-06-05 12:30:01
3452	237	105	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3454	237	106	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3455	237	107	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3456	237	108	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3459	237	110	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3460	237	111	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3462	237	112	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3464	237	116	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3466	237	118	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3468	237	121	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3389	237	51	55	2025-06-05 12:06:28	2025-06-05 12:30:16
3411	237	222	55	2025-06-05 12:06:28	2025-06-05 12:30:16
3417	237	179	55	2025-06-05 12:06:28	2025-06-05 12:30:16
3449	237	216	77	2025-06-05 12:06:28	2025-07-10 19:24:02
3393	237	224	66	2025-06-05 12:06:28	2025-07-10 21:12:01
3472	237	146	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3473	146	237	44	2025-06-05 12:06:28	2025-06-05 12:06:28
3474	237	150	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3475	150	237	55	2025-06-05 12:06:28	2025-06-05 12:06:28
3476	237	151	66	2025-06-05 12:06:28	2025-06-05 12:06:28
3479	192	237	77	2025-06-05 12:06:28	2025-06-05 12:06:28
3354	237	181	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3377	237	126	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3401	237	136	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3458	237	109	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3477	237	53	44	2025-06-05 12:06:28	2025-06-05 12:30:01
3554	179	238	66	2025-06-05 14:30:38	2025-06-05 14:30:38
3482	227	237	88	2025-06-05 12:06:28	2025-06-05 12:30:01
3486	211	237	55	2025-06-05 12:30:01	2025-06-05 12:30:01
3556	94	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3485	234	237	77	2025-06-05 12:06:28	2025-06-05 12:30:01
3487	176	237	44	2025-06-05 12:30:16	2025-06-05 12:30:16
15389	318	293	88	2025-12-17 06:58:24	2025-12-17 07:57:15
3480	237	219	44	2025-06-05 12:06:28	2025-06-05 12:30:16
3481	237	227	88	2025-06-05 12:06:28	2025-06-05 12:30:16
3483	237	211	66	2025-06-05 12:06:28	2025-06-05 12:30:16
3484	237	234	77	2025-06-05 12:06:28	2025-06-05 12:30:16
3489	174	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3492	193	238	66	2025-06-05 14:30:38	2025-06-05 14:30:38
3494	223	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3496	55	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3498	57	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3500	59	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3502	60	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3504	61	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3508	65	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3510	72	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3512	73	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3514	126	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3516	127	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3518	166	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3520	74	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3522	77	238	66	2025-06-05 14:30:38	2025-06-05 14:30:38
3524	130	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3526	51	238	88	2025-06-05 14:30:38	2025-06-05 14:30:38
3532	231	238	88	2025-06-05 14:30:38	2025-06-05 14:30:38
3534	132	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3536	134	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3538	136	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3540	137	238	66	2025-06-05 14:30:38	2025-06-05 14:30:38
3542	138	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3544	168	238	100	2025-06-05 14:30:38	2025-06-05 14:30:38
3546	189	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3548	222	238	66	2025-06-05 14:30:38	2025-06-05 14:30:38
3552	171	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3558	95	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3560	96	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3562	98	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3565	103	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3567	80	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3570	82	238	66	2025-06-05 14:30:38	2025-06-05 14:30:38
3572	83	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3574	84	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3499	238	59	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3495	238	55	66	2025-06-05 14:30:38	2025-06-06 13:16:32
3497	238	57	66	2025-06-05 14:30:38	2025-06-06 13:16:32
3501	238	60	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3503	238	61	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3507	238	65	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3505	238	62	66	2025-06-05 14:30:38	2025-06-06 13:16:32
3506	238	64	66	2025-06-05 14:30:38	2025-06-06 13:16:32
3513	238	126	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3509	238	72	66	2025-06-05 14:30:38	2025-06-06 13:16:32
3511	238	73	66	2025-06-05 14:30:38	2025-06-06 13:16:32
3517	238	166	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3515	238	127	77	2025-06-05 14:30:38	2025-06-06 13:16:32
3521	238	77	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3523	238	130	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3525	238	51	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3530	224	238	77	2025-06-05 14:30:38	2025-07-10 21:25:05
3527	238	214	77	2025-06-05 14:30:38	2025-06-06 13:16:32
3531	238	231	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3535	238	134	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3533	238	132	77	2025-06-05 14:30:38	2025-06-06 13:16:32
3539	238	137	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3537	238	136	77	2025-06-05 14:30:38	2025-06-06 13:16:32
3541	238	138	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3543	238	168	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3547	238	222	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3545	238	189	77	2025-06-05 14:30:38	2025-06-06 13:16:32
3549	238	232	77	2025-06-05 14:30:38	2025-06-06 13:20:11
3550	232	238	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3551	238	171	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3559	238	96	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3555	238	94	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3557	238	95	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3561	238	98	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3569	238	82	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3563	238	101	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3566	238	80	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3568	238	81	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3571	238	83	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3573	238	84	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3493	238	223	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3490	238	181	77	2025-06-05 14:30:38	2025-06-06 13:16:32
3519	238	74	66	2025-06-05 14:30:38	2025-06-06 13:16:32
3553	238	179	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3529	238	224	55	2025-06-05 14:30:38	2025-07-10 21:12:01
3576	87	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3578	89	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3580	90	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3582	91	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3584	92	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3589	105	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3593	108	238	66	2025-06-05 14:30:38	2025-06-05 14:30:38
3597	111	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3599	112	238	66	2025-06-05 14:30:38	2025-06-05 14:30:38
3601	116	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3603	118	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3605	121	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3607	144	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3609	146	238	44	2025-06-05 14:30:38	2025-06-05 14:30:38
3611	150	238	55	2025-06-05 14:30:38	2025-06-05 14:30:38
3622	239	174	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3623	174	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3624	239	181	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3627	239	223	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3628	223	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3629	239	55	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3630	55	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3631	239	57	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3632	57	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3633	239	59	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3634	59	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3635	239	60	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3636	60	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3637	239	61	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3638	61	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3639	239	62	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3640	239	64	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3641	239	65	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3642	65	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3643	239	72	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3644	72	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3645	239	73	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3646	73	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3647	239	126	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3648	126	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3649	239	127	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3650	127	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3651	239	166	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3652	166	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3653	239	74	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3654	74	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3655	239	77	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3656	77	239	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3657	239	130	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3658	130	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3659	239	51	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3660	51	239	88	2025-06-06 03:58:44	2025-06-06 03:58:44
3661	239	214	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3662	239	176	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3665	239	231	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3666	231	239	88	2025-06-06 03:58:44	2025-06-06 03:58:44
3667	239	132	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3668	132	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3669	239	134	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3670	134	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3671	239	136	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3672	136	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3673	239	137	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3674	137	239	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3675	239	138	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3676	138	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3677	239	168	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3678	168	239	100	2025-06-06 03:58:44	2025-06-06 03:58:44
3679	239	189	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3681	239	222	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3626	193	239	77	2025-06-06 03:58:44	2025-06-06 04:01:27
3680	189	239	66	2025-06-06 03:58:44	2025-06-06 04:01:27
3577	238	89	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3581	238	91	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3583	238	92	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3592	238	108	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3587	233	238	55	2025-06-05 14:30:38	2025-06-06 13:16:33
3586	238	233	88	2025-06-05 14:30:38	2025-06-06 13:09:58
3591	238	107	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3596	238	111	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3594	238	109	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3595	238	110	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3598	238	112	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3600	238	116	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3606	238	144	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3602	238	118	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3604	238	121	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3610	238	150	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3608	238	146	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3613	238	53	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3612	238	151	66	2025-06-05 14:30:38	2025-06-06 13:16:33
15413	174	325	55	2025-12-22 17:20:11	2025-12-22 17:20:11
3616	238	219	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3618	227	238	88	2025-06-05 14:30:38	2025-06-06 13:16:33
3619	238	211	77	2025-06-05 14:30:38	2025-06-06 13:20:11
3621	234	238	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3575	238	87	66	2025-06-05 14:30:38	2025-06-06 13:16:33
3590	238	106	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3617	238	227	77	2025-06-05 14:30:38	2025-06-06 13:20:11
3585	238	216	66	2025-06-05 14:30:38	2025-07-10 19:24:02
3579	238	90	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3663	239	224	55	2025-06-06 03:58:44	2025-07-10 21:12:01
3664	224	239	77	2025-06-06 03:58:44	2025-07-10 21:25:05
3682	222	239	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3684	232	239	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3685	239	171	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3686	171	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3687	239	179	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3688	179	239	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3689	239	94	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3690	94	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3691	239	95	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3692	95	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3693	239	96	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3694	96	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3695	239	98	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3696	98	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3697	239	101	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3698	239	103	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3699	103	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3700	239	80	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3701	80	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3702	239	81	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3703	239	82	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3704	82	239	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3705	239	83	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3706	83	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3707	239	84	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3708	84	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3709	239	87	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3710	87	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3711	239	89	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3712	89	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3713	239	90	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3714	90	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3715	239	91	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3716	91	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3717	239	92	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3718	92	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3721	233	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3722	239	105	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3723	105	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3724	239	106	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3725	239	107	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3726	239	108	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3727	108	239	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3728	239	109	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3729	239	110	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3730	239	111	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3731	111	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3732	239	112	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3733	112	239	66	2025-06-06 03:58:44	2025-06-06 03:58:44
3734	239	116	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3735	116	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3736	239	118	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3737	118	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3738	239	121	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3739	121	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3740	239	144	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3741	144	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3742	239	146	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3743	146	239	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3744	239	150	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3745	150	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3746	239	151	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3747	239	53	44	2025-06-06 03:58:44	2025-06-06 03:58:44
3752	227	239	88	2025-06-06 03:58:44	2025-06-06 03:58:44
3754	211	239	55	2025-06-06 03:58:44	2025-06-06 03:58:44
3756	234	239	77	2025-06-06 03:58:44	2025-06-06 03:58:44
3625	239	193	44	2025-06-06 03:58:44	2025-06-06 04:01:27
3757	176	239	55	2025-06-06 04:01:27	2025-06-06 04:01:27
3683	239	232	66	2025-06-06 03:58:44	2025-06-06 04:01:27
3720	239	233	77	2025-06-06 03:58:44	2025-06-06 04:01:27
3750	239	219	44	2025-06-06 03:58:44	2025-06-06 04:01:27
3751	239	227	66	2025-06-06 03:58:44	2025-06-06 04:01:27
3753	239	211	44	2025-06-06 03:58:44	2025-06-06 04:01:27
3755	239	234	55	2025-06-06 03:58:44	2025-06-06 04:01:27
3758	240	174	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3759	174	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3760	240	181	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3764	223	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3765	240	55	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3766	55	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3767	240	57	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3768	57	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3769	240	59	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3770	59	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3749	192	239	77	2025-06-06 03:58:44	2025-11-17 15:32:36
3748	239	192	66	2025-06-06 03:58:44	2025-11-17 15:32:36
3771	240	60	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3772	60	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3773	240	61	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3774	61	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3775	240	62	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3776	240	64	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3777	240	65	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3778	65	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3779	240	72	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3780	72	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3781	240	73	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3782	73	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3784	126	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3786	127	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3762	193	240	77	2025-06-06 11:41:53	2025-06-06 11:42:14
3783	240	126	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3785	240	127	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3787	240	166	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3719	239	216	66	2025-06-06 03:58:44	2025-07-10 19:24:02
3788	166	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3789	240	74	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3790	74	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3791	240	77	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3792	77	240	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3794	130	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3796	51	240	88	2025-06-06 11:41:53	2025-06-06 11:41:53
3802	231	240	88	2025-06-06 11:41:53	2025-06-06 11:41:53
3804	132	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3806	134	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3808	136	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3810	137	240	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3812	138	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3814	168	240	100	2025-06-06 11:41:53	2025-06-06 11:41:53
3815	240	189	88	2025-06-06 11:41:53	2025-06-06 11:41:53
3818	222	240	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3820	232	240	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3821	240	171	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3822	171	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3824	179	240	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3826	94	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3828	95	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3830	96	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3832	98	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3835	103	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3836	240	80	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3837	80	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3838	240	81	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3839	240	82	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3840	82	240	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3841	240	83	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3842	83	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3843	240	84	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3844	84	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3845	240	87	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3846	87	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3847	240	89	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3848	89	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3849	240	90	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3850	90	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3851	240	91	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3852	91	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3853	240	92	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3854	92	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3855	240	216	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3857	233	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3859	105	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3863	108	240	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3867	111	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3869	112	240	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3871	116	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3873	118	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3875	121	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3876	240	144	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3877	144	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3878	240	146	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3879	146	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3880	240	150	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3881	150	240	55	2025-06-06 11:41:53	2025-06-06 11:41:53
3882	240	151	66	2025-06-06 11:41:53	2025-06-06 11:41:53
3888	227	240	88	2025-06-06 11:41:53	2025-06-06 11:41:53
3890	211	240	44	2025-06-06 11:41:53	2025-06-06 11:41:53
3892	234	240	77	2025-06-06 11:41:53	2025-06-06 11:41:53
3761	240	193	77	2025-06-06 11:41:53	2025-06-06 11:42:14
3763	240	223	66	2025-06-06 11:41:53	2025-06-06 11:42:14
3795	240	51	66	2025-06-06 11:41:53	2025-06-06 11:42:14
3797	240	214	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3798	240	176	55	2025-06-06 11:41:53	2025-06-06 11:42:14
3801	240	231	66	2025-06-06 11:41:53	2025-06-06 11:42:14
3803	240	132	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3805	240	134	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3807	240	136	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3809	240	137	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3813	240	168	55	2025-06-06 11:41:53	2025-06-06 11:42:14
3816	189	240	66	2025-06-06 11:41:53	2025-06-06 11:42:14
3817	240	222	66	2025-06-06 11:41:53	2025-06-06 11:42:14
3819	240	232	77	2025-06-06 11:41:53	2025-06-06 11:42:14
3823	240	179	66	2025-06-06 11:41:53	2025-06-06 11:42:14
3825	240	94	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3827	240	95	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3829	240	96	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3831	240	98	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3833	240	101	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3834	240	103	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3856	240	233	77	2025-06-06 11:41:53	2025-06-06 11:42:14
3858	240	105	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3860	240	106	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3861	240	107	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3862	240	108	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3864	240	109	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3865	240	110	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3868	240	112	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3870	240	116	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3872	240	118	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3874	240	121	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3883	240	53	55	2025-06-06 11:41:53	2025-06-06 11:42:14
3884	240	192	77	2025-06-06 11:41:53	2025-06-06 11:42:14
15414	325	181	77	2025-12-22 17:20:11	2025-12-22 17:20:11
3886	240	219	55	2025-06-06 11:41:53	2025-06-06 11:42:14
3887	240	227	77	2025-06-06 11:41:53	2025-06-06 11:42:14
3889	240	211	66	2025-06-06 11:41:53	2025-06-06 11:42:14
3891	240	234	77	2025-06-06 11:41:53	2025-06-06 11:42:14
3799	240	224	55	2025-06-06 11:41:53	2025-07-10 21:25:05
3800	224	240	88	2025-06-06 11:41:53	2025-07-10 21:25:05
3793	240	130	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3893	176	240	55	2025-06-06 11:42:14	2025-06-06 11:42:14
3811	240	138	44	2025-06-06 11:41:53	2025-06-06 11:42:14
3866	240	111	44	2025-06-06 11:41:53	2025-06-06 11:42:14
1578	174	210	55	2025-05-31 15:04:08	2025-06-06 13:16:20
3894	55	210	44	2025-06-06 13:16:20	2025-06-06 13:16:20
3895	57	210	44	2025-06-06 13:16:20	2025-06-06 13:16:20
3896	59	210	44	2025-06-06 13:16:20	2025-06-06 13:16:20
3897	60	210	44	2025-06-06 13:16:20	2025-06-06 13:16:20
3898	65	210	44	2025-06-06 13:16:20	2025-06-06 13:16:20
3899	72	210	44	2025-06-06 13:16:20	2025-06-06 13:16:20
3900	166	210	44	2025-06-06 13:16:20	2025-06-06 13:16:20
2878	231	210	88	2025-06-05 07:55:48	2025-06-06 13:16:20
3902	136	210	44	2025-06-06 13:16:20	2025-06-06 13:16:20
1623	179	210	66	2025-05-31 15:04:08	2025-06-06 13:16:21
3904	95	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3905	103	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3906	80	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3907	87	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3908	89	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3909	92	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3910	105	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3911	111	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3912	116	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3913	118	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3914	121	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3915	146	210	44	2025-06-06 13:16:21	2025-06-06 13:16:21
3917	174	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3564	238	103	77	2025-06-05 14:30:38	2025-06-06 13:16:33
3488	238	174	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3491	238	193	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3528	238	176	55	2025-06-05 14:30:38	2025-06-06 13:20:11
3588	238	105	66	2025-06-05 14:30:38	2025-06-06 13:20:11
3620	238	234	77	2025-06-05 14:30:38	2025-06-06 13:20:11
3922	223	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3901	176	210	44	2025-06-06 13:16:20	2025-06-06 13:40:38
3924	55	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3926	57	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3927	241	59	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3928	59	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3929	241	60	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3930	60	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3931	241	61	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3903	189	210	44	2025-06-06 13:16:21	2025-06-06 13:40:53
3932	61	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3935	241	65	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3936	65	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3938	72	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3940	73	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3941	241	126	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3942	126	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3944	127	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3945	241	166	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3946	166	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3948	74	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3949	241	77	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3950	77	241	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3951	241	130	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3173	210	234	100	2025-06-05 09:10:35	2025-06-06 14:13:35
3952	130	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3954	51	241	88	2025-06-06 14:00:39	2025-06-06 14:00:39
3978	232	241	55	2025-06-06 14:00:39	2025-06-06 14:32:30
1608	210	132	77	2025-05-31 15:04:08	2025-06-06 14:13:35
1620	210	171	77	2025-05-31 15:04:08	2025-06-06 14:13:35
3075	210	233	100	2025-06-05 09:00:49	2025-06-06 14:13:35
1659	210	118	77	2025-05-31 15:04:08	2025-06-06 14:13:35
3920	193	241	66	2025-06-06 14:00:39	2025-06-06 14:32:30
3916	241	174	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3960	231	241	88	2025-06-06 14:00:39	2025-06-06 14:00:39
3962	132	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3963	241	134	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3964	134	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3966	136	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3967	241	137	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3968	137	241	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3969	241	138	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3970	138	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3972	168	241	100	2025-06-06 14:00:39	2025-06-06 14:00:39
3976	222	241	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3979	241	171	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3974	189	241	44	2025-06-06 14:00:39	2025-06-06 14:32:30
3921	241	223	88	2025-06-06 14:00:39	2025-06-06 14:32:30
3923	241	55	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3925	241	57	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3933	241	62	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3934	241	64	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3937	241	72	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3939	241	73	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3943	241	127	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3947	241	74	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3953	241	51	88	2025-06-06 14:00:39	2025-06-06 14:32:30
3955	241	214	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3957	241	224	88	2025-06-06 14:00:39	2025-06-06 14:32:30
3959	241	231	88	2025-06-06 14:00:39	2025-06-06 14:32:30
3961	241	132	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3965	241	136	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3971	241	168	88	2025-06-06 14:00:39	2025-06-06 14:32:30
3973	241	189	100	2025-06-06 14:00:39	2025-06-06 14:32:30
3975	241	222	88	2025-06-06 14:00:39	2025-06-06 14:32:30
3977	241	232	88	2025-06-06 14:00:39	2025-06-06 14:32:30
2383	210	224	100	2025-06-04 08:00:13	2025-06-06 14:13:35
2977	210	232	100	2025-06-05 08:09:26	2025-06-06 14:13:35
3919	241	193	88	2025-06-06 14:00:39	2025-06-06 14:32:30
3958	224	241	77	2025-06-06 14:00:39	2025-07-10 21:25:04
3980	171	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3982	179	241	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3984	94	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3986	95	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3987	241	96	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3988	96	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3989	241	98	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3990	98	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
3993	103	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3995	80	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
3997	241	82	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3998	82	241	66	2025-06-06 14:00:39	2025-06-06 14:00:39
3999	241	83	66	2025-06-06 14:00:39	2025-06-06 14:00:39
4000	83	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
4001	241	84	66	2025-06-06 14:00:39	2025-06-06 14:00:39
4002	84	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
4004	87	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
4006	89	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
4007	241	90	66	2025-06-06 14:00:39	2025-06-06 14:00:39
4008	90	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
4009	241	91	66	2025-06-06 14:00:39	2025-06-06 14:00:39
4010	91	241	55	2025-06-06 14:00:39	2025-06-06 14:00:39
4012	92	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
4016	241	105	66	2025-06-06 14:00:39	2025-06-06 14:00:39
4017	105	241	44	2025-06-06 14:00:39	2025-06-06 14:00:39
4020	241	108	66	2025-06-06 14:00:39	2025-06-06 14:00:39
4021	108	241	66	2025-06-06 14:00:39	2025-06-06 14:00:39
4024	241	111	66	2025-06-06 14:00:40	2025-06-06 14:00:40
4025	111	241	44	2025-06-06 14:00:40	2025-06-06 14:00:40
4026	241	112	66	2025-06-06 14:00:40	2025-06-06 14:00:40
4027	112	241	66	2025-06-06 14:00:40	2025-06-06 14:00:40
4028	241	116	66	2025-06-06 14:00:40	2025-06-06 14:00:40
4029	116	241	44	2025-06-06 14:00:40	2025-06-06 14:00:40
4031	118	241	44	2025-06-06 14:00:40	2025-06-06 14:00:40
4033	121	241	44	2025-06-06 14:00:40	2025-06-06 14:00:40
4034	241	144	66	2025-06-06 14:00:40	2025-06-06 14:00:40
4035	144	241	55	2025-06-06 14:00:40	2025-06-06 14:00:40
4037	146	241	44	2025-06-06 14:00:40	2025-06-06 14:00:40
4038	241	150	66	2025-06-06 14:00:40	2025-06-06 14:00:40
4039	150	241	55	2025-06-06 14:00:40	2025-06-06 14:00:40
4050	176	241	55	2025-06-06 14:00:59	2025-06-06 14:00:59
3996	241	81	77	2025-06-06 14:00:39	2025-06-06 14:32:30
4003	241	87	77	2025-06-06 14:00:39	2025-06-06 14:32:30
4005	241	89	77	2025-06-06 14:00:39	2025-06-06 14:32:30
4011	241	92	77	2025-06-06 14:00:39	2025-06-06 14:32:30
4014	241	233	100	2025-06-06 14:00:39	2025-06-06 14:32:30
4015	233	241	44	2025-06-06 14:00:39	2025-06-06 14:32:30
4049	234	241	66	2025-06-06 14:00:40	2025-06-06 14:32:30
4053	174	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4054	242	181	77	2025-06-07 12:10:40	2025-06-07 12:10:40
4018	241	106	77	2025-06-06 14:00:39	2025-06-06 14:32:30
4058	223	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4060	55	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4062	57	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4019	241	107	77	2025-06-06 14:00:39	2025-06-06 14:32:30
4064	59	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4022	241	109	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4023	241	110	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4030	241	118	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4032	241	121	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4036	241	146	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4040	241	151	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4041	241	53	66	2025-06-06 14:00:40	2025-06-06 14:32:30
4042	241	192	88	2025-06-06 14:00:40	2025-06-06 14:32:30
15415	325	193	100	2025-12-22 17:20:11	2025-12-22 17:20:11
4051	211	241	55	2025-06-06 14:07:46	2025-06-06 14:07:46
4044	241	219	100	2025-06-06 14:00:40	2025-06-06 14:32:30
4066	60	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4068	61	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
3918	241	181	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3956	241	176	66	2025-06-06 14:00:39	2025-06-06 14:32:30
3981	241	179	88	2025-06-06 14:00:39	2025-06-06 14:32:30
3983	241	94	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3985	241	95	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3991	241	101	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3992	241	103	77	2025-06-06 14:00:39	2025-06-06 14:32:30
3994	241	80	77	2025-06-06 14:00:39	2025-06-06 14:32:30
4045	241	227	88	2025-06-06 14:00:40	2025-06-06 14:32:30
4046	227	241	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4047	241	211	77	2025-06-06 14:00:40	2025-06-06 14:32:30
4048	241	234	88	2025-06-06 14:00:40	2025-06-06 14:32:30
4072	65	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4074	72	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4076	73	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4078	126	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4080	127	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4082	166	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4056	193	242	77	2025-06-07 12:10:40	2025-06-07 12:10:50
4081	242	166	55	2025-06-07 12:10:40	2025-06-07 12:13:03
4059	242	55	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4061	242	57	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4063	242	59	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4065	242	60	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4067	242	61	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4069	242	62	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4070	242	64	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4071	242	65	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4073	242	72	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4075	242	73	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4077	242	126	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4079	242	127	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4013	241	216	88	2025-06-06 14:00:39	2025-07-10 19:24:01
4055	242	193	77	2025-06-07 12:10:40	2025-06-07 12:13:03
4084	74	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4086	77	242	66	2025-06-07 12:10:40	2025-06-07 12:10:40
4088	130	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4090	51	242	88	2025-06-07 12:10:40	2025-06-07 12:10:40
4096	231	242	88	2025-06-07 12:10:40	2025-06-07 12:10:40
4098	132	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4100	134	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4102	136	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4104	137	242	66	2025-06-07 12:10:40	2025-06-07 12:10:40
4106	138	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4108	168	242	100	2025-06-07 12:10:40	2025-06-07 12:10:40
4112	222	242	66	2025-06-07 12:10:40	2025-06-07 12:10:40
4114	232	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4116	171	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4118	179	242	66	2025-06-07 12:10:40	2025-06-07 12:10:40
4120	94	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4122	95	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4124	96	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4126	98	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4129	103	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4131	80	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4134	82	242	66	2025-06-07 12:10:40	2025-06-07 12:10:40
4136	83	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4138	84	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4140	87	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4142	89	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4144	90	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4146	91	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4148	92	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4151	233	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4153	105	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4157	108	242	66	2025-06-07 12:10:40	2025-06-07 12:10:40
4161	111	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4163	112	242	66	2025-06-07 12:10:40	2025-06-07 12:10:40
4165	116	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4167	118	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4169	121	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4171	144	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
4173	146	242	44	2025-06-07 12:10:40	2025-06-07 12:10:40
4175	150	242	55	2025-06-07 12:10:40	2025-06-07 12:10:40
15416	193	325	66	2025-12-22 17:20:11	2025-12-22 17:20:11
4182	227	242	77	2025-06-07 12:10:40	2025-06-07 12:10:40
4185	234	242	66	2025-06-07 12:10:40	2025-06-07 12:10:40
4052	242	174	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4083	242	74	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4085	242	77	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4087	242	130	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4093	242	224	66	2025-06-07 12:10:40	2025-06-07 12:13:03
4091	242	214	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4092	242	176	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4186	176	242	44	2025-06-07 12:10:50	2025-06-07 12:10:50
4095	242	231	66	2025-06-07 12:10:40	2025-06-07 12:13:03
4107	242	168	55	2025-06-07 12:10:40	2025-06-07 12:13:03
4097	242	132	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4099	242	134	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4101	242	136	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4103	242	137	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4105	242	138	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4109	242	189	77	2025-06-07 12:10:40	2025-06-07 12:13:03
4110	189	242	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4113	242	232	77	2025-06-07 12:10:40	2025-06-07 12:13:03
4117	242	179	66	2025-06-07 12:10:40	2025-06-07 12:13:03
4115	242	171	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4150	242	233	77	2025-06-07 12:10:40	2025-06-07 12:13:03
4119	242	94	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4121	242	95	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4123	242	96	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4125	242	98	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4127	242	101	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4128	242	103	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4130	242	80	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4132	242	81	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4133	242	82	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4135	242	83	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4139	242	87	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4141	242	89	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4143	242	90	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4145	242	91	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4147	242	92	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4094	224	242	77	2025-06-07 12:10:40	2025-07-10 21:25:05
4177	242	53	55	2025-06-07 12:10:40	2025-06-07 12:13:03
4152	242	105	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4154	242	106	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4155	242	107	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4156	242	108	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4158	242	109	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4159	242	110	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4160	242	111	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4162	242	112	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4164	242	116	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4166	242	118	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4168	242	121	66	2025-06-07 12:10:40	2025-06-07 12:10:50
4172	242	146	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4174	242	150	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4176	242	151	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4178	242	192	66	2025-06-07 12:10:40	2025-06-07 12:13:03
4180	242	219	55	2025-06-07 12:10:40	2025-06-07 12:13:03
4181	242	227	77	2025-06-07 12:10:40	2025-06-07 12:13:03
4183	242	211	88	2025-06-07 12:10:40	2025-06-07 12:13:03
4184	242	234	77	2025-06-07 12:10:40	2025-06-07 12:13:03
4149	242	216	66	2025-06-07 12:10:40	2025-07-10 19:24:02
4089	242	51	66	2025-06-07 12:10:40	2025-06-07 12:13:03
4111	242	222	66	2025-06-07 12:10:40	2025-06-07 12:13:03
4137	242	84	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4170	242	144	55	2025-06-07 12:10:40	2025-06-07 12:10:50
4057	242	223	66	2025-06-07 12:10:40	2025-06-07 12:13:03
4187	211	242	44	2025-06-07 12:13:03	2025-06-07 12:13:03
4188	54	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4189	165	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4190	197	243	88	2025-06-09 09:23:27	2025-06-09 09:23:27
4191	204	243	88	2025-06-09 09:23:27	2025-06-09 09:23:27
4192	212	243	88	2025-06-09 09:23:27	2025-06-09 09:23:27
4193	230	243	88	2025-06-09 09:23:27	2025-06-09 09:23:27
4194	235	243	88	2025-06-09 09:23:27	2025-06-09 09:23:27
4195	243	241	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4196	241	243	88	2025-06-09 09:23:27	2025-06-09 09:23:27
4197	56	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4198	58	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4199	63	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4200	66	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4201	67	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4202	68	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4203	69	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4204	70	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4205	71	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4206	124	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4207	125	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4208	128	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4209	75	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4210	76	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4211	78	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4212	129	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4213	200	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4214	243	50	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4215	50	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4216	194	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4217	131	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4218	133	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4219	135	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4220	142	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4221	243	237	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4222	237	243	77	2025-06-09 09:23:27	2025-06-09 09:23:27
4223	242	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4224	177	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4225	209	243	77	2025-06-09 09:23:27	2025-06-09 09:23:27
4226	238	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4227	243	210	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4228	210	243	100	2025-06-09 09:23:27	2025-06-09 09:23:27
4229	243	191	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4230	191	243	77	2025-06-09 09:23:27	2025-06-09 09:23:27
4231	196	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4232	97	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4233	99	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4234	79	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4235	85	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4236	86	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4237	88	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4238	93	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4239	226	243	88	2025-06-09 09:23:27	2025-06-09 09:23:27
4240	243	239	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4241	239	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4242	113	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4243	114	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4244	115	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4245	117	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4246	119	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4247	120	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4248	122	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4249	123	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4250	145	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4251	143	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4252	139	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4253	140	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4254	141	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4255	147	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4256	149	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4257	152	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4258	153	243	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4259	173	243	55	2025-06-09 09:23:27	2025-06-09 09:23:27
4260	243	240	44	2025-06-09 09:23:27	2025-06-09 09:23:27
4261	240	243	66	2025-06-09 09:23:27	2025-06-09 09:23:27
4262	244	54	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4263	54	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4264	244	165	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4265	165	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4266	244	197	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4267	197	244	88	2025-06-10 09:26:16	2025-06-10 09:26:16
4268	244	204	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4269	204	244	88	2025-06-10 09:26:16	2025-06-10 09:26:16
4270	244	212	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4271	212	244	88	2025-06-10 09:26:16	2025-06-10 09:26:16
4272	244	230	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4273	230	244	88	2025-06-10 09:26:16	2025-06-10 09:26:16
4274	244	235	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4275	235	244	88	2025-06-10 09:26:16	2025-06-10 09:26:16
4276	244	241	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4277	241	244	88	2025-06-10 09:26:16	2025-06-10 09:26:16
4278	56	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4279	58	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4280	63	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4281	66	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4282	67	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4283	68	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4284	69	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4285	70	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4286	71	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4287	244	124	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4288	124	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4289	244	125	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4290	125	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4291	244	128	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4292	128	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4293	75	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4294	76	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4295	78	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4296	244	129	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4297	129	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4298	244	200	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4299	200	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4300	244	50	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4301	244	131	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4302	131	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4303	244	133	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4304	133	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4305	244	135	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4306	135	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4307	244	142	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4308	142	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4309	244	237	100	2025-06-10 09:26:16	2025-06-10 09:26:16
4310	237	244	77	2025-06-10 09:26:16	2025-06-10 09:26:16
4311	244	242	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4312	242	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4313	177	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4314	244	195	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4315	244	209	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4316	209	244	77	2025-06-10 09:26:16	2025-06-10 09:26:16
4317	244	238	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4318	238	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4319	244	210	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4320	210	244	100	2025-06-10 09:26:16	2025-06-10 09:26:16
4321	244	191	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4322	191	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4323	244	196	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4324	196	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4325	244	97	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4326	97	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4327	244	99	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4328	99	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4329	244	100	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4330	244	102	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4331	79	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4332	85	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4333	86	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4334	88	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4335	93	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4336	244	226	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4337	226	244	88	2025-06-10 09:26:16	2025-06-10 09:26:16
4338	244	239	88	2025-06-10 09:26:16	2025-06-10 09:26:16
4339	239	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4340	244	104	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4341	244	113	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4342	113	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4343	244	114	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4344	114	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4345	244	115	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4346	115	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4347	244	117	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4348	117	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4349	244	119	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4350	119	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4351	244	120	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4352	120	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4353	244	122	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4354	122	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4355	244	123	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4356	123	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4357	145	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4358	244	143	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4359	143	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4360	244	139	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4361	139	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4362	244	140	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4363	140	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4364	244	141	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4365	141	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4366	147	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4367	149	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4368	152	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4369	153	244	44	2025-06-10 09:26:16	2025-06-10 09:26:16
4370	173	244	55	2025-06-10 09:26:16	2025-06-10 09:26:16
4371	244	240	77	2025-06-10 09:26:16	2025-06-10 09:26:16
4372	240	244	66	2025-06-10 09:26:16	2025-06-10 09:26:16
4373	54	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4374	165	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4375	197	246	88	2025-06-11 10:11:40	2025-06-11 10:11:40
4376	204	246	88	2025-06-11 10:11:40	2025-06-11 10:11:40
4377	212	246	88	2025-06-11 10:11:40	2025-06-11 10:11:40
4378	230	246	88	2025-06-11 10:11:40	2025-06-11 10:11:40
4379	235	246	88	2025-06-11 10:11:40	2025-06-11 10:11:40
4380	241	246	88	2025-06-11 10:11:40	2025-06-11 10:11:40
4381	56	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4382	58	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4383	63	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4384	66	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4385	67	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4386	68	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4387	69	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4388	70	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4389	71	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4390	124	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4391	125	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4392	128	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4393	75	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4394	76	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4395	78	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4396	129	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4397	200	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4398	131	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4399	133	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4400	135	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4401	142	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4403	237	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4404	242	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4405	177	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4406	209	246	77	2025-06-11 10:11:40	2025-06-11 10:11:40
4407	238	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4408	210	246	100	2025-06-11 10:11:40	2025-06-11 10:11:40
4409	191	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4410	196	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4411	97	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4412	99	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4413	79	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4414	85	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4415	86	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4416	88	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4417	93	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4418	226	246	88	2025-06-11 10:11:40	2025-06-11 10:11:40
4420	239	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4421	113	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4422	114	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4423	115	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4424	117	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4425	119	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4426	120	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4427	122	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4428	123	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4429	145	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4430	143	246	66	2025-06-11 10:11:40	2025-06-11 10:11:40
4431	139	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4432	140	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4433	141	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4434	147	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4435	149	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4436	152	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4437	153	246	44	2025-06-11 10:11:40	2025-06-11 10:11:40
4438	173	246	55	2025-06-11 10:11:40	2025-06-11 10:11:40
4441	174	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4442	245	193	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4443	193	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4444	245	223	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4445	223	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4446	55	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4447	57	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4448	59	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4449	60	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4450	61	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4451	65	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4452	72	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4453	73	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4454	126	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4455	127	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4456	166	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4457	74	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4458	77	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4459	130	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4460	245	51	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4461	51	245	88	2025-06-11 10:12:56	2025-06-11 10:12:56
4464	245	231	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4465	231	245	88	2025-06-11 10:12:56	2025-06-11 10:12:56
4466	132	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4467	134	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4468	136	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4469	137	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4470	138	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4471	245	168	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4472	168	245	100	2025-06-11 10:12:56	2025-06-11 10:12:56
4473	245	189	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4474	189	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4475	245	222	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4476	222	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4477	245	232	88	2025-06-11 10:12:56	2025-06-11 10:12:56
4478	232	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4479	245	243	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4480	243	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4481	171	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4482	245	179	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4483	179	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4484	94	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4485	95	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4486	96	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4487	98	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4488	103	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4489	80	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4490	82	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4491	83	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4492	84	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4493	87	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4494	89	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4495	90	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4496	91	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4497	92	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4498	245	244	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4499	244	245	77	2025-06-11 10:12:56	2025-06-11 10:12:56
4500	245	233	88	2025-06-11 10:12:56	2025-06-11 10:12:56
4501	233	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4439	246	240	77	2025-06-11 10:11:40	2025-08-13 14:58:02
4440	240	246	55	2025-06-11 10:11:40	2025-08-13 14:58:02
4419	246	239	88	2025-06-11 10:11:40	2025-08-13 14:58:56
4502	105	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4503	108	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4504	111	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4462	245	224	66	2025-06-11 10:12:56	2025-07-10 21:25:04
4505	112	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4506	116	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4507	118	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4508	121	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4509	144	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4510	146	245	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4511	150	245	55	2025-06-11 10:12:56	2025-06-11 10:12:56
4514	245	219	44	2025-06-11 10:12:56	2025-06-11 10:12:56
4515	245	227	88	2025-06-11 10:12:56	2025-06-11 10:12:56
4516	227	245	88	2025-06-11 10:12:56	2025-06-11 10:12:56
4517	245	211	77	2025-06-11 10:12:56	2025-06-11 10:12:56
4518	211	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4519	245	234	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4520	234	245	66	2025-06-11 10:12:56	2025-06-11 10:12:56
4524	174	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4525	247	181	77	2025-06-23 21:08:34	2025-06-23 21:08:34
4527	193	247	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4529	223	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4530	247	55	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4531	55	247	44	2025-06-23 21:08:34	2025-06-23 21:08:34
4532	247	57	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4533	57	247	44	2025-06-23 21:08:34	2025-06-23 21:08:34
4535	59	247	44	2025-06-23 21:08:34	2025-06-23 21:08:34
4537	60	247	44	2025-06-23 21:08:34	2025-06-23 21:08:34
4539	61	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4540	247	62	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4541	247	64	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4543	65	247	44	2025-06-23 21:08:34	2025-06-23 21:08:34
4544	247	72	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4545	72	247	44	2025-06-23 21:08:34	2025-06-23 21:08:34
4546	247	73	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4547	73	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4549	126	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4550	247	127	77	2025-06-23 21:08:34	2025-06-23 21:08:34
4551	127	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4553	166	247	44	2025-06-23 21:08:34	2025-06-23 21:08:34
4554	247	74	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4555	74	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4557	77	247	66	2025-06-23 21:08:34	2025-06-23 21:08:34
4559	130	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4561	51	247	88	2025-06-23 21:08:34	2025-06-23 21:08:34
4562	247	214	77	2025-06-23 21:08:34	2025-06-23 21:08:34
4567	231	247	88	2025-06-23 21:08:34	2025-06-23 21:08:34
4568	247	132	77	2025-06-23 21:08:34	2025-06-23 21:08:34
4569	132	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4571	134	247	55	2025-06-23 21:08:34	2025-06-23 21:08:34
4572	247	136	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4573	136	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4575	137	247	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4577	138	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4579	168	247	100	2025-06-23 21:08:35	2025-06-23 21:08:35
4580	247	189	100	2025-06-23 21:08:35	2025-06-23 21:08:35
4581	189	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4583	222	247	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4585	232	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4587	243	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4589	171	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4591	179	247	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4592	247	94	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4593	94	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4594	247	95	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4595	95	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4597	96	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4599	98	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4600	247	101	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4601	247	103	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4602	103	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4603	247	80	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4604	80	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4605	247	81	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4607	82	247	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4609	83	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4611	84	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4526	247	193	88	2025-06-23 21:08:34	2025-06-27 15:31:56
4528	247	223	88	2025-06-23 21:08:34	2025-06-27 15:31:56
4534	247	59	55	2025-06-23 21:08:34	2025-06-27 15:31:56
4536	247	60	55	2025-06-23 21:08:34	2025-06-27 15:31:56
4538	247	61	55	2025-06-23 21:08:34	2025-06-27 15:31:56
4542	247	65	55	2025-06-23 21:08:34	2025-06-27 15:31:56
4548	247	126	66	2025-06-23 21:08:34	2025-06-27 15:31:56
4552	247	166	66	2025-06-23 21:08:34	2025-06-27 15:31:56
4556	247	77	55	2025-06-23 21:08:34	2025-06-27 15:31:56
4560	247	51	88	2025-06-23 21:08:34	2025-06-27 15:31:56
4563	247	176	55	2025-06-23 21:08:34	2025-06-27 15:31:56
4565	224	247	88	2025-06-23 21:08:34	2025-07-10 21:25:04
4566	247	231	88	2025-06-23 21:08:34	2025-06-27 15:31:56
4570	247	134	66	2025-06-23 21:08:34	2025-06-27 15:31:56
4574	247	137	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4576	247	138	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4578	247	168	77	2025-06-23 21:08:35	2025-06-27 15:31:56
4582	247	222	88	2025-06-23 21:08:35	2025-06-27 15:31:56
4584	247	232	88	2025-06-23 21:08:35	2025-06-27 15:31:56
4586	247	243	77	2025-06-23 21:08:35	2025-06-27 15:31:56
4588	247	171	55	2025-06-23 21:08:35	2025-06-27 15:31:56
4590	247	179	88	2025-06-23 21:08:35	2025-06-27 15:31:56
4596	247	96	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4598	247	98	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4606	247	82	55	2025-06-23 21:08:35	2025-06-27 15:31:56
4608	247	83	55	2025-06-23 21:08:35	2025-06-27 15:31:56
4521	245	246	66	2025-06-11 10:12:56	2025-08-13 14:58:02
4513	192	245	88	2025-06-11 10:12:56	2025-11-17 15:32:36
4512	245	192	77	2025-06-11 10:12:56	2025-11-17 15:32:36
4610	247	84	55	2025-06-23 21:08:35	2025-06-27 15:31:56
4612	247	87	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4613	87	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4614	247	89	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4615	89	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4617	90	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4619	91	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4620	247	92	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4621	92	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4623	244	247	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4625	247	233	100	2025-06-23 21:08:35	2025-06-23 21:08:35
4626	233	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4628	105	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4629	247	106	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4630	247	107	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4632	108	247	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4633	247	109	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4634	247	110	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4636	111	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4638	112	247	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4640	116	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4641	247	118	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4642	118	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4643	247	121	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4644	121	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4646	144	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4647	247	146	66	2025-06-23 21:08:35	2025-06-23 21:08:35
4648	146	247	44	2025-06-23 21:08:35	2025-06-23 21:08:35
4650	150	247	55	2025-06-23 21:08:35	2025-06-23 21:08:35
4651	247	151	66	2025-06-23 21:08:35	2025-06-23 21:08:35
15417	325	223	100	2025-12-22 17:20:11	2025-12-22 17:20:11
4655	247	219	88	2025-06-23 21:08:35	2025-06-23 21:08:35
4657	227	247	77	2025-06-23 21:08:35	2025-06-23 21:08:35
4660	234	247	66	2025-06-23 21:08:35	2025-06-23 21:08:35
11342	174	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
4663	248	174	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4664	174	248	55	2025-06-27 14:54:02	2025-06-27 14:54:02
4667	193	248	77	2025-06-27 14:54:02	2025-06-27 14:54:02
4669	223	248	55	2025-06-27 14:54:02	2025-06-27 14:54:02
4670	248	55	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4671	55	248	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4672	248	57	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4673	57	248	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4674	248	59	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4675	59	248	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4676	248	60	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4677	60	248	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4678	248	61	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4679	61	248	55	2025-06-27 14:54:02	2025-06-27 14:54:02
4680	248	62	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4681	248	64	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4682	248	65	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4683	65	248	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4684	248	72	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4685	72	248	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4686	248	73	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4687	73	248	55	2025-06-27 14:54:02	2025-06-27 14:54:02
4689	126	248	55	2025-06-27 14:54:02	2025-06-27 14:54:02
4691	127	248	55	2025-06-27 14:54:02	2025-06-27 14:54:02
4693	166	248	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4694	248	74	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4695	74	248	55	2025-06-27 14:54:02	2025-06-27 14:54:02
4696	248	77	44	2025-06-27 14:54:02	2025-06-27 14:54:02
4697	77	248	66	2025-06-27 14:54:02	2025-06-27 14:54:02
4699	130	248	55	2025-06-27 14:54:02	2025-06-27 14:54:02
4701	51	248	88	2025-06-27 14:54:02	2025-06-27 14:54:02
4704	176	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4708	231	248	88	2025-06-27 14:54:03	2025-06-27 14:54:03
4710	132	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4712	134	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4714	136	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4716	137	248	66	2025-06-27 14:54:03	2025-06-27 14:54:03
4718	138	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4618	247	91	55	2025-06-23 21:08:35	2025-06-27 15:31:56
4622	247	244	88	2025-06-23 21:08:35	2025-06-27 15:31:56
4627	247	105	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4631	247	108	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4635	247	111	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4637	247	112	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4639	247	116	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4645	247	144	55	2025-06-23 21:08:35	2025-06-27 15:31:56
4652	247	53	66	2025-06-23 21:08:35	2025-06-27 15:31:56
4656	247	227	88	2025-06-23 21:08:35	2025-06-27 15:31:56
4658	247	211	77	2025-06-23 21:08:35	2025-06-27 15:31:56
4659	247	234	88	2025-06-23 21:08:35	2025-06-27 15:31:56
4661	247	246	77	2025-06-23 21:08:35	2025-06-27 15:31:56
4665	248	181	55	2025-06-27 14:54:02	2025-06-27 19:22:38
4668	248	223	55	2025-06-27 14:54:02	2025-06-27 19:22:41
4700	248	51	55	2025-06-27 14:54:02	2025-06-27 19:22:41
4688	248	126	44	2025-06-27 14:54:02	2025-06-27 19:22:38
4690	248	127	44	2025-06-27 14:54:02	2025-06-27 19:22:38
4692	248	166	44	2025-06-27 14:54:02	2025-06-27 19:22:38
4698	248	130	44	2025-06-27 14:54:02	2025-06-27 19:22:38
4705	248	224	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4702	248	214	44	2025-06-27 14:54:02	2025-06-27 19:22:38
4703	248	176	44	2025-06-27 14:54:02	2025-06-27 19:22:38
4707	248	231	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4624	247	216	77	2025-06-23 21:08:35	2025-07-10 19:24:01
4711	248	134	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4713	248	136	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4715	248	137	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4717	248	138	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4666	248	193	66	2025-06-27 14:54:02	2025-06-27 19:22:41
4706	224	248	88	2025-06-27 14:54:03	2025-07-10 21:25:05
4720	168	248	100	2025-06-27 14:54:03	2025-06-27 14:54:03
4722	189	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4653	247	192	77	2025-06-23 21:08:35	2025-11-17 15:32:36
4724	222	248	66	2025-06-27 14:54:03	2025-06-27 14:54:03
4726	232	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4728	243	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4729	248	171	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4730	171	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4732	179	248	66	2025-06-27 14:54:03	2025-06-27 14:54:03
4734	94	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4736	95	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4738	96	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4740	98	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4743	103	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4744	248	80	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4745	80	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4746	248	81	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4747	248	82	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4748	82	248	66	2025-06-27 14:54:03	2025-06-27 14:54:03
4749	248	83	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4750	83	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4751	248	84	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4752	84	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4753	248	87	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4754	87	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4755	248	89	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4756	89	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4757	248	90	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4758	90	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4759	248	91	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4760	91	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4761	248	92	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4762	92	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4764	244	248	77	2025-06-27 14:54:03	2025-06-27 14:54:03
4766	248	233	77	2025-06-27 14:54:03	2025-06-27 14:54:03
4767	233	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4769	105	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4773	108	248	66	2025-06-27 14:54:03	2025-06-27 14:54:03
4777	111	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4779	112	248	66	2025-06-27 14:54:03	2025-06-27 14:54:03
4781	116	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4783	118	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4785	121	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4786	248	144	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4787	144	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4788	248	146	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4789	146	248	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4790	248	150	44	2025-06-27 14:54:03	2025-06-27 14:54:03
4791	150	248	55	2025-06-27 14:54:03	2025-06-27 14:54:03
4792	248	151	44	2025-06-27 14:54:03	2025-06-27 14:54:03
15418	223	325	55	2025-12-22 17:20:11	2025-12-22 17:20:11
4798	227	248	77	2025-06-27 14:54:03	2025-06-27 14:54:03
4801	234	248	77	2025-06-27 14:54:03	2025-06-27 14:54:03
11343	298	181	77	2025-09-25 07:52:16	2025-09-25 07:52:16
4523	247	174	55	2025-06-23 21:08:34	2025-06-27 15:31:56
4558	247	130	66	2025-06-23 21:08:34	2025-06-27 15:31:56
4616	247	90	55	2025-06-23 21:08:35	2025-06-27 15:31:56
4649	247	150	55	2025-06-23 21:08:35	2025-06-27 15:31:56
4709	248	132	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4731	248	179	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4721	248	189	77	2025-06-27 14:54:03	2025-06-27 19:22:38
4763	248	244	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4800	248	234	66	2025-06-27 14:54:03	2025-06-27 19:22:41
4733	248	94	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4735	248	95	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4737	248	96	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4739	248	98	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4741	248	101	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4742	248	103	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4802	248	246	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4768	248	105	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4770	248	106	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4771	248	107	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4772	248	108	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4774	248	109	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4775	248	110	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4776	248	111	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4778	248	112	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4780	248	116	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4782	248	118	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4784	248	121	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4793	248	53	44	2025-06-27 14:54:03	2025-06-27 19:22:38
4796	248	219	55	2025-06-27 14:54:03	2025-06-27 19:22:38
4804	211	248	44	2025-06-27 19:22:38	2025-06-27 19:22:38
4719	248	168	44	2025-06-27 14:54:03	2025-06-27 19:22:41
4723	248	222	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4725	248	232	66	2025-06-27 14:54:03	2025-06-27 19:22:41
4727	248	243	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4794	248	192	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4797	248	227	66	2025-06-27 14:54:03	2025-06-27 19:22:41
4799	248	211	55	2025-06-27 14:54:03	2025-06-27 19:22:41
4806	174	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4809	193	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4811	223	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4813	55	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4815	57	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4817	59	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4807	249	181	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4808	249	193	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4810	249	223	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4812	249	55	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4814	249	57	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4816	249	59	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4818	249	60	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4765	248	216	55	2025-06-27 14:54:03	2025-07-10 19:24:02
4819	60	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4821	61	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4825	65	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4827	72	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4829	73	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4831	126	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4833	127	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4835	166	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4837	74	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4839	77	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4841	130	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4843	51	249	88	2025-06-28 13:19:22	2025-06-28 13:19:22
4849	231	249	88	2025-06-28 13:19:22	2025-06-28 13:19:22
4851	132	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4853	134	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4855	136	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4857	137	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4859	138	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4861	168	249	100	2025-06-28 13:19:22	2025-06-28 13:19:22
4862	249	189	100	2025-06-28 13:19:22	2025-06-28 13:19:22
4865	222	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4867	232	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4869	243	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4871	171	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4873	179	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4875	94	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4877	95	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4879	96	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4881	98	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4884	103	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4886	80	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4889	82	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4891	83	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4893	84	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4895	87	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4897	89	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4899	90	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4901	91	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4903	92	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4905	244	249	77	2025-06-28 13:19:22	2025-06-28 13:19:22
4908	233	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4910	105	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4914	108	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4918	111	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4920	112	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
4922	116	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4924	118	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4822	249	62	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4823	249	64	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4824	249	65	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4826	249	72	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4828	249	73	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4830	249	126	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4832	249	127	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4834	249	166	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4836	249	74	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4840	249	130	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4842	249	51	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4844	249	214	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4845	249	176	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4847	224	249	88	2025-06-28 13:19:22	2025-07-10 21:25:05
4848	249	231	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4850	249	132	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4852	249	134	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4854	249	136	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4856	249	137	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4858	249	138	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4860	249	168	77	2025-06-28 13:19:22	2025-06-28 13:19:35
4863	189	249	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4864	249	222	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4866	249	232	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4868	249	243	77	2025-06-28 13:19:22	2025-06-28 13:19:35
4870	249	171	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4872	249	179	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4876	249	95	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4878	249	96	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4880	249	98	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4882	249	101	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4883	249	103	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4885	249	80	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4887	249	81	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4888	249	82	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4890	249	83	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4892	249	84	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4894	249	87	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4896	249	89	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4898	249	90	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4900	249	91	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4902	249	92	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4904	249	244	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4846	249	224	77	2025-06-28 13:19:22	2025-07-10 21:12:01
4907	249	233	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4911	249	106	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4912	249	107	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4913	249	108	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4915	249	109	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4916	249	110	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4917	249	111	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4919	249	112	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4921	249	116	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4923	249	118	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4925	249	121	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4906	249	216	77	2025-06-28 13:19:22	2025-07-10 19:24:02
4926	121	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4928	144	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4930	146	249	44	2025-06-28 13:19:22	2025-06-28 13:19:22
4932	150	249	55	2025-06-28 13:19:22	2025-06-28 13:19:22
4934	249	53	77	2025-06-28 13:19:22	2025-06-28 13:19:22
15419	325	263	100	2025-12-22 17:20:11	2025-12-22 17:20:11
4939	227	249	77	2025-06-28 13:19:22	2025-06-28 13:19:22
4942	234	249	66	2025-06-28 13:19:22	2025-06-28 13:19:22
11344	298	193	100	2025-09-25 07:52:16	2025-09-25 07:52:16
4805	249	174	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4820	249	61	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4838	249	77	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4945	176	249	44	2025-06-28 13:19:35	2025-06-28 13:19:35
4874	249	94	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4909	249	105	66	2025-06-28 13:19:22	2025-06-28 13:19:35
4927	249	144	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4929	249	146	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4931	249	150	55	2025-06-28 13:19:22	2025-06-28 13:19:35
4933	249	151	55	2025-06-28 13:19:22	2025-06-28 13:19:35
15420	263	325	77	2025-12-22 17:20:11	2025-12-22 17:20:11
4937	249	219	77	2025-06-28 13:19:22	2025-06-28 13:19:35
4938	249	227	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4940	249	211	77	2025-06-28 13:19:22	2025-06-28 13:19:35
4941	249	234	88	2025-06-28 13:19:22	2025-06-28 13:19:35
4943	249	246	77	2025-06-28 13:19:22	2025-06-28 13:19:35
4946	174	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4947	250	181	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4948	250	193	77	2025-07-09 07:19:01	2025-07-09 07:19:01
4949	193	250	77	2025-07-09 07:19:01	2025-07-09 07:19:01
4950	250	223	66	2025-07-09 07:19:01	2025-07-09 07:19:01
4951	223	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4952	55	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4953	57	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4954	59	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4955	60	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4956	61	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4957	65	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4958	72	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4959	73	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4960	250	126	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4961	126	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4962	250	127	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4963	127	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4964	250	166	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4965	166	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4966	74	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4967	77	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
4968	250	130	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4969	130	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4970	250	51	66	2025-07-09 07:19:01	2025-07-09 07:19:01
4971	51	250	88	2025-07-09 07:19:01	2025-07-09 07:19:01
4972	250	214	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4973	250	176	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4974	176	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4977	250	231	66	2025-07-09 07:19:01	2025-07-09 07:19:01
4978	231	250	88	2025-07-09 07:19:01	2025-07-09 07:19:01
4979	250	132	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4980	132	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4981	250	134	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4982	134	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4983	250	136	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4984	136	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4985	250	137	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4986	137	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
4987	250	138	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4988	138	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4989	250	168	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4990	168	250	100	2025-07-09 07:19:01	2025-07-09 07:19:01
4991	250	189	77	2025-07-09 07:19:01	2025-07-09 07:19:01
4992	189	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4993	250	222	66	2025-07-09 07:19:01	2025-07-09 07:19:01
4994	222	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
4995	250	232	88	2025-07-09 07:19:01	2025-07-09 07:19:01
4996	232	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
4997	250	243	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4998	243	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
4999	171	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5000	250	179	66	2025-07-09 07:19:01	2025-07-09 07:19:01
5001	179	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
5002	250	94	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5003	94	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5004	250	95	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5005	95	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5006	250	96	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5007	96	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5008	250	98	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5009	98	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5010	250	101	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5011	250	103	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5012	103	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5013	80	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5014	82	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
5015	83	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5016	84	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5017	87	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5018	89	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5019	90	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5020	91	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5021	92	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5022	250	244	77	2025-07-09 07:19:01	2025-07-09 07:19:01
5023	244	250	77	2025-07-09 07:19:01	2025-07-09 07:19:01
5024	250	233	88	2025-07-09 07:19:01	2025-07-09 07:19:01
5025	233	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5026	250	105	44	2025-07-09 07:19:01	2025-07-09 07:19:01
4975	250	224	66	2025-07-09 07:19:01	2025-07-10 21:25:04
5027	105	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5028	250	106	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5029	250	107	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5030	250	108	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5031	108	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
5032	250	109	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5033	250	110	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5034	250	111	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5035	111	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5036	250	112	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5037	112	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
5038	250	116	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5039	116	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5040	250	118	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5041	118	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5042	250	121	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5043	121	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5044	144	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5045	146	250	44	2025-07-09 07:19:01	2025-07-09 07:19:01
5046	150	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5047	250	53	44	2025-07-09 07:19:01	2025-07-09 07:19:01
15421	325	268	100	2025-12-22 17:20:11	2025-12-22 17:20:11
5049	192	250	77	2025-07-09 07:19:01	2025-07-09 07:19:01
5050	250	219	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5051	250	227	88	2025-07-09 07:19:01	2025-07-09 07:19:01
5052	227	250	88	2025-07-09 07:19:01	2025-07-09 07:19:01
5053	250	211	77	2025-07-09 07:19:01	2025-07-09 07:19:01
5054	211	250	55	2025-07-09 07:19:01	2025-07-09 07:19:01
5055	250	234	77	2025-07-09 07:19:01	2025-07-09 07:19:01
5056	234	250	66	2025-07-09 07:19:01	2025-07-09 07:19:01
11345	193	298	66	2025-09-25 07:52:16	2025-09-25 07:52:16
5059	251	174	66	2025-07-09 10:45:09	2025-07-09 10:45:09
5060	174	251	55	2025-07-09 10:45:09	2025-07-09 10:45:09
5061	251	181	77	2025-07-09 10:45:09	2025-07-09 10:45:09
5062	251	193	100	2025-07-09 10:45:09	2025-07-09 10:45:09
5063	193	251	66	2025-07-09 10:45:09	2025-07-09 10:45:09
5064	251	223	100	2025-07-09 10:45:09	2025-07-09 10:45:09
5065	223	251	55	2025-07-09 10:45:09	2025-07-09 10:45:09
5066	251	55	66	2025-07-09 10:45:09	2025-07-09 10:45:09
5067	55	251	44	2025-07-09 10:45:09	2025-07-09 10:45:09
5068	251	57	66	2025-07-09 10:45:09	2025-07-09 10:45:09
5069	57	251	44	2025-07-09 10:45:09	2025-07-09 10:45:09
5070	251	59	66	2025-07-09 10:45:09	2025-07-09 10:45:09
5071	59	251	44	2025-07-09 10:45:09	2025-07-09 10:45:09
5072	251	60	66	2025-07-09 10:45:09	2025-07-09 10:45:09
5073	60	251	44	2025-07-09 10:45:09	2025-07-09 10:45:09
5074	251	61	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5075	61	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5076	251	62	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5077	251	64	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5078	251	65	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5079	65	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5080	251	72	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5081	72	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5082	251	73	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5083	73	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5084	251	126	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5085	126	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5086	251	127	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5087	127	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5088	251	166	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5089	166	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5090	251	74	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5091	74	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5092	251	77	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5093	77	251	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5094	251	130	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5095	130	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5096	251	51	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5097	51	251	88	2025-07-09 10:45:10	2025-07-09 10:45:10
5098	251	214	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5099	251	176	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5102	251	231	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5103	231	251	88	2025-07-09 10:45:10	2025-07-09 10:45:10
5104	251	132	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5105	132	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5106	251	134	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5107	134	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5108	251	136	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5109	136	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5110	251	137	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5111	137	251	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5112	251	138	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5113	138	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5114	251	168	88	2025-07-09 10:45:10	2025-07-09 10:45:10
5115	168	251	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5116	251	189	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5117	189	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5118	251	222	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5119	222	251	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5120	251	232	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5121	232	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5122	251	243	88	2025-07-09 10:45:10	2025-07-09 10:45:10
5123	243	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5124	251	171	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5125	171	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5126	251	179	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5127	179	251	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5128	251	94	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5129	94	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5130	251	95	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5131	95	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5132	251	96	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5133	96	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5101	224	251	88	2025-07-09 10:45:10	2025-07-10 21:25:04
5134	251	98	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5135	98	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5136	251	101	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5137	251	103	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5138	103	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5139	251	80	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5140	80	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5141	251	81	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5142	251	82	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5143	82	251	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5144	251	83	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5145	83	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5057	250	246	66	2025-07-09 07:19:01	2025-08-13 14:58:02
5146	251	84	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5147	84	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5148	251	87	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5149	87	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5150	251	89	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5151	89	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5152	251	90	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5153	90	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5154	251	91	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5155	91	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5156	251	92	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5157	92	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5158	251	244	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5159	244	251	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5161	251	233	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5162	233	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5163	251	105	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5164	105	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5165	251	106	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5166	251	107	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5167	251	108	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5168	108	251	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5169	251	109	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5170	251	110	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5171	251	111	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5172	111	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5173	251	112	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5174	112	251	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5175	251	116	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5176	116	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5177	251	118	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5178	118	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5179	251	121	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5180	121	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5181	251	144	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5182	144	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5183	251	146	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5184	146	251	44	2025-07-09 10:45:10	2025-07-09 10:45:10
5185	251	150	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5186	150	251	55	2025-07-09 10:45:10	2025-07-09 10:45:10
5187	251	151	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5188	251	53	77	2025-07-09 10:45:10	2025-07-09 10:45:10
15422	268	325	88	2025-12-22 17:20:11	2025-12-22 17:20:11
5191	251	219	88	2025-07-09 10:45:10	2025-07-09 10:45:10
5192	251	227	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5193	227	251	77	2025-07-09 10:45:10	2025-07-09 10:45:10
5194	251	211	88	2025-07-09 10:45:10	2025-07-09 10:45:10
5195	251	234	100	2025-07-09 10:45:10	2025-07-09 10:45:10
5196	234	251	66	2025-07-09 10:45:10	2025-07-09 10:45:10
5197	251	246	88	2025-07-09 10:45:10	2025-07-09 10:45:10
11346	298	223	100	2025-09-25 07:52:16	2025-09-25 07:52:16
5199	252	174	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5200	174	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5201	252	181	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5202	252	193	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5203	193	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5204	252	223	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5205	223	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5206	252	55	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5207	55	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5208	252	57	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5209	57	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5210	252	59	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5211	59	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5212	252	60	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5213	60	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5214	252	61	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5215	61	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5216	252	62	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5217	252	64	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5218	252	65	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5219	65	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5220	252	72	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5221	72	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5222	252	73	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5223	73	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5224	252	126	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5225	126	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5226	252	127	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5227	127	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5228	252	166	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5229	166	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5230	252	74	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5231	74	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5232	252	77	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5233	77	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5234	252	130	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5235	130	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5236	252	51	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5237	51	252	88	2025-07-10 06:23:58	2025-07-10 06:23:58
5238	252	214	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5239	252	176	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5240	252	224	88	2025-07-10 06:23:58	2025-07-10 21:12:01
5242	252	231	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5243	231	252	88	2025-07-10 06:23:58	2025-07-10 06:23:58
5244	252	132	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5245	132	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5246	252	134	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5247	134	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5248	252	136	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5249	136	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5250	252	137	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5251	137	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5252	252	138	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5253	138	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5254	252	168	88	2025-07-10 06:23:58	2025-07-10 06:23:58
5189	251	192	88	2025-07-09 10:45:10	2025-11-17 15:32:36
5255	168	252	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5256	252	189	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5257	189	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5258	252	222	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5259	222	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5260	252	232	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5261	232	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5262	252	243	88	2025-07-10 06:23:58	2025-07-10 06:23:58
5263	243	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5264	252	171	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5265	171	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5266	252	179	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5267	179	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5268	252	94	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5269	94	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5270	252	95	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5271	95	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5272	252	96	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5273	96	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5274	252	98	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5275	98	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5276	252	101	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5277	252	103	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5278	103	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5279	252	80	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5280	80	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5281	252	81	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5282	252	82	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5283	82	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5284	252	83	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5285	83	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5286	252	84	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5287	84	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5288	252	87	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5289	87	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5290	252	89	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5291	89	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5292	252	90	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5293	90	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5294	252	91	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5295	91	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5296	252	92	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5297	92	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5298	252	244	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5299	244	252	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5301	252	233	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5302	233	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5303	252	105	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5304	105	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5305	252	106	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5306	252	107	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5307	252	108	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5308	108	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5309	252	109	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5310	252	110	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5311	252	111	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5312	111	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5313	252	112	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5314	112	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5315	252	116	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5316	116	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5317	252	118	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5318	118	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5319	252	121	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5320	121	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5321	252	144	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5322	144	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5323	252	146	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5324	146	252	44	2025-07-10 06:23:58	2025-07-10 06:23:58
5325	252	150	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5326	150	252	55	2025-07-10 06:23:58	2025-07-10 06:23:58
5327	252	151	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5328	252	53	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5331	252	219	88	2025-07-10 06:23:58	2025-07-10 06:23:58
5332	252	227	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5333	227	252	77	2025-07-10 06:23:58	2025-07-10 06:23:58
5334	252	211	88	2025-07-10 06:23:58	2025-07-10 06:23:58
5335	252	234	100	2025-07-10 06:23:58	2025-07-10 06:23:58
5336	234	252	66	2025-07-10 06:23:58	2025-07-10 06:23:58
5337	252	246	88	2025-07-10 06:23:58	2025-07-10 06:23:58
11347	223	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
5340	174	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5345	223	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5347	55	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5241	224	252	88	2025-07-10 06:23:58	2025-07-10 21:25:05
5341	253	181	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5346	253	55	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5300	252	216	88	2025-07-10 06:23:58	2025-07-10 19:24:02
5342	253	193	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5344	253	223	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5343	193	253	66	2025-07-10 15:13:36	2025-07-10 19:41:22
5349	57	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5351	59	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5353	60	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5355	61	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5359	65	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5361	72	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5363	73	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5365	126	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5367	127	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5369	166	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5371	74	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5373	77	253	66	2025-07-10 15:13:36	2025-07-10 15:13:36
5375	130	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5377	51	253	88	2025-07-10 15:13:36	2025-07-10 15:13:36
5329	252	192	88	2025-07-10 06:23:58	2025-11-17 15:32:36
5381	224	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5383	231	253	88	2025-07-10 15:13:36	2025-07-10 15:13:36
5385	132	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5387	134	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5389	136	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5391	137	253	66	2025-07-10 15:13:36	2025-07-10 15:13:36
5393	138	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5395	168	253	100	2025-07-10 15:13:36	2025-07-10 15:13:36
5399	222	253	66	2025-07-10 15:13:36	2025-07-10 15:13:36
5405	171	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5407	179	253	66	2025-07-10 15:13:36	2025-07-10 15:13:36
5409	94	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5411	95	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5413	96	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5415	98	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5418	103	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5420	80	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5423	82	253	66	2025-07-10 15:13:36	2025-07-10 15:13:36
5425	83	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5427	84	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5429	87	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5431	89	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5433	90	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5435	91	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5437	92	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5444	105	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5448	108	253	66	2025-07-10 15:13:36	2025-07-10 15:13:36
5452	111	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5454	112	253	66	2025-07-10 15:13:36	2025-07-10 15:13:36
5352	253	60	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5354	253	61	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5358	253	65	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5357	253	64	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5360	253	72	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5364	253	126	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5362	253	73	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5370	253	74	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5368	253	166	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5372	253	77	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5376	253	51	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5374	253	130	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5378	253	214	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5379	253	176	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5380	253	224	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5382	253	231	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5403	243	253	55	2025-07-10 15:13:36	2025-07-10 19:47:16
5386	253	134	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5388	253	136	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5390	253	137	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5394	253	168	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5392	253	138	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5396	253	189	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5397	189	253	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5400	253	232	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5406	253	179	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5404	253	171	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5408	253	94	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5412	253	96	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5410	253	95	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5416	253	101	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5414	253	98	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5422	253	82	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5417	253	103	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5419	253	80	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5421	253	81	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5428	253	87	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5424	253	83	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5426	253	84	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5432	253	90	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5430	253	89	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5436	253	92	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5434	253	91	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5441	253	233	44	2025-07-10 15:13:36	2025-07-10 19:42:44
5442	233	253	44	2025-07-10 15:13:36	2025-07-11 07:40:37
5443	253	105	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5445	253	106	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5447	253	108	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5449	253	109	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5451	253	111	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5446	253	107	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5450	253	110	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5453	253	112	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5356	253	62	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5350	253	59	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5398	253	222	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5439	244	253	77	2025-07-10 15:13:36	2025-07-10 19:47:16
5401	232	253	55	2025-07-10 15:13:36	2025-07-11 07:40:37
5440	253	216	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5384	253	132	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5456	116	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5458	118	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5460	121	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5462	144	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5464	146	253	44	2025-07-10 15:13:36	2025-07-10 15:13:36
5466	150	253	55	2025-07-10 15:13:36	2025-07-10 15:13:36
5479	176	253	44	2025-07-10 15:14:05	2025-07-10 15:14:05
5402	253	243	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5530	133	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5467	253	151	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5438	253	244	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5471	253	219	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5457	253	118	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5459	253	121	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5468	253	53	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5515	211	253	44	2025-07-10 19:46:17	2025-07-11 07:40:47
5463	253	146	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5470	192	253	88	2025-07-10 15:13:36	2025-07-10 19:42:14
5472	253	227	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5474	253	211	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5480	54	216	44	2025-07-10 19:24:01	2025-07-10 19:24:01
5481	165	216	44	2025-07-10 19:24:01	2025-07-10 19:24:01
5482	216	241	44	2025-07-10 19:24:01	2025-07-10 19:24:01
5483	245	216	66	2025-07-10 19:24:01	2025-07-10 19:24:01
5484	250	216	66	2025-07-10 19:24:01	2025-07-10 19:24:01
5485	56	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5486	66	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5487	67	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
2063	216	68	66	2025-06-03 08:40:56	2025-07-10 19:24:02
5488	71	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5489	124	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5490	125	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5491	78	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5492	129	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5493	200	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5160	251	216	88	2025-07-09 10:45:10	2025-07-10 19:24:02
5494	131	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5495	133	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
2087	216	142	55	2025-06-03 08:40:57	2025-07-10 19:24:02
5496	142	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5497	216	237	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5498	216	242	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5499	177	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5500	216	238	55	2025-07-10 19:24:02	2025-07-10 19:24:02
5501	79	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5502	85	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5503	88	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5504	93	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5505	216	239	55	2025-07-10 19:24:02	2025-07-10 19:24:02
5506	114	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5507	115	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5508	117	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
2122	216	122	55	2025-06-03 08:40:57	2025-07-10 19:24:02
5509	122	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5510	139	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5511	149	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5512	152	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5513	153	216	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5514	216	240	44	2025-07-10 19:24:02	2025-07-10 19:24:02
5339	253	174	44	2025-07-10 15:13:36	2025-07-10 19:41:22
11348	298	263	100	2025-09-25 07:52:16	2025-09-25 07:52:16
5465	253	150	55	2025-07-10 15:13:36	2025-07-11 08:20:36
5455	253	116	55	2025-07-10 15:13:36	2025-07-10 19:41:22
5461	253	144	44	2025-07-10 15:13:36	2025-07-10 19:41:22
5516	54	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5517	165	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
4463	224	245	88	2025-06-11 10:12:56	2025-07-10 21:12:01
4564	247	224	77	2025-06-23 21:08:34	2025-07-10 21:12:01
5518	56	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5519	66	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5348	253	57	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5366	253	127	44	2025-07-10 15:13:36	2025-07-10 19:42:14
5475	253	234	55	2025-07-10 15:13:36	2025-07-10 19:42:14
5520	67	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5469	253	192	44	2025-07-10 15:13:36	2025-07-10 19:42:44
5521	71	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5477	253	246	44	2025-07-10 15:13:36	2025-07-10 19:42:44
5531	142	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5532	177	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5533	79	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5534	85	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5522	124	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5523	125	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5535	88	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5524	78	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5525	129	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5536	93	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5537	114	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5476	234	253	66	2025-07-10 15:13:36	2025-07-10 19:47:16
5526	200	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5527	50	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5528	194	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5100	251	224	88	2025-07-09 10:45:10	2025-07-10 21:12:01
5529	131	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5538	115	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5539	117	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5540	122	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
2412	143	224	66	2025-06-04 08:00:13	2025-07-10 21:12:01
5541	139	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5542	149	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5543	152	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
5544	153	224	44	2025-07-10 21:12:01	2025-07-10 21:12:01
4976	224	250	88	2025-07-09 07:19:01	2025-07-10 21:25:04
2371	224	142	66	2025-06-04 08:00:13	2025-07-10 21:25:05
5473	227	253	77	2025-07-10 15:13:36	2025-07-11 07:40:37
5546	174	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5549	193	254	66	2025-07-11 11:30:36	2025-07-11 11:30:36
5551	223	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5553	55	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5555	57	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5557	59	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5559	60	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5561	61	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5565	65	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5567	72	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5569	73	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5571	126	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5573	127	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5575	166	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5577	74	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5579	77	254	66	2025-07-11 11:30:36	2025-07-11 11:30:36
5581	130	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5583	51	254	88	2025-07-11 11:30:36	2025-07-11 11:30:36
5587	231	254	88	2025-07-11 11:30:36	2025-07-11 11:30:36
5589	132	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5591	134	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5593	136	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5595	137	254	66	2025-07-11 11:30:36	2025-07-11 11:30:36
5597	138	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5599	224	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5601	168	254	100	2025-07-11 11:30:36	2025-07-11 11:30:36
5603	189	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5605	222	254	66	2025-07-11 11:30:36	2025-07-11 11:30:36
5607	232	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5609	243	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5611	171	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5613	179	254	66	2025-07-11 11:30:36	2025-07-11 11:30:36
5615	94	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5617	95	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5619	96	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5621	98	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5624	103	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5626	80	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5629	82	254	66	2025-07-11 11:30:36	2025-07-11 11:30:36
5631	83	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5633	84	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5635	87	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5637	89	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5639	90	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5641	91	254	55	2025-07-11 11:30:36	2025-07-11 11:30:36
5643	92	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5645	244	254	77	2025-07-11 11:30:36	2025-07-11 11:30:36
5648	233	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5650	105	254	44	2025-07-11 11:30:36	2025-07-11 11:30:36
5548	254	193	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5550	254	223	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5552	254	55	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5554	254	57	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5556	254	59	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5558	254	60	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5560	254	61	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5562	254	62	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5563	254	64	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5566	254	72	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5568	254	73	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5570	254	126	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5572	254	127	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5574	254	166	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5576	254	74	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5578	254	77	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5580	254	130	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5582	254	51	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5584	254	214	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5585	254	176	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5586	254	231	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5588	254	132	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5590	254	134	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5592	254	136	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5594	254	137	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5596	254	138	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5598	254	224	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5602	254	189	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5604	254	222	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5606	254	232	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5608	254	243	77	2025-07-11 11:30:36	2025-07-11 11:30:56
5610	254	171	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5612	254	179	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5614	254	94	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5616	254	95	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5618	254	96	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5620	254	98	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5622	254	101	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5623	254	103	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5625	254	80	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5627	254	81	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5628	254	82	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5630	254	83	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5632	254	84	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5634	254	87	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5638	254	90	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5640	254	91	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5642	254	92	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5644	254	244	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5646	254	216	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5647	254	233	88	2025-07-11 11:30:36	2025-07-11 11:30:56
5649	254	105	66	2025-07-11 11:30:36	2025-07-11 11:30:57
5651	254	106	66	2025-07-11 11:30:36	2025-07-11 11:30:57
5652	254	107	66	2025-07-11 11:30:36	2025-07-11 11:30:57
5654	108	254	66	2025-07-11 11:30:36	2025-07-11 11:30:36
5658	111	254	44	2025-07-11 11:30:37	2025-07-11 11:30:37
5660	112	254	66	2025-07-11 11:30:37	2025-07-11 11:30:37
5662	116	254	44	2025-07-11 11:30:37	2025-07-11 11:30:37
5664	118	254	44	2025-07-11 11:30:37	2025-07-11 11:30:37
5666	121	254	44	2025-07-11 11:30:37	2025-07-11 11:30:37
5668	144	254	55	2025-07-11 11:30:37	2025-07-11 11:30:37
5670	146	254	44	2025-07-11 11:30:37	2025-07-11 11:30:37
5672	150	254	55	2025-07-11 11:30:37	2025-07-11 11:30:37
5674	254	53	77	2025-07-11 11:30:37	2025-07-11 11:30:37
15424	55	325	44	2025-12-22 17:20:11	2025-12-22 17:20:11
5679	227	254	77	2025-07-11 11:30:37	2025-07-11 11:30:37
5682	234	254	66	2025-07-11 11:30:37	2025-07-11 11:30:37
11349	263	298	77	2025-09-25 07:52:16	2025-09-25 07:52:16
5545	254	174	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5547	254	181	66	2025-07-11 11:30:36	2025-07-11 11:30:56
5564	254	65	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5600	254	168	77	2025-07-11 11:30:36	2025-07-11 11:30:56
5636	254	89	55	2025-07-11 11:30:36	2025-07-11 11:30:56
5653	254	108	66	2025-07-11 11:30:36	2025-07-11 11:30:57
5655	254	109	66	2025-07-11 11:30:36	2025-07-11 11:30:57
5656	254	110	66	2025-07-11 11:30:37	2025-07-11 11:30:57
5657	254	111	66	2025-07-11 11:30:37	2025-07-11 11:30:57
5659	254	112	66	2025-07-11 11:30:37	2025-07-11 11:30:57
5661	254	116	66	2025-07-11 11:30:37	2025-07-11 11:30:57
5663	254	118	66	2025-07-11 11:30:37	2025-07-11 11:30:57
5665	254	121	66	2025-07-11 11:30:37	2025-07-11 11:30:57
5667	254	144	55	2025-07-11 11:30:37	2025-07-11 11:30:57
5669	254	146	55	2025-07-11 11:30:37	2025-07-11 11:30:57
5671	254	150	55	2025-07-11 11:30:37	2025-07-11 11:30:57
5673	254	151	55	2025-07-11 11:30:37	2025-07-11 11:30:57
5677	254	219	77	2025-07-11 11:30:37	2025-07-11 11:30:57
5678	254	227	88	2025-07-11 11:30:37	2025-07-11 11:30:57
5680	254	211	77	2025-07-11 11:30:37	2025-07-11 11:30:57
5681	254	234	88	2025-07-11 11:30:37	2025-07-11 11:30:57
5683	254	246	77	2025-07-11 11:30:37	2025-07-11 11:30:57
5685	255	174	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5686	174	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5687	255	181	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5688	255	193	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5689	193	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5690	255	223	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5691	223	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5692	255	55	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5693	55	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5694	255	57	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5695	57	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5696	255	59	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5697	59	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5698	255	60	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5699	60	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5700	255	61	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5701	61	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5702	255	62	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5703	255	64	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5704	255	65	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5705	65	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5706	255	72	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5707	72	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5708	255	73	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5709	73	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5710	255	126	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5711	126	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5712	255	127	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5713	127	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5714	255	166	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5715	166	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5716	255	74	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5717	74	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5718	255	77	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5719	77	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5720	255	130	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5721	130	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5722	255	51	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5723	51	255	88	2025-07-11 12:55:51	2025-07-11 12:55:51
5724	255	214	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5725	255	176	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5726	255	231	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5727	231	255	88	2025-07-11 12:55:51	2025-07-11 12:55:51
5728	255	132	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5729	132	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5730	255	134	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5731	134	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5732	255	136	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5733	136	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5734	255	137	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5735	137	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5736	255	138	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5737	138	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5738	255	224	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5739	224	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5740	255	168	88	2025-07-11 12:55:51	2025-07-11 12:55:51
5741	168	255	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5742	255	189	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5743	189	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5744	255	222	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5745	222	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5746	255	232	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5747	232	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5748	255	243	88	2025-07-11 12:55:51	2025-07-11 12:55:51
5749	243	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5750	255	171	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5751	171	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5752	255	179	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5753	179	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5754	255	94	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5755	94	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5756	255	95	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5757	95	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5758	255	96	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5759	96	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5760	255	98	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5761	98	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5762	255	101	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5763	255	103	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5764	103	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5765	255	80	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5766	80	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5767	255	81	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5768	255	82	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5769	82	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5770	255	83	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5771	83	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5772	255	84	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5773	84	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5774	255	87	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5775	87	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5776	255	89	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5777	89	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5778	255	90	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5779	90	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5780	255	91	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5781	91	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5782	255	92	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5783	92	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5784	255	244	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5785	244	255	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5786	255	216	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5787	255	233	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5788	233	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5789	255	105	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5790	105	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5791	255	106	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5792	255	107	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5793	255	108	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5794	108	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5795	255	109	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5796	255	110	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5797	255	111	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5798	111	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5799	255	112	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5800	112	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5801	255	116	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5802	116	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5803	255	118	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5804	118	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5805	255	121	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5806	121	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5807	255	144	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5808	144	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5809	255	146	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5810	146	255	44	2025-07-11 12:55:51	2025-07-11 12:55:51
5811	255	150	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5812	150	255	55	2025-07-11 12:55:51	2025-07-11 12:55:51
5813	255	151	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5814	255	53	77	2025-07-11 12:55:51	2025-07-11 12:55:51
15426	57	325	44	2025-12-22 17:20:11	2025-12-22 17:20:11
5817	255	219	88	2025-07-11 12:55:51	2025-07-11 12:55:51
5818	255	227	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5819	227	255	77	2025-07-11 12:55:51	2025-07-11 12:55:51
5820	255	211	88	2025-07-11 12:55:51	2025-07-11 12:55:51
5821	255	234	100	2025-07-11 12:55:51	2025-07-11 12:55:51
5822	234	255	66	2025-07-11 12:55:51	2025-07-11 12:55:51
5823	255	246	88	2025-07-11 12:55:51	2025-07-11 12:55:51
11350	298	268	100	2025-09-25 07:52:16	2025-09-25 07:52:16
5825	258	174	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5826	174	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5827	258	181	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5828	258	193	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5829	193	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5830	258	223	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5831	223	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5832	258	55	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5833	55	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5834	258	57	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5835	57	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5836	258	59	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5837	59	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5838	258	60	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5839	60	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5840	258	61	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5841	61	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5842	258	62	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5843	258	64	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5844	258	65	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5845	65	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5846	258	72	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5847	72	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5848	258	73	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5849	73	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5850	258	126	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5851	126	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5852	258	127	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5853	127	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5854	258	166	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5855	166	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5856	258	74	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5857	74	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5858	258	77	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5859	77	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5860	258	130	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5861	130	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5862	258	51	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5863	51	258	88	2025-07-11 14:47:31	2025-07-11 14:47:31
5864	258	214	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5865	258	176	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5866	258	231	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5867	231	258	88	2025-07-11 14:47:31	2025-07-11 14:47:31
5868	258	132	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5869	132	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5870	258	134	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5871	134	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5872	258	136	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5873	136	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5874	258	137	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5875	137	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5876	258	138	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5877	138	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5878	258	224	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5879	224	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5880	258	168	88	2025-07-11 14:47:31	2025-07-11 14:47:31
5881	168	258	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5882	258	189	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5883	189	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5884	258	222	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5885	222	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5815	255	192	88	2025-07-11 12:55:51	2025-11-17 15:32:36
5886	258	232	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5887	232	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5888	258	243	88	2025-07-11 14:47:31	2025-07-11 14:47:31
5889	243	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5890	258	171	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5891	171	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5892	258	179	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5893	179	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5894	258	94	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5895	94	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5896	258	95	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5897	95	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5898	258	96	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5899	96	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5900	258	98	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5901	98	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5902	258	101	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5903	258	103	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5904	103	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5905	258	80	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5906	80	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5907	258	81	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5908	258	82	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5909	82	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5910	258	83	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5911	83	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5912	258	84	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5913	84	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5914	258	87	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5915	87	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5916	258	89	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5917	89	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5918	258	90	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5919	90	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5920	258	91	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5921	91	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5922	258	92	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5923	92	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5924	258	244	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5925	244	258	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5926	258	216	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5927	258	233	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5928	233	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5929	258	105	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5930	105	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5931	258	106	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5932	258	107	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5933	258	108	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5934	108	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5935	258	109	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5936	258	110	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5937	258	111	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5938	111	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5939	258	112	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5940	112	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5941	258	116	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5942	116	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5943	258	118	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5944	118	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5945	258	121	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5946	121	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5947	258	144	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5948	144	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5949	258	146	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5950	146	258	44	2025-07-11 14:47:31	2025-07-11 14:47:31
5951	258	150	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5952	150	258	55	2025-07-11 14:47:31	2025-07-11 14:47:31
5953	258	151	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5954	258	53	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5957	258	219	88	2025-07-11 14:47:31	2025-07-11 14:47:31
5958	258	227	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5959	227	258	77	2025-07-11 14:47:31	2025-07-11 14:47:31
5960	258	211	88	2025-07-11 14:47:31	2025-07-11 14:47:31
5961	258	234	100	2025-07-11 14:47:31	2025-07-11 14:47:31
5962	234	258	66	2025-07-11 14:47:31	2025-07-11 14:47:31
5963	258	246	88	2025-07-11 14:47:31	2025-07-11 14:47:31
11351	268	298	88	2025-09-25 07:52:16	2025-09-25 07:52:16
5965	261	54	77	2025-07-11 15:13:13	2025-07-11 15:13:13
5966	54	261	44	2025-07-11 15:13:13	2025-07-11 15:13:13
5967	261	165	77	2025-07-11 15:13:13	2025-07-11 15:13:13
5968	165	261	44	2025-07-11 15:13:13	2025-07-11 15:13:13
5969	261	197	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5970	197	261	88	2025-07-11 15:13:13	2025-07-11 15:13:13
5971	261	204	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5972	204	261	88	2025-07-11 15:13:13	2025-07-11 15:13:13
5973	261	212	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5974	212	261	88	2025-07-11 15:13:13	2025-07-11 15:13:13
5975	261	230	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5976	230	261	88	2025-07-11 15:13:13	2025-07-11 15:13:13
5977	261	235	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5978	235	261	88	2025-07-11 15:13:13	2025-07-11 15:13:13
5979	261	241	88	2025-07-11 15:13:13	2025-07-11 15:13:13
5980	241	261	88	2025-07-11 15:13:13	2025-07-11 15:13:13
5981	261	245	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5982	245	261	66	2025-07-11 15:13:13	2025-07-11 15:13:13
5983	261	247	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5984	247	261	77	2025-07-11 15:13:13	2025-07-11 15:13:13
5985	261	250	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5986	250	261	66	2025-07-11 15:13:13	2025-07-11 15:13:13
5987	261	255	100	2025-07-11 15:13:13	2025-07-11 15:13:13
5988	255	261	88	2025-07-11 15:13:13	2025-07-11 15:13:13
5989	261	56	66	2025-07-11 15:13:13	2025-07-11 15:13:13
5990	56	261	44	2025-07-11 15:13:13	2025-07-11 15:13:13
5991	261	58	66	2025-07-11 15:13:13	2025-07-11 15:13:13
5992	58	261	55	2025-07-11 15:13:13	2025-07-11 15:13:13
5955	258	192	88	2025-07-11 14:47:31	2025-11-17 15:32:36
5993	261	63	66	2025-07-11 15:13:13	2025-07-11 15:13:13
5994	63	261	55	2025-07-11 15:13:13	2025-07-11 15:13:13
5995	261	66	66	2025-07-11 15:13:14	2025-07-11 15:13:14
5996	66	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
5997	261	67	66	2025-07-11 15:13:14	2025-07-11 15:13:14
5998	67	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
5999	261	68	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6000	68	261	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6001	261	69	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6002	69	261	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6003	261	70	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6004	70	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6005	261	71	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6006	71	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6007	261	124	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6008	124	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6009	261	125	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6010	125	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6011	261	128	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6012	128	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6013	261	75	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6014	75	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6015	261	76	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6016	76	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6017	261	78	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6018	78	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6019	261	129	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6020	129	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6021	261	200	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6022	200	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6023	261	50	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6024	261	194	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6025	261	251	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6026	251	261	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6027	261	131	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6028	131	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6029	261	133	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6030	133	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6031	261	135	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6032	135	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6033	261	142	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6034	142	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6035	261	237	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6036	237	261	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6037	261	258	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6038	258	261	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6039	261	242	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6040	242	261	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6041	261	248	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6042	248	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6043	261	177	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6044	177	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6045	261	195	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6046	261	202	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6047	261	209	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6048	209	261	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6049	261	215	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6050	261	238	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6051	238	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6052	261	249	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6053	249	261	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6054	261	252	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6055	252	261	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6056	261	210	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6057	210	261	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6058	261	191	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6059	191	261	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6060	261	196	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6061	196	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6062	261	97	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6063	97	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6064	261	99	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6065	99	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6066	261	100	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6067	261	102	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6068	261	79	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6069	79	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6070	261	85	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6071	85	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6072	261	86	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6073	86	261	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6074	261	88	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6075	88	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6076	261	93	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6077	93	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6078	261	253	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6079	261	226	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6080	226	261	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6081	261	239	88	2025-07-11 15:13:14	2025-07-11 15:13:14
6082	239	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6083	261	104	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6084	261	113	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6085	113	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6086	261	114	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6087	114	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6088	261	115	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6089	115	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6090	261	117	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6091	117	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6092	261	119	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6093	119	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6094	261	120	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6095	120	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6096	261	122	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6097	122	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6098	261	123	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6099	123	261	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6100	261	145	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6101	145	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6102	261	143	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6103	143	261	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6104	261	139	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6105	139	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6106	261	140	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6107	140	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6108	261	141	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6109	141	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6110	261	147	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6111	147	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6112	261	148	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6113	261	149	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6114	149	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6115	261	152	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6116	152	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6117	261	153	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6118	153	261	44	2025-07-11 15:13:14	2025-07-11 15:13:14
6119	261	173	66	2025-07-11 15:13:14	2025-07-11 15:13:14
6120	173	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6121	261	240	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6122	240	261	55	2025-07-11 15:13:14	2025-07-11 15:13:14
6123	261	254	100	2025-07-11 15:13:14	2025-07-11 15:13:14
6124	254	261	77	2025-07-11 15:13:14	2025-07-11 15:13:14
6126	54	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6127	260	165	77	2025-07-12 05:20:49	2025-07-12 05:20:49
6128	165	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6129	260	197	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6130	197	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6131	260	204	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6132	204	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6133	260	212	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6134	212	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6135	260	230	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6136	230	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6137	260	235	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6138	235	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6139	260	241	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6140	241	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6143	260	247	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6144	247	260	77	2025-07-12 05:20:49	2025-07-12 05:20:49
6147	260	255	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6148	255	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6150	56	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6152	58	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6154	63	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6156	66	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6158	67	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6160	68	260	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6162	69	260	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6164	70	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6166	71	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6168	124	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6170	125	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6172	128	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6174	75	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6176	76	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6178	78	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6180	129	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6181	260	200	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6142	245	260	77	2025-07-12 05:20:49	2025-07-12 08:53:47
6145	260	250	44	2025-07-12 05:20:49	2025-07-12 08:53:47
6146	250	260	77	2025-07-12 05:20:49	2025-07-12 08:53:47
6149	260	56	44	2025-07-12 05:20:49	2025-07-12 08:53:47
6151	260	58	44	2025-07-12 05:20:49	2025-07-12 08:53:47
6153	260	63	44	2025-07-12 05:20:49	2025-07-12 08:53:47
6155	260	66	44	2025-07-12 05:20:49	2025-07-12 08:53:47
6157	260	67	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6161	260	69	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6163	260	70	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6165	260	71	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6167	260	124	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6169	260	125	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6171	260	128	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6173	260	75	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6175	260	76	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6177	260	78	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6179	260	129	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6141	260	245	44	2025-07-12 05:20:49	2025-07-12 08:54:03
6182	200	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6183	260	50	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6185	260	251	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6186	251	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6188	131	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6190	133	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6192	135	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6194	142	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6196	237	260	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6197	260	258	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6198	258	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6200	242	260	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6201	260	248	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6202	248	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6203	260	177	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6204	177	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6207	260	209	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6208	209	260	77	2025-07-12 05:20:49	2025-07-12 05:20:49
6210	260	238	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6211	238	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6212	260	249	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6213	249	260	77	2025-07-12 05:20:49	2025-07-12 05:20:49
6214	260	252	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6215	252	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6216	260	210	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6217	210	260	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6218	260	191	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6220	260	196	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6221	196	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6223	97	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6225	99	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6229	79	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6231	85	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6233	86	260	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6235	88	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6237	93	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6239	260	226	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6240	226	260	88	2025-07-12 05:20:49	2025-07-12 05:20:49
6242	239	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6245	113	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6247	114	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6249	115	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6251	117	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6253	119	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6255	120	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6257	122	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6259	123	260	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6261	145	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6263	143	260	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6265	139	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6267	140	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6269	141	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6271	147	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6274	149	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6276	152	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6278	153	260	44	2025-07-12 05:20:49	2025-07-12 05:20:49
6279	260	173	66	2025-07-12 05:20:49	2025-07-12 05:20:49
6280	173	260	55	2025-07-12 05:20:49	2025-07-12 05:20:49
6281	260	240	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6283	260	254	100	2025-07-12 05:20:49	2025-07-12 05:20:49
6284	254	260	77	2025-07-12 05:20:49	2025-07-12 05:20:49
6286	174	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6287	262	181	77	2025-07-12 05:37:03	2025-07-12 05:37:03
6288	262	193	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6184	260	194	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6187	260	131	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6189	260	133	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6191	260	135	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6193	260	142	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6195	260	237	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6199	260	242	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6205	260	195	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6270	260	147	44	2025-07-12 05:20:49	2025-07-12 08:54:03
6219	191	260	77	2025-07-12 05:20:49	2025-07-12 08:53:48
6222	260	97	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6224	260	99	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6226	260	100	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6227	260	102	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6228	260	79	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6230	260	85	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6232	260	86	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6234	260	88	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6236	260	93	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6238	260	253	55	2025-07-12 05:20:49	2025-07-12 08:53:48
6241	260	239	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6243	260	104	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6244	260	113	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6246	260	114	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6248	260	115	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6250	260	117	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6254	260	120	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6256	260	122	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6258	260	123	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6260	260	145	55	2025-07-12 05:20:49	2025-07-12 08:53:48
6262	260	143	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6264	260	139	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6266	260	140	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6268	260	141	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6273	260	149	44	2025-07-12 05:20:49	2025-07-12 08:54:03
6272	260	148	55	2025-07-12 05:20:49	2025-07-12 08:53:48
6275	260	152	55	2025-07-12 05:20:49	2025-07-12 08:53:48
6277	260	153	55	2025-07-12 05:20:49	2025-07-12 08:53:48
6282	240	260	66	2025-07-12 05:20:49	2025-07-12 08:53:48
6209	260	215	44	2025-07-12 05:20:49	2025-07-12 08:54:03
6289	193	262	66	2025-07-12 05:37:03	2025-07-12 05:37:03
6291	223	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6293	55	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6295	57	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6297	59	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6299	60	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6301	61	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6305	65	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6307	72	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6309	73	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6311	126	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6313	127	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6315	166	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6317	74	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6319	77	262	66	2025-07-12 05:37:03	2025-07-12 05:37:03
6321	130	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6323	51	262	88	2025-07-12 05:37:03	2025-07-12 05:37:03
6327	231	262	88	2025-07-12 05:37:03	2025-07-12 05:37:03
6329	132	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6331	134	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6333	136	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6335	137	262	66	2025-07-12 05:37:03	2025-07-12 05:37:03
6337	138	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6339	224	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6341	168	262	100	2025-07-12 05:37:03	2025-07-12 05:37:03
6342	262	189	100	2025-07-12 05:37:03	2025-07-12 05:37:03
6345	222	262	66	2025-07-12 05:37:03	2025-07-12 05:37:03
6347	232	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6349	243	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6351	261	262	88	2025-07-12 05:37:03	2025-07-12 05:37:03
6353	171	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6355	179	262	66	2025-07-12 05:37:03	2025-07-12 05:37:03
6357	94	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6359	95	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6361	96	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6363	98	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6366	103	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6368	80	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6371	82	262	66	2025-07-12 05:37:03	2025-07-12 05:37:03
6373	83	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6375	84	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6377	87	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6379	89	262	44	2025-07-12 05:37:03	2025-07-12 05:37:03
6381	90	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6383	91	262	55	2025-07-12 05:37:03	2025-07-12 05:37:03
6385	92	262	44	2025-07-12 05:37:04	2025-07-12 05:37:04
6387	244	262	77	2025-07-12 05:37:04	2025-07-12 05:37:04
6389	260	262	88	2025-07-12 05:37:04	2025-07-12 05:37:04
6392	233	262	44	2025-07-12 05:37:04	2025-07-12 05:37:04
6394	105	262	44	2025-07-12 05:37:04	2025-07-12 05:37:04
6292	262	55	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6294	262	57	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6296	262	59	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6298	262	60	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6300	262	61	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6302	262	62	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6303	262	64	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6304	262	65	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6306	262	72	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6310	262	126	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6312	262	127	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6314	262	166	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6316	262	74	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6318	262	77	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6320	262	130	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6322	262	51	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6324	262	214	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6325	262	176	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6326	262	231	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6328	262	132	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6330	262	134	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6332	262	136	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6334	262	137	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6336	262	138	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6338	262	224	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6340	262	168	77	2025-07-12 05:37:03	2025-07-12 05:37:15
6343	189	262	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6346	262	232	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6348	262	243	77	2025-07-12 05:37:03	2025-07-12 05:37:15
6350	262	261	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6352	262	171	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6354	262	179	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6356	262	94	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6358	262	95	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6360	262	96	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6362	262	98	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6364	262	101	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6365	262	103	66	2025-07-12 05:37:03	2025-07-12 05:37:15
6367	262	80	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6369	262	81	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6370	262	82	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6372	262	83	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6374	262	84	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6376	262	87	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6378	262	89	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6382	262	91	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6384	262	92	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6386	262	244	88	2025-07-12 05:37:04	2025-07-12 05:37:15
6390	262	216	55	2025-07-12 05:37:04	2025-07-12 05:37:15
6391	262	233	88	2025-07-12 05:37:04	2025-07-12 05:37:15
6393	262	105	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6395	262	106	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6388	262	260	77	2025-07-12 05:37:04	2025-07-12 08:53:48
6398	108	262	66	2025-07-12 05:37:04	2025-07-12 05:37:04
6402	111	262	44	2025-07-12 05:37:04	2025-07-12 05:37:04
6404	112	262	66	2025-07-12 05:37:04	2025-07-12 05:37:04
6406	116	262	44	2025-07-12 05:37:04	2025-07-12 05:37:04
6408	118	262	44	2025-07-12 05:37:04	2025-07-12 05:37:04
6410	121	262	44	2025-07-12 05:37:04	2025-07-12 05:37:04
6412	144	262	55	2025-07-12 05:37:04	2025-07-12 05:37:04
6414	146	262	44	2025-07-12 05:37:04	2025-07-12 05:37:04
6416	150	262	55	2025-07-12 05:37:04	2025-07-12 05:37:04
6423	227	262	77	2025-07-12 05:37:04	2025-07-12 05:37:04
6426	234	262	66	2025-07-12 05:37:04	2025-07-12 05:37:04
15428	59	325	44	2025-12-22 17:20:11	2025-12-22 17:20:11
6285	262	174	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6290	262	223	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6308	262	73	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6429	176	262	44	2025-07-12 05:37:15	2025-07-12 05:37:15
6344	262	222	88	2025-07-12 05:37:03	2025-07-12 05:37:15
6380	262	90	55	2025-07-12 05:37:03	2025-07-12 05:37:15
6396	262	107	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6397	262	108	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6399	262	109	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6400	262	110	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6401	262	111	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6403	262	112	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6405	262	116	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6407	262	118	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6409	262	121	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6411	262	144	55	2025-07-12 05:37:04	2025-07-12 05:37:15
6413	262	146	55	2025-07-12 05:37:04	2025-07-12 05:37:15
6415	262	150	55	2025-07-12 05:37:04	2025-07-12 05:37:15
6417	262	151	55	2025-07-12 05:37:04	2025-07-12 05:37:15
6418	262	53	66	2025-07-12 05:37:04	2025-07-12 05:37:15
6420	192	262	66	2025-07-12 05:37:04	2025-11-17 15:32:36
6419	262	192	88	2025-07-12 05:37:04	2025-11-17 15:32:36
6421	262	219	77	2025-07-12 05:37:04	2025-07-12 05:37:15
6422	262	227	88	2025-07-12 05:37:04	2025-07-12 05:37:15
6424	262	211	77	2025-07-12 05:37:04	2025-07-12 05:37:15
6425	262	234	88	2025-07-12 05:37:04	2025-07-12 05:37:15
6427	262	246	77	2025-07-12 05:37:04	2025-07-12 05:37:15
6431	54	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6433	165	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6435	197	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6437	204	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6439	212	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6441	230	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6443	235	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6445	241	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6447	245	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6449	247	263	77	2025-07-12 08:37:38	2025-07-12 08:37:38
6451	250	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6453	255	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6455	56	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6457	58	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6459	63	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6461	66	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6463	67	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6465	68	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6467	69	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6469	70	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6471	71	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6473	124	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6475	125	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6477	128	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6479	75	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6481	76	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6483	78	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6485	129	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6487	200	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6488	263	50	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6491	251	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6493	131	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6495	133	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6432	263	165	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6434	263	197	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6436	263	204	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6438	263	212	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6440	263	230	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6442	263	235	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6444	263	241	66	2025-07-12 08:37:38	2025-07-12 08:37:54
6446	263	245	88	2025-07-12 08:37:38	2025-07-12 08:37:54
6450	263	250	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6452	263	255	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6454	263	56	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6456	263	58	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6458	263	63	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6460	263	66	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6462	263	67	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6464	263	68	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6466	263	69	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6468	263	70	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6470	263	71	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6472	263	124	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6474	263	125	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6476	263	128	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6478	263	75	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6480	263	76	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6482	263	78	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6484	263	129	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6489	263	194	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6490	263	251	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6492	263	131	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6494	263	133	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6496	263	135	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6497	135	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6499	142	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6501	237	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6503	258	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6505	242	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6507	248	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6509	177	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6510	263	195	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6513	209	263	77	2025-07-12 08:37:38	2025-07-12 08:37:38
6516	238	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6518	249	263	77	2025-07-12 08:37:38	2025-07-12 08:37:38
6520	252	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6522	210	263	100	2025-07-12 08:37:38	2025-07-12 08:37:38
6523	263	191	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6526	196	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6528	97	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6530	99	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6534	79	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6536	85	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6538	86	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6540	88	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6542	93	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6545	226	263	88	2025-07-12 08:37:38	2025-07-12 08:37:38
6547	239	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6550	113	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6552	114	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6554	115	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6556	117	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6558	119	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6560	120	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6562	122	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6564	123	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6566	145	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6568	143	263	66	2025-07-12 08:37:38	2025-07-12 08:37:38
6570	139	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6572	140	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6574	141	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6576	147	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6579	149	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6581	152	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6583	153	263	44	2025-07-12 08:37:38	2025-07-12 08:37:38
6585	173	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6587	240	263	55	2025-07-12 08:37:38	2025-07-12 08:37:38
6589	254	263	77	2025-07-12 08:37:38	2025-07-12 08:37:38
6591	262	263	77	2025-07-12 08:37:38	2025-07-12 08:37:38
6430	263	54	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6448	263	247	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6486	263	200	66	2025-07-12 08:37:38	2025-07-12 08:37:54
6592	50	263	44	2025-07-12 08:37:54	2025-07-12 08:37:54
6593	194	263	44	2025-07-12 08:37:54	2025-07-12 08:37:54
6498	263	142	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6500	263	237	88	2025-07-12 08:37:38	2025-07-12 08:37:54
6502	263	258	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6504	263	242	66	2025-07-12 08:37:38	2025-07-12 08:37:54
6506	263	248	88	2025-07-12 08:37:38	2025-07-12 08:37:54
6508	263	177	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6511	263	202	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6512	263	209	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6514	263	215	44	2025-07-12 08:37:38	2025-07-12 08:37:54
6515	263	238	66	2025-07-12 08:37:38	2025-07-12 08:37:54
6517	263	249	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6519	263	252	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6521	263	210	66	2025-07-12 08:37:38	2025-07-12 08:37:54
6524	191	263	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6525	263	196	77	2025-07-12 08:37:38	2025-07-12 08:37:54
6527	263	97	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6529	263	99	55	2025-07-12 08:37:38	2025-07-12 08:37:54
6531	263	100	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6532	263	102	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6533	263	79	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6535	263	85	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6537	263	86	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6539	263	88	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6541	263	93	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6543	263	253	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6544	263	226	77	2025-07-12 08:37:38	2025-07-12 08:37:55
6546	263	239	77	2025-07-12 08:37:38	2025-07-12 08:37:55
6548	263	104	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6549	263	113	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6551	263	114	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6553	263	115	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6555	263	117	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6557	263	119	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6559	263	120	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6561	263	122	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6563	263	123	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6565	263	145	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6567	263	143	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6569	263	139	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6571	263	140	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6573	263	141	55	2025-07-12 08:37:38	2025-07-12 08:37:55
6575	263	147	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6577	263	148	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6578	263	149	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6580	263	152	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6582	263	153	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6584	263	173	44	2025-07-12 08:37:38	2025-07-12 08:37:55
6586	263	240	77	2025-07-12 08:37:38	2025-07-12 08:37:55
6588	263	254	77	2025-07-12 08:37:38	2025-07-12 08:37:55
6590	263	262	77	2025-07-12 08:37:38	2025-07-12 08:37:55
6125	260	54	44	2025-07-12 05:20:49	2025-07-12 08:53:47
6159	260	68	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6594	50	260	44	2025-07-12 08:53:48	2025-07-12 08:53:48
6595	194	260	44	2025-07-12 08:53:48	2025-07-12 08:53:48
6206	260	202	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6252	260	119	44	2025-07-12 05:20:49	2025-07-12 08:53:48
6596	265	174	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6597	174	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6602	223	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6604	263	265	77	2025-07-12 08:56:44	2025-07-12 08:56:44
6606	55	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6608	57	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6610	59	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6612	60	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6614	61	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6618	65	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6620	72	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6622	73	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6624	126	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6626	127	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6627	265	166	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6628	166	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6630	74	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6632	77	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6634	130	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6636	51	265	88	2025-07-12 08:56:44	2025-07-12 08:56:44
6640	231	265	88	2025-07-12 08:56:44	2025-07-12 08:56:44
6642	132	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6644	134	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6646	136	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6648	137	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6650	138	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6652	224	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6654	168	265	100	2025-07-12 08:56:44	2025-07-12 08:56:44
6658	222	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6660	232	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6662	243	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6664	261	265	88	2025-07-12 08:56:44	2025-07-12 08:56:44
6665	265	171	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6666	171	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6668	179	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6670	94	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6672	95	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6674	96	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6676	98	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6679	103	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6681	80	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6684	82	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6686	83	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6688	84	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6690	87	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6692	89	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6694	90	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6696	91	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6698	92	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6700	244	265	77	2025-07-12 08:56:44	2025-07-12 08:56:44
6671	265	95	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6601	265	223	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6603	265	263	55	2025-07-12 08:56:44	2025-07-12 09:58:03
6625	265	127	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6633	265	130	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6605	265	55	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6607	265	57	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6609	265	59	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6611	265	60	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6615	265	62	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6616	265	64	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6617	265	65	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6619	265	72	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6621	265	73	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6637	265	214	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6635	265	51	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6629	265	74	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6631	265	77	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6641	265	132	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6639	265	231	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6643	265	134	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6638	265	176	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6645	265	136	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6647	265	137	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6656	189	265	66	2025-07-12 08:56:44	2025-07-12 09:58:28
6651	265	224	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6655	265	189	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6657	265	222	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6669	265	94	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6661	265	243	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6663	265	261	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6667	265	179	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6673	265	96	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6675	265	98	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6677	265	101	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6678	265	103	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6699	265	244	55	2025-07-12 08:56:44	2025-07-12 09:58:03
6600	193	265	77	2025-07-12 08:56:44	2025-07-12 09:58:28
6680	265	80	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6682	265	81	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6683	265	82	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6685	265	83	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6687	265	84	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6689	265	87	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6693	265	90	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6695	265	91	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6697	265	92	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6598	265	181	55	2025-07-12 08:56:44	2025-07-12 09:58:03
6599	265	193	44	2025-07-12 08:56:44	2025-07-12 09:58:03
6623	265	126	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6659	265	232	55	2025-07-12 08:56:44	2025-07-12 09:58:28
6702	260	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6705	233	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6707	105	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6711	108	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6715	111	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6717	112	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6719	116	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6721	118	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6723	121	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6725	144	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6727	146	265	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6729	150	265	55	2025-07-12 08:56:44	2025-07-12 08:56:44
6731	265	53	44	2025-07-12 08:56:44	2025-07-12 08:56:44
6736	227	265	88	2025-07-12 08:56:44	2025-07-12 08:56:44
6738	211	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
6740	234	265	66	2025-07-12 08:56:44	2025-07-12 08:56:44
11353	55	298	44	2025-09-25 07:52:16	2025-09-25 07:52:16
6653	265	168	55	2025-07-12 08:56:44	2025-07-12 08:56:48
6703	265	216	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6734	265	219	55	2025-07-12 08:56:44	2025-07-12 08:56:48
6706	265	105	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6743	264	174	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6744	174	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6745	264	181	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6749	223	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6751	263	264	77	2025-07-12 09:04:51	2025-07-12 09:04:51
6752	264	55	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6753	55	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6754	264	57	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6755	57	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6756	264	59	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6757	59	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6758	264	60	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6759	60	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6760	264	61	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6761	61	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6762	264	62	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6763	264	64	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6764	264	65	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6765	65	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6766	264	72	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6767	72	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6768	264	73	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6769	73	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6770	264	126	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6771	126	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6772	264	127	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6773	127	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6774	264	166	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6775	166	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6776	264	74	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6777	74	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6778	264	77	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6779	77	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6780	264	130	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6781	130	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6783	51	264	88	2025-07-12 09:04:51	2025-07-12 09:04:51
6784	264	214	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6787	231	264	88	2025-07-12 09:04:51	2025-07-12 09:04:51
6788	264	132	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6789	132	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6790	264	134	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6791	134	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6792	264	136	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6793	136	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6794	264	137	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6795	137	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6796	264	138	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6797	138	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6799	224	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6801	168	264	100	2025-07-12 09:04:51	2025-07-12 09:04:51
6802	264	189	77	2025-07-12 09:04:51	2025-07-12 09:04:51
6805	222	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6747	193	264	77	2025-07-12 09:04:51	2025-07-12 09:05:21
6748	264	223	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6750	264	263	66	2025-07-12 09:04:51	2025-07-12 09:05:21
6782	264	51	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6785	264	176	44	2025-07-12 09:04:51	2025-07-12 09:05:21
6786	264	231	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6800	264	168	44	2025-07-12 09:04:51	2025-07-12 09:05:21
6803	189	264	66	2025-07-12 09:04:51	2025-07-12 09:05:21
6804	264	222	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6806	264	232	77	2025-07-12 09:04:51	2025-07-12 09:05:21
6708	265	106	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6709	265	107	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6710	265	108	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6712	265	109	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6713	265	110	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6714	265	111	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6716	265	112	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6718	265	116	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6720	265	118	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6722	265	121	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6737	265	211	66	2025-07-12 08:56:44	2025-07-12 09:58:28
6724	265	144	55	2025-07-12 08:56:44	2025-07-12 09:12:29
6728	265	150	55	2025-07-12 08:56:44	2025-07-12 09:12:29
6730	265	151	55	2025-07-12 08:56:44	2025-07-12 09:12:29
6739	265	234	55	2025-07-12 08:56:44	2025-07-12 09:58:03
6701	265	260	66	2025-07-12 08:56:44	2025-07-12 09:58:28
6704	265	233	55	2025-07-12 08:56:44	2025-07-12 09:58:28
6735	265	227	55	2025-07-12 08:56:44	2025-07-12 09:58:28
6741	265	246	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6807	232	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6809	243	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6811	261	264	88	2025-07-12 09:04:51	2025-07-12 09:04:51
6812	264	171	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6813	171	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6815	179	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6816	264	94	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6817	94	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6818	264	95	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6819	95	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6820	264	96	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6821	96	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6822	264	98	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6823	98	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6824	264	101	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6825	264	103	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6826	103	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6827	264	80	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6828	80	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6829	264	81	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6830	264	82	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6831	82	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6832	264	83	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6833	83	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6834	264	84	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6835	84	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6836	264	87	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6837	87	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6838	264	89	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6839	89	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6840	264	90	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6841	90	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6842	264	91	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6843	91	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6844	264	92	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6845	92	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6847	244	264	88	2025-07-12 09:04:51	2025-07-12 09:04:51
6848	264	260	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6849	264	216	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6851	233	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6852	264	105	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6853	105	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6854	264	106	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6855	264	107	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6856	264	108	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6857	108	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6858	264	109	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6859	264	110	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6732	265	192	55	2025-07-12 08:56:44	2025-11-17 15:32:36
6860	264	111	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6861	111	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6862	264	112	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6863	112	264	66	2025-07-12 09:04:51	2025-07-12 09:04:51
6864	264	116	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6865	116	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6866	264	118	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6867	118	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6868	264	121	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6869	121	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6870	264	144	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6871	144	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6872	264	146	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6873	146	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6874	264	150	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6875	150	264	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6876	264	151	55	2025-07-12 09:04:51	2025-07-12 09:04:51
6882	227	264	88	2025-07-12 09:04:51	2025-07-12 09:04:51
6884	211	264	44	2025-07-12 09:04:51	2025-07-12 09:04:51
6886	234	264	77	2025-07-12 09:04:51	2025-07-12 09:04:51
15430	60	325	44	2025-12-22 17:20:11	2025-12-22 17:20:11
6746	264	193	66	2025-07-12 09:04:51	2025-07-12 09:05:21
6889	176	264	55	2025-07-12 09:05:21	2025-07-12 09:05:21
6798	264	224	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6808	264	243	66	2025-07-12 09:04:51	2025-07-12 09:05:21
6810	264	261	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6814	264	179	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6846	264	244	66	2025-07-12 09:04:51	2025-07-12 09:05:21
6850	264	233	77	2025-07-12 09:04:51	2025-07-12 09:05:21
6877	264	53	44	2025-07-12 09:04:51	2025-07-12 09:05:21
6878	264	192	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6880	264	219	44	2025-07-12 09:04:51	2025-07-12 09:05:21
6881	264	227	77	2025-07-12 09:04:51	2025-07-12 09:05:21
6883	264	211	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6885	264	234	66	2025-07-12 09:04:51	2025-07-12 09:05:21
6887	264	246	55	2025-07-12 09:04:51	2025-07-12 09:05:21
6613	265	61	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6691	265	89	55	2025-07-12 08:56:44	2025-07-12 09:12:28
6726	265	146	55	2025-07-12 08:56:44	2025-07-12 09:12:29
6895	266	197	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6896	197	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6890	176	265	55	2025-07-12 09:58:28	2025-07-12 09:58:28
6649	265	138	44	2025-07-12 08:56:44	2025-07-12 09:58:28
6891	266	54	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6892	54	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6893	266	165	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6894	165	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6897	266	204	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6898	204	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6899	266	212	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6900	212	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6901	266	230	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6902	230	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6903	266	235	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6904	235	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6906	241	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6907	266	245	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6908	245	266	66	2025-07-13 07:27:43	2025-07-13 07:27:43
6909	266	247	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6910	247	266	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6911	266	250	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6912	250	266	66	2025-07-13 07:27:43	2025-07-13 07:27:43
6913	266	255	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6914	255	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6916	56	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6918	58	266	55	2025-07-13 07:27:43	2025-07-13 07:27:43
6920	63	266	55	2025-07-13 07:27:43	2025-07-13 07:27:43
6922	66	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6924	67	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6926	68	266	66	2025-07-13 07:27:43	2025-07-13 07:27:43
6928	69	266	66	2025-07-13 07:27:43	2025-07-13 07:27:43
6930	70	266	55	2025-07-13 07:27:43	2025-07-13 07:27:43
6932	71	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6933	266	124	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6934	124	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6935	266	125	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6936	125	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6937	266	128	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6938	128	266	55	2025-07-13 07:27:43	2025-07-13 07:27:43
6940	75	266	55	2025-07-13 07:27:43	2025-07-13 07:27:43
6942	76	266	55	2025-07-13 07:27:43	2025-07-13 07:27:43
6944	78	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6945	266	129	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6946	129	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6947	266	200	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6948	200	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6949	266	265	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6950	266	50	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6952	266	251	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6953	251	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6954	266	131	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6955	131	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6956	266	133	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6957	133	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6958	266	135	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6959	135	266	55	2025-07-13 07:27:43	2025-07-13 07:27:43
6960	266	142	77	2025-07-13 07:27:43	2025-07-13 07:27:43
6961	142	266	44	2025-07-13 07:27:43	2025-07-13 07:27:43
6962	266	237	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6963	237	266	66	2025-07-13 07:27:43	2025-07-13 07:27:43
6964	266	258	100	2025-07-13 07:27:43	2025-07-13 07:27:43
6965	258	266	88	2025-07-13 07:27:43	2025-07-13 07:27:43
6966	266	242	88	2025-07-13 07:27:44	2025-07-13 07:27:44
6967	242	266	66	2025-07-13 07:27:44	2025-07-13 07:27:44
6968	266	248	100	2025-07-13 07:27:44	2025-07-13 07:27:44
6969	248	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
6879	192	264	66	2025-07-12 09:04:51	2025-11-17 15:32:36
6971	177	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
6972	266	195	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6974	266	209	100	2025-07-13 07:27:44	2025-07-13 07:27:44
6975	209	266	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6977	266	238	88	2025-07-13 07:27:44	2025-07-13 07:27:44
6978	238	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
6979	266	249	100	2025-07-13 07:27:44	2025-07-13 07:27:44
6980	249	266	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6981	266	252	100	2025-07-13 07:27:44	2025-07-13 07:27:44
6982	252	266	88	2025-07-13 07:27:44	2025-07-13 07:27:44
6983	266	264	100	2025-07-13 07:27:44	2025-07-13 07:27:44
6984	264	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
6986	210	266	100	2025-07-13 07:27:44	2025-07-13 07:27:44
6987	266	191	100	2025-07-13 07:27:44	2025-07-13 07:27:44
6988	191	266	66	2025-07-13 07:27:44	2025-07-13 07:27:44
6989	266	196	100	2025-07-13 07:27:44	2025-07-13 07:27:44
6990	196	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
6991	266	97	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6992	97	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
6993	266	99	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6994	99	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
6995	266	100	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6996	266	102	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6998	79	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7000	85	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7002	86	266	66	2025-07-13 07:27:44	2025-07-13 07:27:44
7004	88	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7006	93	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7008	266	226	100	2025-07-13 07:27:44	2025-07-13 07:27:44
7009	226	266	88	2025-07-13 07:27:44	2025-07-13 07:27:44
7011	239	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7012	266	104	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7013	266	113	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6917	266	58	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6919	266	63	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6921	266	66	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6923	266	67	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6925	266	68	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6927	266	69	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6929	266	70	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6931	266	71	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6939	266	75	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6943	266	78	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6951	266	194	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6970	266	177	66	2025-07-13 07:27:44	2025-07-13 07:27:48
6973	266	202	66	2025-07-13 07:27:44	2025-07-13 07:27:48
6976	266	215	66	2025-07-13 07:27:44	2025-07-13 07:27:48
6985	266	210	88	2025-07-13 07:27:44	2025-07-13 07:27:48
6997	266	79	66	2025-07-13 07:27:44	2025-07-13 07:27:48
6999	266	85	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7001	266	86	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7003	266	88	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7005	266	93	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7007	266	253	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7010	266	239	88	2025-07-13 07:27:44	2025-07-13 07:27:48
7014	113	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7015	266	114	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7016	114	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7017	266	115	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7018	115	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7019	266	117	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7020	117	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7021	266	119	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7022	119	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7023	266	120	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7024	120	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7025	266	122	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7026	122	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7027	266	123	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7028	123	266	66	2025-07-13 07:27:44	2025-07-13 07:27:44
7030	145	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7031	266	143	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7032	143	266	66	2025-07-13 07:27:44	2025-07-13 07:27:44
7033	266	139	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7034	139	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7035	266	140	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7036	140	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7037	266	141	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7038	141	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7040	147	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7043	149	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7045	152	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7047	153	266	44	2025-07-13 07:27:44	2025-07-13 07:27:44
7049	173	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7050	266	240	100	2025-07-13 07:27:44	2025-07-13 07:27:44
7051	240	266	55	2025-07-13 07:27:44	2025-07-13 07:27:44
7052	266	254	100	2025-07-13 07:27:44	2025-07-13 07:27:44
7053	254	266	77	2025-07-13 07:27:44	2025-07-13 07:27:44
7054	266	262	100	2025-07-13 07:27:44	2025-07-13 07:27:44
7055	262	266	77	2025-07-13 07:27:44	2025-07-13 07:27:44
6905	266	241	88	2025-07-13 07:27:43	2025-07-13 07:27:48
6915	266	56	66	2025-07-13 07:27:43	2025-07-13 07:27:48
6941	266	76	66	2025-07-13 07:27:43	2025-07-13 07:27:48
7029	266	145	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7039	266	147	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7041	266	148	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7042	266	149	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7044	266	152	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7046	266	153	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7048	266	173	66	2025-07-13 07:27:44	2025-07-13 07:27:48
7057	54	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7059	165	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7061	197	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7063	204	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7065	212	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7067	230	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7069	235	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7071	241	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7073	245	267	66	2025-07-13 08:15:59	2025-07-13 08:15:59
7075	247	267	77	2025-07-13 08:15:59	2025-07-13 08:15:59
7077	250	267	66	2025-07-13 08:15:59	2025-07-13 08:15:59
7079	255	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7081	56	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7083	58	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7085	63	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7087	66	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7089	67	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7091	68	267	66	2025-07-13 08:15:59	2025-07-13 08:15:59
7093	69	267	66	2025-07-13 08:15:59	2025-07-13 08:15:59
7095	70	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7097	71	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7099	124	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7101	125	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7103	128	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7105	75	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7107	76	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7109	78	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7111	129	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7113	200	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7064	267	212	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7066	267	230	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7068	267	235	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7070	267	241	66	2025-07-13 08:15:59	2025-07-13 08:33:03
7074	267	247	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7076	267	250	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7078	267	255	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7080	267	56	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7082	267	58	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7084	267	63	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7086	267	66	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7088	267	67	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7090	267	68	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7092	267	69	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7094	267	70	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7096	267	71	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7098	267	124	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7100	267	125	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7104	267	75	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7106	267	76	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7108	267	78	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7110	267	129	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7112	267	200	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7114	267	265	100	2025-07-13 08:15:59	2025-07-13 08:33:03
7115	267	50	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7116	267	194	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7117	267	251	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7058	267	165	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7060	267	197	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7072	267	245	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7118	251	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7120	131	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7122	133	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7124	135	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7126	142	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7130	258	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7132	242	267	66	2025-07-13 08:15:59	2025-07-13 08:15:59
7136	177	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7140	209	267	77	2025-07-13 08:15:59	2025-07-13 08:15:59
7143	238	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7145	249	267	77	2025-07-13 08:15:59	2025-07-13 08:15:59
7147	252	267	88	2025-07-13 08:15:59	2025-07-13 08:15:59
7149	264	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7151	210	267	100	2025-07-13 08:15:59	2025-07-13 08:15:59
7153	191	267	66	2025-07-13 08:15:59	2025-07-13 08:15:59
7155	196	267	44	2025-07-13 08:15:59	2025-07-13 08:15:59
7157	97	267	55	2025-07-13 08:15:59	2025-07-13 08:15:59
7159	99	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7163	79	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7165	85	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7167	86	267	66	2025-07-13 08:16:00	2025-07-13 08:16:00
7169	88	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7171	93	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7174	226	267	88	2025-07-13 08:16:00	2025-07-13 08:16:00
7176	239	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7179	113	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7181	114	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7183	115	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7185	117	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7187	119	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7189	120	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7191	122	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7193	123	267	66	2025-07-13 08:16:00	2025-07-13 08:16:00
7195	145	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7197	143	267	66	2025-07-13 08:16:00	2025-07-13 08:16:00
7199	139	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7201	140	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7203	141	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7205	147	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7208	149	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7210	152	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7212	153	267	44	2025-07-13 08:16:00	2025-07-13 08:16:00
7214	173	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7216	240	267	55	2025-07-13 08:16:00	2025-07-13 08:16:00
7218	254	267	77	2025-07-13 08:16:00	2025-07-13 08:16:00
7220	262	267	77	2025-07-13 08:16:00	2025-07-13 08:16:00
7123	267	135	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7125	267	142	100	2025-07-13 08:15:59	2025-07-13 08:33:03
7127	267	237	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7128	237	267	66	2025-07-13 08:15:59	2025-07-13 08:32:50
7129	267	258	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7133	267	248	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7135	267	177	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7134	248	267	55	2025-07-13 08:15:59	2025-07-13 08:32:50
7139	267	209	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7141	267	215	88	2025-07-13 08:15:59	2025-07-13 08:33:04
7142	267	238	88	2025-07-13 08:15:59	2025-07-13 08:33:04
7144	267	249	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7146	267	252	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7148	267	264	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7150	267	210	66	2025-07-13 08:15:59	2025-07-13 08:33:04
7154	267	196	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7156	267	97	100	2025-07-13 08:15:59	2025-07-13 08:33:04
7158	267	99	100	2025-07-13 08:15:59	2025-07-13 08:33:04
7160	267	100	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7161	267	102	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7162	267	79	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7164	267	85	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7166	267	86	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7168	267	88	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7170	267	93	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7172	267	253	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7175	267	239	66	2025-07-13 08:16:00	2025-07-13 08:33:04
7177	267	104	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7178	267	113	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7180	267	114	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7182	267	115	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7184	267	117	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7186	267	119	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7188	267	120	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7190	267	122	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7192	267	123	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7194	267	145	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7196	267	143	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7198	267	139	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7200	267	140	100	2025-07-13 08:16:00	2025-07-13 08:33:04
7202	267	141	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7204	267	147	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7206	267	148	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7207	267	149	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7211	267	153	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7213	267	173	88	2025-07-13 08:16:00	2025-07-13 08:33:04
7215	267	240	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7217	267	254	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7219	267	262	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7056	267	54	100	2025-07-13 08:15:59	2025-07-13 08:33:03
7062	267	204	77	2025-07-13 08:15:59	2025-07-13 08:33:03
7102	267	128	88	2025-07-13 08:15:59	2025-07-13 08:33:03
7119	267	131	100	2025-07-13 08:15:59	2025-07-13 08:33:03
7121	267	133	100	2025-07-13 08:15:59	2025-07-13 08:33:03
7131	267	242	88	2025-07-13 08:15:59	2025-07-13 08:33:04
7137	267	195	88	2025-07-13 08:15:59	2025-07-13 08:33:04
7152	267	191	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7309	268	249	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7310	249	268	77	2025-07-13 11:11:44	2025-07-13 11:11:44
7311	268	252	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7138	267	202	77	2025-07-13 08:15:59	2025-07-13 08:33:04
7173	267	226	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7209	267	152	77	2025-07-13 08:16:00	2025-07-13 08:33:04
7221	268	54	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7222	54	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7223	268	165	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7224	165	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7225	268	197	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7226	197	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7227	268	204	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7228	204	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7229	268	212	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7230	212	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7231	268	230	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7232	230	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7233	268	235	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7234	235	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7236	241	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7237	268	245	100	2025-07-13 11:11:44	2025-07-13 11:11:44
7238	245	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7239	268	247	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7240	247	268	77	2025-07-13 11:11:44	2025-07-13 11:11:44
7241	268	250	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7242	250	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7243	268	255	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7244	255	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7246	56	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7248	58	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7250	63	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7252	66	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7254	67	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7256	68	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7258	69	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7260	70	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7262	71	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7263	268	124	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7264	124	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7265	268	125	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7266	125	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7267	268	128	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7268	128	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7270	75	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7272	76	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7274	78	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7275	268	129	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7276	129	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7277	268	200	77	2025-07-13 11:11:44	2025-07-13 11:11:44
7278	200	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7279	268	265	77	2025-07-13 11:11:44	2025-07-13 11:11:44
7280	268	50	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7282	268	251	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7283	251	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7284	268	131	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7285	131	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7286	268	133	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7287	133	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7288	268	135	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7289	135	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7290	268	142	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7291	142	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7292	268	237	100	2025-07-13 11:11:44	2025-07-13 11:11:44
7293	237	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7294	268	258	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7295	258	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7296	268	242	77	2025-07-13 11:11:44	2025-07-13 11:11:44
7297	242	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7298	268	248	100	2025-07-13 11:11:44	2025-07-13 11:11:44
7299	248	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7301	177	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7302	268	195	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7304	268	209	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7305	209	268	77	2025-07-13 11:11:44	2025-07-13 11:11:44
7307	268	238	77	2025-07-13 11:11:44	2025-07-13 11:11:44
7308	238	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7312	252	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7313	268	264	100	2025-07-13 11:11:44	2025-07-13 11:11:44
7314	264	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7316	210	268	100	2025-07-13 11:11:44	2025-07-13 11:11:44
7317	268	191	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7318	191	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7319	268	196	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7320	196	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7321	268	97	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7322	97	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7323	268	99	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7324	99	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7245	268	56	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7247	268	58	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7249	268	63	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7251	268	66	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7253	268	67	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7255	268	68	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7259	268	70	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7261	268	71	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7269	268	75	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7271	268	76	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7273	268	78	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7281	268	194	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7300	268	177	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7303	268	202	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7306	268	215	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7315	268	210	77	2025-07-13 11:11:44	2025-07-13 11:11:50
7325	268	100	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7326	268	102	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7328	79	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7330	85	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7332	86	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7334	88	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7336	93	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7338	268	226	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7339	226	268	88	2025-07-13 11:11:44	2025-07-13 11:11:44
7341	239	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7342	268	104	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7343	268	113	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7344	113	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7345	268	114	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7346	114	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7347	268	115	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7348	115	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7349	268	117	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7350	117	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7351	268	119	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7352	119	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7353	268	120	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7354	120	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7355	268	122	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7356	122	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7357	268	123	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7358	123	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7360	145	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7361	268	143	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7362	143	268	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7363	268	139	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7364	139	268	44	2025-07-13 11:11:44	2025-07-13 11:11:44
7365	268	140	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7366	140	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7367	268	141	66	2025-07-13 11:11:44	2025-07-13 11:11:44
7368	141	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7370	147	268	55	2025-07-13 11:11:44	2025-07-13 11:11:44
7373	149	268	44	2025-07-13 11:11:45	2025-07-13 11:11:45
7375	152	268	44	2025-07-13 11:11:45	2025-07-13 11:11:45
7377	153	268	44	2025-07-13 11:11:45	2025-07-13 11:11:45
7379	173	268	55	2025-07-13 11:11:45	2025-07-13 11:11:45
7380	268	240	88	2025-07-13 11:11:45	2025-07-13 11:11:45
7381	240	268	55	2025-07-13 11:11:45	2025-07-13 11:11:45
7382	268	254	88	2025-07-13 11:11:45	2025-07-13 11:11:45
7383	254	268	77	2025-07-13 11:11:45	2025-07-13 11:11:45
7384	268	262	88	2025-07-13 11:11:45	2025-07-13 11:11:45
7385	262	268	77	2025-07-13 11:11:45	2025-07-13 11:11:45
7235	268	241	77	2025-07-13 11:11:44	2025-07-13 11:11:50
7257	268	69	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7327	268	79	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7329	268	85	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7331	268	86	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7333	268	88	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7335	268	93	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7337	268	253	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7340	268	239	88	2025-07-13 11:11:44	2025-07-13 11:11:50
7359	268	145	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7369	268	147	55	2025-07-13 11:11:44	2025-07-13 11:11:50
7371	268	148	55	2025-07-13 11:11:45	2025-07-13 11:11:50
7372	268	149	55	2025-07-13 11:11:45	2025-07-13 11:11:50
7374	268	152	55	2025-07-13 11:11:45	2025-07-13 11:11:50
7376	268	153	55	2025-07-13 11:11:45	2025-07-13 11:11:50
7378	268	173	55	2025-07-13 11:11:45	2025-07-13 11:11:50
7387	174	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7388	269	181	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7389	269	193	88	2025-07-13 14:01:15	2025-07-13 14:01:15
7392	223	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7394	263	269	77	2025-07-13 14:01:15	2025-07-13 14:01:15
7396	268	269	88	2025-07-13 14:01:15	2025-07-13 14:01:15
7398	55	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7400	57	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7402	59	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7404	60	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7406	61	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7410	65	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7412	72	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7414	73	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7416	126	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7418	127	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7420	166	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7422	74	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7424	77	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7426	130	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7428	51	269	88	2025-07-13 14:01:15	2025-07-13 14:01:15
7390	193	269	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7391	269	223	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7393	269	263	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7395	269	268	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7397	269	55	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7399	269	57	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7401	269	59	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7403	269	60	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7405	269	61	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7407	269	62	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7408	269	64	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7409	269	65	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7411	269	72	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7413	269	73	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7417	269	127	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7419	269	166	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7421	269	74	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7423	269	77	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7425	269	130	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7427	269	51	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7432	231	269	88	2025-07-13 14:01:15	2025-07-13 14:01:15
7434	132	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7436	134	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7438	136	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7440	137	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7442	138	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7444	224	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7446	168	269	100	2025-07-13 14:01:15	2025-07-13 14:01:15
7447	269	189	88	2025-07-13 14:01:15	2025-07-13 14:01:15
7450	222	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7452	232	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7454	243	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7456	261	269	88	2025-07-13 14:01:15	2025-07-13 14:01:15
7458	171	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7460	179	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7462	94	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7464	95	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7466	96	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7468	98	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7471	103	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7473	80	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7476	82	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7478	83	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7480	84	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7482	87	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7484	89	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7486	90	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7488	91	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7490	92	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7492	244	269	77	2025-07-13 14:01:15	2025-07-13 14:01:15
7496	233	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7498	266	269	88	2025-07-13 14:01:15	2025-07-13 14:01:15
7500	105	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7504	108	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7508	111	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7510	112	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7512	116	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7514	118	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7516	121	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7518	144	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7520	146	269	44	2025-07-13 14:01:15	2025-07-13 14:01:15
7522	267	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7524	150	269	55	2025-07-13 14:01:15	2025-07-13 14:01:15
7531	227	269	77	2025-07-13 14:01:15	2025-07-13 14:01:15
7534	234	269	66	2025-07-13 14:01:15	2025-07-13 14:01:15
7430	269	176	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7431	269	231	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7433	269	132	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7435	269	134	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7437	269	136	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7439	269	137	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7441	269	138	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7443	269	224	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7445	269	168	66	2025-07-13 14:01:15	2025-07-13 14:01:20
7449	269	222	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7451	269	232	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7453	269	243	66	2025-07-13 14:01:15	2025-07-13 14:01:20
7455	269	261	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7457	269	171	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7459	269	179	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7461	269	94	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7463	269	95	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7465	269	96	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7467	269	98	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7469	269	101	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7470	269	103	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7472	269	80	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7474	269	81	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7475	269	82	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7477	269	83	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7479	269	84	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7481	269	87	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7485	269	90	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7487	269	91	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7489	269	92	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7491	269	244	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7493	269	260	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7494	269	216	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7495	269	233	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7497	269	266	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7499	269	105	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7501	269	106	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7502	269	107	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7503	269	108	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7505	269	109	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7506	269	110	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7507	269	111	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7509	269	112	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7511	269	116	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7513	269	118	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7517	269	144	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7519	269	146	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7521	269	267	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7523	269	150	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7525	269	151	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7526	269	53	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7527	269	192	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7529	269	219	66	2025-07-13 14:01:15	2025-07-13 14:01:20
7530	269	227	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7532	269	211	66	2025-07-13 14:01:15	2025-07-13 14:01:20
7533	269	234	77	2025-07-13 14:01:15	2025-07-13 14:01:20
7535	269	246	66	2025-07-13 14:01:15	2025-07-13 14:01:20
11355	57	298	44	2025-09-25 07:52:16	2025-09-25 07:52:16
7386	269	174	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7415	269	126	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7429	269	214	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7537	176	269	44	2025-07-13 14:01:20	2025-07-13 14:01:20
7448	189	269	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7483	269	89	44	2025-07-13 14:01:15	2025-07-13 14:01:20
7515	269	121	55	2025-07-13 14:01:15	2025-07-13 14:01:20
7538	270	174	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7539	174	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7540	270	181	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7541	270	193	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7544	223	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7546	263	270	77	2025-07-13 16:14:56	2025-07-13 16:14:56
7548	268	270	88	2025-07-13 16:14:56	2025-07-13 16:14:56
7549	270	55	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7550	55	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7551	270	57	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7552	57	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7553	270	59	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7554	59	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7555	270	60	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7556	60	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7557	270	61	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7558	61	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7559	270	62	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7560	270	64	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7561	270	65	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7562	65	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7563	270	72	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7564	72	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7565	270	73	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7566	73	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7567	270	126	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7568	126	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7569	270	127	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7570	127	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7571	270	166	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7572	166	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7573	270	74	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7574	74	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7575	270	77	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7576	77	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7577	270	130	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7578	130	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7580	51	270	88	2025-07-13 16:14:56	2025-07-13 16:14:56
7581	270	214	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7582	270	176	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7584	231	270	88	2025-07-13 16:14:56	2025-07-13 16:14:56
7585	270	132	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7586	132	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7587	270	134	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7588	134	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7589	270	136	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7590	136	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7591	270	137	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7592	137	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7593	270	138	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7594	138	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7596	224	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7598	168	270	100	2025-07-13 16:14:56	2025-07-13 16:14:56
7599	270	189	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7602	222	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7604	232	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7606	243	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7608	261	270	88	2025-07-13 16:14:56	2025-07-13 16:14:56
7609	270	171	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7610	171	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7612	179	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7613	270	94	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7614	94	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7615	270	95	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7616	95	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7617	270	96	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7618	96	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7619	270	98	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7620	98	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7621	270	101	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7622	270	103	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7623	103	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7624	270	80	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7625	80	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7626	270	81	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7627	270	82	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7628	82	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7629	270	83	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7630	83	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7631	270	84	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7632	84	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7633	270	87	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7634	87	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7635	270	89	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7636	89	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7543	270	223	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7545	270	263	66	2025-07-13 16:14:56	2025-07-13 16:17:57
7547	270	268	66	2025-07-13 16:14:56	2025-07-13 16:17:57
7579	270	51	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7583	270	231	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7595	270	224	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7597	270	168	44	2025-07-13 16:14:56	2025-07-13 16:17:57
7600	189	270	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7601	270	222	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7605	270	243	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7607	270	261	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7611	270	179	55	2025-07-13 16:14:56	2025-07-13 16:17:57
7637	270	90	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7638	90	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7639	270	91	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7640	91	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7641	270	92	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7642	92	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7644	244	270	77	2025-07-13 16:14:56	2025-07-13 16:14:56
7646	260	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7647	270	216	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7649	233	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7651	266	270	88	2025-07-13 16:14:56	2025-07-13 16:14:56
7652	270	105	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7653	105	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7654	270	106	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7655	270	107	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7656	270	108	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7657	108	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7658	270	109	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7659	270	110	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7660	270	111	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7661	111	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7662	270	112	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7663	112	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7664	270	116	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7665	116	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7666	270	118	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7667	118	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7668	270	121	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7669	121	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7670	270	144	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7671	144	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7672	270	146	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7673	146	270	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7674	270	267	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7675	267	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7676	270	150	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7677	150	270	55	2025-07-13 16:14:56	2025-07-13 16:14:56
7678	270	151	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7679	270	53	44	2025-07-13 16:14:56	2025-07-13 16:14:56
7684	227	270	88	2025-07-13 16:14:56	2025-07-13 16:14:56
7686	211	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7688	234	270	66	2025-07-13 16:14:56	2025-07-13 16:14:56
7542	193	270	77	2025-07-13 16:14:56	2025-07-13 16:17:57
7691	176	270	44	2025-07-13 16:17:57	2025-07-13 16:17:57
7603	270	232	88	2025-07-13 16:14:56	2025-07-13 16:17:57
7643	270	244	66	2025-07-13 16:14:56	2025-07-13 16:17:58
7645	270	260	55	2025-07-13 16:14:56	2025-07-13 16:17:58
7648	270	233	88	2025-07-13 16:14:56	2025-07-13 16:17:58
7650	270	266	55	2025-07-13 16:14:56	2025-07-13 16:17:58
7682	270	219	44	2025-07-13 16:14:56	2025-07-13 16:17:58
7683	270	227	88	2025-07-13 16:14:56	2025-07-13 16:17:58
7685	270	211	77	2025-07-13 16:14:56	2025-07-13 16:17:58
7687	270	234	66	2025-07-13 16:14:56	2025-07-13 16:17:58
7693	174	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7694	271	181	77	2025-07-13 20:30:10	2025-07-13 20:30:10
7696	193	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7698	223	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7700	263	271	77	2025-07-13 20:30:10	2025-07-13 20:30:10
7702	268	271	88	2025-07-13 20:30:10	2025-07-13 20:30:10
7704	55	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7706	57	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7708	59	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7710	60	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7712	61	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7716	65	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7718	72	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7689	270	246	66	2025-07-13 16:14:56	2025-08-13 14:58:02
7681	192	270	88	2025-07-13 16:14:56	2025-11-17 15:32:36
7680	270	192	77	2025-07-13 16:14:56	2025-11-17 15:32:36
7720	73	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7722	126	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7724	127	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7726	166	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7728	74	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7730	77	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7732	130	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7734	51	271	88	2025-07-13 20:30:10	2025-07-13 20:30:10
7738	231	271	88	2025-07-13 20:30:10	2025-07-13 20:30:10
7740	132	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7695	271	193	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7697	271	223	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7699	271	263	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7701	271	268	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7703	271	55	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7705	271	57	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7707	271	59	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7709	271	60	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7711	271	61	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7713	271	62	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7714	271	64	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7715	271	65	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7717	271	72	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7719	271	73	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7721	271	126	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7723	271	127	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7725	271	166	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7727	271	74	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7731	271	130	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7733	271	51	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7735	271	214	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7736	271	176	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7737	271	231	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7739	271	132	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7742	134	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7744	136	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7746	137	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7748	138	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7750	224	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7751	271	168	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7752	168	271	100	2025-07-13 20:30:10	2025-07-13 20:30:10
7753	271	189	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7756	222	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7758	232	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7759	271	243	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7760	243	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7762	261	271	88	2025-07-13 20:30:10	2025-07-13 20:30:10
7764	171	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7766	179	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7768	94	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7770	95	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7772	96	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7774	98	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7777	103	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7779	80	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7782	82	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7784	83	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7786	84	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7788	87	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7790	89	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7792	90	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7794	91	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7796	92	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7798	244	271	77	2025-07-13 20:30:10	2025-07-13 20:30:10
7802	233	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7804	266	271	88	2025-07-13 20:30:10	2025-07-13 20:30:10
7806	105	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7810	108	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7814	111	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7816	112	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7818	116	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7820	118	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7822	121	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7824	144	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7826	146	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7828	267	271	66	2025-07-13 20:30:10	2025-07-13 20:30:10
7830	150	271	55	2025-07-13 20:30:10	2025-07-13 20:30:10
7837	227	271	77	2025-07-13 20:30:10	2025-07-13 20:30:10
7839	211	271	44	2025-07-13 20:30:10	2025-07-13 20:30:10
7841	234	271	66	2025-07-13 20:30:11	2025-07-13 20:30:11
7843	246	271	55	2025-07-13 20:30:11	2025-07-13 20:30:11
7692	271	174	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7729	271	77	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7844	176	271	44	2025-07-13 20:30:26	2025-07-13 20:30:26
7741	271	134	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7743	271	136	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7745	271	137	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7747	271	138	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7749	271	224	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7754	189	271	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7755	271	222	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7757	271	232	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7761	271	261	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7763	271	171	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7767	271	94	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7769	271	95	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7771	271	96	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7773	271	98	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7775	271	101	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7776	271	103	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7778	271	80	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7780	271	81	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7781	271	82	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7783	271	83	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7785	271	84	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7787	271	87	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7789	271	89	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7791	271	90	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7793	271	91	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7795	271	92	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7797	271	244	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7799	271	260	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7801	271	233	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7803	271	266	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7805	271	105	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7807	271	106	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7808	271	107	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7809	271	108	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7811	271	109	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7812	271	110	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7813	271	111	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7815	271	112	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7817	271	116	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7819	271	118	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7821	271	121	77	2025-07-13 20:30:10	2025-07-13 20:30:26
7823	271	144	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7825	271	146	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7827	271	267	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7829	271	150	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7831	271	151	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7833	271	192	55	2025-07-13 20:30:10	2025-07-13 20:30:26
15432	61	325	55	2025-12-22 17:20:11	2025-12-22 17:20:11
7835	271	219	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7836	271	227	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7838	271	211	66	2025-07-13 20:30:10	2025-07-13 20:30:26
7840	271	234	55	2025-07-13 20:30:11	2025-07-13 20:30:26
7842	271	246	44	2025-07-13 20:30:11	2025-07-13 20:30:26
7765	271	179	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7800	271	216	55	2025-07-13 20:30:10	2025-07-13 20:30:26
7832	271	53	44	2025-07-13 20:30:10	2025-07-13 20:30:26
7846	174	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7847	272	181	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7848	272	193	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7849	193	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7850	272	223	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7851	223	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7852	272	263	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7853	263	272	77	2025-07-13 21:05:51	2025-07-13 21:05:51
7854	272	268	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7855	268	272	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7857	55	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7859	57	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7861	59	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7863	60	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7865	61	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7869	65	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7871	72	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7873	73	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7874	272	126	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7875	126	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7876	272	127	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7877	127	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7878	272	166	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7879	166	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7881	74	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7883	77	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7884	272	130	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7885	130	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7886	272	51	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7887	51	272	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7888	272	214	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7890	272	231	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7891	231	272	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7892	272	132	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7893	132	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7894	272	134	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7895	134	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7896	272	136	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7897	136	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7898	272	137	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7899	137	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7900	272	138	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7901	138	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7902	272	224	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7903	224	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7905	168	272	100	2025-07-13 21:05:51	2025-07-13 21:05:51
7906	272	189	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7907	189	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7908	272	222	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7909	222	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7910	272	232	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7911	232	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7913	243	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7914	272	261	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7915	261	272	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7917	171	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7918	272	179	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7919	179	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7920	272	94	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7921	94	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7922	272	95	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7923	95	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7924	272	96	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7925	96	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7926	272	98	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7927	98	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7928	272	101	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7929	272	103	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7930	103	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7932	80	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7935	82	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7937	83	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7939	84	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7941	87	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7943	89	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7945	90	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7947	91	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7856	272	55	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7858	272	57	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7860	272	59	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7862	272	60	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7864	272	61	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7866	272	62	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7867	272	64	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7868	272	65	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7870	272	72	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7880	272	74	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7882	272	77	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7889	272	176	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7904	272	168	77	2025-07-13 21:05:51	2025-07-13 21:06:12
7912	272	243	77	2025-07-13 21:05:51	2025-07-13 21:06:12
7916	272	171	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7931	272	80	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7933	272	81	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7934	272	82	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7936	272	83	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7938	272	84	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7940	272	87	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7942	272	89	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7944	272	90	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7946	272	91	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7948	272	92	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7949	92	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7950	272	244	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7951	244	272	77	2025-07-13 21:05:51	2025-07-13 21:05:51
7954	272	233	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7955	233	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7956	272	266	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7957	266	272	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7958	272	105	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7959	105	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7960	272	106	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7961	272	107	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7962	272	108	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7963	108	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7964	272	109	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7965	272	110	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7966	272	111	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7967	111	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7968	272	112	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7969	112	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7970	272	116	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7971	116	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7972	272	118	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7973	118	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7974	272	121	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7975	121	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7977	144	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7979	146	272	44	2025-07-13 21:05:51	2025-07-13 21:05:51
7980	272	267	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7981	267	272	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7983	150	272	55	2025-07-13 21:05:51	2025-07-13 21:05:51
7985	272	53	66	2025-07-13 21:05:51	2025-07-13 21:05:51
7989	272	227	88	2025-07-13 21:05:51	2025-07-13 21:05:51
7990	227	272	77	2025-07-13 21:05:51	2025-07-13 21:05:51
7991	272	211	77	2025-07-13 21:05:51	2025-07-13 21:05:51
7992	272	234	100	2025-07-13 21:05:51	2025-07-13 21:05:51
7993	234	272	77	2025-07-13 21:05:51	2025-07-13 21:05:51
11357	59	298	44	2025-09-25 07:52:16	2025-09-25 07:52:16
7845	272	174	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7872	272	73	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7952	272	260	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7953	272	216	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7976	272	144	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7978	272	146	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7982	272	150	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7984	272	151	55	2025-07-13 21:05:51	2025-07-13 21:06:12
7988	272	219	77	2025-07-13 21:05:51	2025-07-13 21:06:12
7994	272	246	77	2025-07-13 21:05:51	2025-07-13 21:06:12
7986	272	192	77	2025-07-13 21:05:51	2025-11-17 15:32:36
7997	54	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
7998	273	165	44	2025-07-16 07:29:14	2025-07-16 07:29:14
7999	165	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8001	197	273	88	2025-07-16 07:29:14	2025-07-16 07:29:14
8003	204	273	88	2025-07-16 07:29:14	2025-07-16 07:29:14
8005	212	273	88	2025-07-16 07:29:14	2025-07-16 07:29:14
8007	230	273	88	2025-07-16 07:29:14	2025-07-16 07:29:14
8009	235	273	88	2025-07-16 07:29:14	2025-07-16 07:29:14
8010	273	241	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8011	241	273	88	2025-07-16 07:29:14	2025-07-16 07:29:14
8013	245	273	66	2025-07-16 07:29:14	2025-07-16 07:29:14
8015	247	273	77	2025-07-16 07:29:14	2025-07-16 07:29:14
8017	250	273	66	2025-07-16 07:29:14	2025-07-16 07:29:14
8019	255	273	88	2025-07-16 07:29:14	2025-07-16 07:29:14
8020	273	56	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8021	56	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8022	273	58	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8023	58	273	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8024	273	63	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8025	63	273	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8000	273	197	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8002	273	204	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8004	273	212	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8006	273	230	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8008	273	235	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8012	273	245	55	2025-07-16 07:29:14	2025-07-16 07:29:27
8014	273	247	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8016	273	250	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8018	273	255	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8026	273	66	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8027	66	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8028	273	67	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8029	67	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8030	273	68	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8031	68	273	66	2025-07-16 07:29:14	2025-07-16 07:29:14
8032	273	69	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8033	69	273	66	2025-07-16 07:29:14	2025-07-16 07:29:14
8034	273	70	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8035	70	273	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8036	273	71	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8037	71	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8039	124	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8041	125	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8043	128	273	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8044	273	75	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8045	75	273	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8046	273	76	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8047	76	273	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8048	273	78	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8049	78	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8051	129	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8053	200	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8056	273	194	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8058	251	273	88	2025-07-16 07:29:14	2025-07-16 07:29:14
8060	131	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8062	133	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8064	135	273	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8066	142	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8068	237	273	77	2025-07-16 07:29:14	2025-07-16 07:29:14
8070	258	273	88	2025-07-16 07:29:14	2025-07-16 07:29:14
8071	273	242	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8072	242	273	66	2025-07-16 07:29:14	2025-07-16 07:29:14
8074	248	273	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8076	269	273	66	2025-07-16 07:29:14	2025-07-16 07:29:14
8077	273	177	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8078	177	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8079	273	195	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8080	273	202	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8082	209	273	77	2025-07-16 07:29:14	2025-07-16 07:29:14
8083	273	215	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8085	238	273	66	2025-07-16 07:29:14	2025-07-16 07:29:14
8087	249	273	77	2025-07-16 07:29:14	2025-07-16 07:29:14
8089	252	273	88	2025-07-16 07:29:14	2025-07-16 07:29:14
8091	264	273	66	2025-07-16 07:29:14	2025-07-16 07:29:14
8093	270	273	66	2025-07-16 07:29:14	2025-07-16 07:29:14
8094	273	210	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8095	210	273	100	2025-07-16 07:29:14	2025-07-16 07:29:14
8097	191	273	66	2025-07-16 07:29:14	2025-07-16 07:29:14
8099	196	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8101	97	273	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8103	99	273	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8106	273	79	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8107	79	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8108	273	85	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8109	85	273	44	2025-07-16 07:29:14	2025-07-16 07:29:14
8110	273	86	55	2025-07-16 07:29:14	2025-07-16 07:29:14
8111	86	273	66	2025-07-16 07:29:15	2025-07-16 07:29:15
8112	273	88	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8113	88	273	44	2025-07-16 07:29:15	2025-07-16 07:29:15
8114	273	93	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8115	93	273	44	2025-07-16 07:29:15	2025-07-16 07:29:15
8116	273	253	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8118	226	273	88	2025-07-16 07:29:15	2025-07-16 07:29:15
8120	239	273	66	2025-07-16 07:29:15	2025-07-16 07:29:15
8122	271	273	44	2025-07-16 07:29:15	2025-07-16 07:29:15
8125	113	273	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8127	114	273	44	2025-07-16 07:29:15	2025-07-16 07:29:15
8129	115	273	44	2025-07-16 07:29:15	2025-07-16 07:29:15
8131	117	273	44	2025-07-16 07:29:15	2025-07-16 07:29:15
8040	273	125	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8042	273	128	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8050	273	129	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8052	273	200	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8054	273	265	55	2025-07-16 07:29:14	2025-07-16 07:29:27
8055	273	50	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8057	273	251	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8059	273	131	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8061	273	133	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8065	273	142	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8067	273	237	77	2025-07-16 07:29:14	2025-07-16 07:29:27
8069	273	258	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8073	273	248	55	2025-07-16 07:29:14	2025-07-16 07:29:27
8075	273	269	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8081	273	209	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8084	273	238	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8086	273	249	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8088	273	252	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8090	273	264	66	2025-07-16 07:29:14	2025-07-16 07:29:27
8092	273	270	55	2025-07-16 07:29:14	2025-07-16 07:29:27
8096	273	191	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8098	273	196	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8100	273	97	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8102	273	99	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8104	273	100	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8105	273	102	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8117	273	226	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8121	273	271	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8123	273	104	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8124	273	113	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8126	273	114	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8128	273	115	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8130	273	117	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8132	273	119	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8133	119	273	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8135	120	273	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8137	122	273	44	2025-07-16 07:29:15	2025-07-16 07:29:15
8139	123	273	66	2025-07-16 07:29:15	2025-07-16 07:29:15
8140	273	145	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8141	145	273	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8143	143	273	66	2025-07-16 07:29:15	2025-07-16 07:29:15
8145	272	273	77	2025-07-16 07:29:15	2025-07-16 07:29:15
8147	139	273	44	2025-07-16 07:29:15	2025-07-16 07:29:15
8149	140	273	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8151	141	273	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8152	273	147	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8153	147	273	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8154	273	148	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8155	273	149	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8156	149	273	44	2025-07-16 07:29:15	2025-07-16 07:29:15
8157	273	152	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8158	152	273	44	2025-07-16 07:29:15	2025-07-16 07:29:15
8159	273	153	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8160	153	273	44	2025-07-16 07:29:15	2025-07-16 07:29:15
8161	273	173	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8162	173	273	55	2025-07-16 07:29:15	2025-07-16 07:29:15
8164	240	273	66	2025-07-16 07:29:15	2025-07-16 07:29:15
8166	254	273	77	2025-07-16 07:29:15	2025-07-16 07:29:15
8168	262	273	77	2025-07-16 07:29:15	2025-07-16 07:29:15
7996	273	54	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8038	273	124	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8063	273	135	44	2025-07-16 07:29:14	2025-07-16 07:29:27
8119	273	239	55	2025-07-16 07:29:15	2025-07-16 07:29:27
8134	273	120	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8136	273	122	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8138	273	123	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8142	273	143	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8144	273	272	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8146	273	139	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8148	273	140	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8150	273	141	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8163	273	240	55	2025-07-16 07:29:15	2025-07-16 07:29:27
8165	273	254	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8167	273	262	44	2025-07-16 07:29:15	2025-07-16 07:29:27
8169	274	174	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8170	174	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8172	274	193	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8174	274	223	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8175	223	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8176	274	263	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8177	263	274	77	2025-07-16 07:37:56	2025-07-16 07:37:56
8178	274	268	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8179	268	274	88	2025-07-16 07:37:56	2025-07-16 07:37:56
8180	274	55	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8181	55	274	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8182	274	57	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8183	57	274	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8184	274	59	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8185	59	274	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8186	274	60	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8187	60	274	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8188	274	61	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8189	61	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8190	274	62	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8191	274	64	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8192	274	65	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8193	65	274	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8194	274	72	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8195	72	274	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8196	274	73	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8197	73	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8199	126	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8201	127	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8202	274	166	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8203	166	274	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8204	274	74	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8205	74	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8206	274	77	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8207	77	274	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8209	130	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8210	274	51	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8211	51	274	88	2025-07-16 07:37:56	2025-07-16 07:37:56
8214	274	231	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8215	231	274	88	2025-07-16 07:37:56	2025-07-16 07:37:56
8217	132	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8219	134	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8221	136	274	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8223	137	274	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8225	138	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8226	274	224	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8227	224	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8228	274	168	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8229	168	274	100	2025-07-16 07:37:56	2025-07-16 07:37:56
8230	274	189	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8232	274	222	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8233	222	274	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8173	193	274	77	2025-07-16 07:37:56	2025-07-16 07:38:06
8198	274	126	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8200	274	127	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8208	274	130	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8212	274	214	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8213	274	176	55	2025-07-16 07:37:56	2025-07-16 07:38:06
8216	274	132	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8218	274	134	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8220	274	136	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8222	274	137	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8224	274	138	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8231	189	274	66	2025-07-16 07:37:56	2025-07-16 07:38:06
8234	274	232	55	2025-07-16 07:37:56	2025-07-16 07:38:06
8235	232	274	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8236	274	243	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8237	243	274	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8238	274	261	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8239	261	274	88	2025-07-16 07:37:56	2025-07-16 07:37:56
8240	274	171	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8241	171	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8242	274	179	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8243	179	274	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8245	94	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8247	95	274	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8249	96	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8251	98	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8254	103	274	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8255	274	80	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8256	80	274	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8257	274	81	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8258	274	82	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8259	82	274	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8260	274	83	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8261	83	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8262	274	84	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8263	84	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8264	274	87	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8265	87	274	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8266	274	89	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8267	89	274	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8268	274	90	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8269	90	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8270	274	91	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8271	91	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8272	274	92	66	2025-07-16 07:37:56	2025-07-16 07:37:56
8273	92	274	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8275	244	274	88	2025-07-16 07:37:56	2025-07-16 07:37:56
8279	233	274	55	2025-07-16 07:37:56	2025-07-16 07:37:56
8280	274	266	44	2025-07-16 07:37:56	2025-07-16 07:37:56
8281	266	274	88	2025-07-16 07:37:56	2025-07-16 07:37:56
8283	105	274	44	2025-07-16 07:37:57	2025-07-16 07:37:57
8287	108	274	66	2025-07-16 07:37:57	2025-07-16 07:37:57
8291	111	274	44	2025-07-16 07:37:57	2025-07-16 07:37:57
8293	112	274	66	2025-07-16 07:37:57	2025-07-16 07:37:57
8295	116	274	44	2025-07-16 07:37:57	2025-07-16 07:37:57
8297	118	274	44	2025-07-16 07:37:57	2025-07-16 07:37:57
8299	121	274	44	2025-07-16 07:37:57	2025-07-16 07:37:57
8300	274	144	66	2025-07-16 07:37:57	2025-07-16 07:37:57
8301	144	274	55	2025-07-16 07:37:57	2025-07-16 07:37:57
8302	274	146	66	2025-07-16 07:37:57	2025-07-16 07:37:57
8303	146	274	44	2025-07-16 07:37:57	2025-07-16 07:37:57
8305	267	274	66	2025-07-16 07:37:57	2025-07-16 07:37:57
8306	274	150	66	2025-07-16 07:37:57	2025-07-16 07:37:57
8307	150	274	55	2025-07-16 07:37:57	2025-07-16 07:37:57
8308	274	151	66	2025-07-16 07:37:57	2025-07-16 07:37:57
8309	274	53	44	2025-07-16 07:37:57	2025-07-16 07:37:57
8310	274	192	44	2025-07-16 07:37:57	2025-07-16 07:37:57
8312	274	219	44	2025-07-16 07:37:57	2025-07-16 07:37:57
8314	227	274	88	2025-07-16 07:37:57	2025-07-16 07:37:57
8316	211	274	55	2025-07-16 07:37:57	2025-07-16 07:37:57
8318	234	274	77	2025-07-16 07:37:57	2025-07-16 07:37:57
8319	274	246	66	2025-07-16 07:37:57	2025-07-16 07:37:57
8320	246	274	55	2025-07-16 07:37:57	2025-07-16 07:37:57
8322	273	274	66	2025-07-16 07:37:57	2025-07-16 07:37:57
8171	274	181	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8323	176	274	55	2025-07-16 07:38:06	2025-07-16 07:38:06
8244	274	94	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8246	274	95	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8248	274	96	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8250	274	98	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8252	274	101	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8253	274	103	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8274	274	244	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8276	274	260	55	2025-07-16 07:37:56	2025-07-16 07:38:06
8277	274	216	44	2025-07-16 07:37:56	2025-07-16 07:38:06
8278	274	233	55	2025-07-16 07:37:56	2025-07-16 07:38:06
8282	274	105	44	2025-07-16 07:37:57	2025-07-16 07:38:06
8284	274	106	44	2025-07-16 07:37:57	2025-07-16 07:38:06
8285	274	107	44	2025-07-16 07:37:57	2025-07-16 07:38:06
8286	274	108	44	2025-07-16 07:37:57	2025-07-16 07:38:06
8288	274	109	44	2025-07-16 07:37:57	2025-07-16 07:38:06
8289	274	110	44	2025-07-16 07:37:57	2025-07-16 07:38:06
8290	274	111	44	2025-07-16 07:37:57	2025-07-16 07:38:06
8292	274	112	44	2025-07-16 07:37:57	2025-07-16 07:38:06
8294	274	116	44	2025-07-16 07:37:57	2025-07-16 07:38:06
8296	274	118	44	2025-07-16 07:37:57	2025-07-16 07:38:06
8298	274	121	44	2025-07-16 07:37:57	2025-07-16 07:38:06
8304	274	267	44	2025-07-16 07:37:57	2025-07-16 07:38:06
8313	274	227	55	2025-07-16 07:37:57	2025-07-16 07:38:06
8315	274	211	55	2025-07-16 07:37:57	2025-07-16 07:38:06
8317	274	234	44	2025-07-16 07:37:57	2025-07-16 07:38:06
8321	274	273	55	2025-07-16 07:37:57	2025-07-16 07:38:06
11359	60	298	44	2025-09-25 07:52:16	2025-09-25 07:52:16
8325	174	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8326	276	181	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8327	276	193	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8328	193	276	66	2025-07-16 15:14:00	2025-07-16 15:14:00
8329	276	223	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8330	223	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8331	276	263	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8332	263	276	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8333	276	268	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8334	268	276	88	2025-07-16 15:14:00	2025-07-16 15:14:00
8336	55	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8338	57	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8335	276	55	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8339	276	59	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8340	59	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8342	60	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8344	61	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8348	65	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8350	72	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8352	73	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8353	276	126	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8354	126	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8355	276	127	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8356	127	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8357	276	166	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8358	166	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8360	74	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8362	77	276	66	2025-07-16 15:14:00	2025-07-16 15:14:00
8363	276	130	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8364	130	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8365	276	51	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8366	51	276	88	2025-07-16 15:14:00	2025-07-16 15:14:00
8367	276	214	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8369	276	231	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8370	231	276	88	2025-07-16 15:14:00	2025-07-16 15:14:00
8371	276	132	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8372	132	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8373	276	134	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8374	134	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8375	276	136	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8376	136	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8377	276	137	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8378	137	276	66	2025-07-16 15:14:00	2025-07-16 15:14:00
8379	276	138	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8380	138	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8381	276	224	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8382	224	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8384	168	276	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8385	276	189	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8386	189	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8387	276	222	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8388	222	276	66	2025-07-16 15:14:00	2025-07-16 15:14:00
8389	276	232	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8390	232	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8392	243	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8393	276	261	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8394	261	276	88	2025-07-16 15:14:00	2025-07-16 15:14:00
8396	171	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8397	276	179	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8398	179	276	66	2025-07-16 15:14:00	2025-07-16 15:14:00
8399	276	94	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8400	94	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8401	276	95	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8402	95	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8403	276	96	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8404	96	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8405	276	98	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8406	98	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8407	276	101	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8408	276	103	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8409	103	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8411	80	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8414	82	276	66	2025-07-16 15:14:00	2025-07-16 15:14:00
8416	83	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8418	84	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8420	87	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8422	89	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8424	90	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8426	91	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8428	92	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8429	276	244	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8430	244	276	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8433	276	233	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8434	233	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8435	276	266	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8436	266	276	88	2025-07-16 15:14:00	2025-07-16 15:14:00
8437	276	105	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8438	105	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8439	276	106	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8440	276	107	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8441	276	108	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8442	108	276	66	2025-07-16 15:14:00	2025-07-16 15:14:00
8443	276	109	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8444	276	110	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8445	276	111	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8446	111	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8343	276	61	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8345	276	62	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8346	276	64	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8347	276	65	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8349	276	72	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8351	276	73	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8359	276	74	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8361	276	77	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8368	276	176	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8391	276	243	88	2025-07-16 15:14:00	2025-07-16 15:14:05
8395	276	171	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8410	276	80	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8412	276	81	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8413	276	82	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8415	276	83	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8417	276	84	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8419	276	87	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8421	276	89	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8423	276	90	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8425	276	91	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8427	276	92	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8431	276	260	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8432	276	216	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8447	276	112	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8448	112	276	66	2025-07-16 15:14:00	2025-07-16 15:14:00
8449	276	116	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8450	116	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8451	276	118	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8452	118	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8453	276	121	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8454	121	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8456	144	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8458	146	276	44	2025-07-16 15:14:00	2025-07-16 15:14:00
8459	276	267	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8460	267	276	66	2025-07-16 15:14:00	2025-07-16 15:14:00
8462	150	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8464	276	53	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8468	276	227	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8469	227	276	77	2025-07-16 15:14:00	2025-07-16 15:14:00
8470	276	211	88	2025-07-16 15:14:00	2025-07-16 15:14:00
8471	276	234	100	2025-07-16 15:14:00	2025-07-16 15:14:00
8472	234	276	66	2025-07-16 15:14:00	2025-07-16 15:14:00
8475	276	273	88	2025-07-16 15:14:00	2025-07-16 15:14:00
8476	273	276	55	2025-07-16 15:14:00	2025-07-16 15:14:00
8324	276	174	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8337	276	57	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8341	276	60	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8383	276	168	88	2025-07-16 15:14:00	2025-07-16 15:14:05
8455	276	144	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8457	276	146	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8461	276	150	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8463	276	151	66	2025-07-16 15:14:00	2025-07-16 15:14:05
8467	276	219	88	2025-07-16 15:14:00	2025-07-16 15:14:05
8473	276	246	88	2025-07-16 15:14:00	2025-07-16 15:14:05
15436	65	325	44	2025-12-22 17:20:11	2025-12-22 17:20:11
8478	54	277	44	2025-07-17 08:04:32	2025-07-17 08:04:32
8480	165	277	44	2025-07-17 08:04:32	2025-07-17 08:04:32
8482	197	277	88	2025-07-17 08:04:32	2025-07-17 08:04:32
8484	204	277	88	2025-07-17 08:04:32	2025-07-17 08:04:32
8466	192	276	55	2025-07-16 15:14:00	2025-11-17 15:32:36
8486	212	277	88	2025-07-17 08:04:32	2025-07-17 08:04:32
8488	230	277	88	2025-07-17 08:04:32	2025-07-17 08:04:32
8490	235	277	88	2025-07-17 08:04:32	2025-07-17 08:04:32
8492	241	277	88	2025-07-17 08:04:32	2025-07-17 08:04:32
8496	247	277	77	2025-07-17 08:04:33	2025-07-17 08:04:33
8500	255	277	88	2025-07-17 08:04:33	2025-07-17 08:04:33
8501	277	56	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8502	56	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8503	277	58	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8504	58	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8505	277	63	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8506	63	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8507	277	66	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8508	66	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8509	277	67	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8510	67	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8511	277	68	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8512	68	277	66	2025-07-17 08:04:33	2025-07-17 08:04:33
8513	277	69	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8514	69	277	66	2025-07-17 08:04:33	2025-07-17 08:04:33
8515	277	70	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8516	70	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8517	277	71	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8518	71	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8520	124	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8522	125	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8524	128	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8525	277	75	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8526	75	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8527	277	76	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8528	76	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8529	277	78	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8530	78	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8532	129	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8534	200	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8536	265	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8538	277	194	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8540	251	277	88	2025-07-17 08:04:33	2025-07-17 08:04:33
8542	131	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8544	133	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8546	135	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8465	276	192	88	2025-07-16 15:14:00	2025-11-17 15:32:36
8548	142	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8479	277	165	44	2025-07-17 08:04:32	2025-07-17 08:05:11
8481	277	197	66	2025-07-17 08:04:32	2025-07-17 08:05:11
8483	277	204	66	2025-07-17 08:04:32	2025-07-17 08:05:11
8487	277	230	66	2025-07-17 08:04:32	2025-07-17 08:05:11
8489	277	235	66	2025-07-17 08:04:32	2025-07-17 08:05:11
8491	277	241	55	2025-07-17 08:04:32	2025-07-17 08:05:11
8494	245	277	66	2025-07-17 08:04:33	2025-07-17 08:07:28
8495	277	247	66	2025-07-17 08:04:33	2025-07-17 08:05:11
8498	250	277	66	2025-07-17 08:04:33	2025-07-17 08:07:28
8499	277	255	66	2025-07-17 08:04:33	2025-07-17 08:05:11
8519	277	124	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8521	277	125	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8523	277	128	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8531	277	129	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8533	277	200	55	2025-07-17 08:04:33	2025-07-17 08:05:11
8549	277	237	88	2025-07-17 08:04:33	2025-07-17 08:07:28
8537	277	50	66	2025-07-17 08:04:33	2025-07-17 08:05:11
8539	277	251	66	2025-07-17 08:04:33	2025-07-17 08:05:11
8541	277	131	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8543	277	133	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8545	277	135	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8474	246	276	77	2025-07-16 15:14:00	2025-08-13 14:58:02
8493	277	245	77	2025-07-17 08:04:33	2025-07-17 08:07:28
8497	277	250	66	2025-07-17 08:04:33	2025-07-17 08:07:28
8535	277	265	55	2025-07-17 08:04:33	2025-07-17 08:07:28
8552	258	277	88	2025-07-17 08:04:33	2025-07-17 08:04:33
8554	242	277	66	2025-07-17 08:04:33	2025-07-17 08:04:33
8556	248	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8558	269	277	66	2025-07-17 08:04:33	2025-07-17 08:04:33
8559	277	177	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8560	177	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8562	277	202	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8564	209	277	77	2025-07-17 08:04:33	2025-07-17 08:04:33
8565	277	215	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8569	249	277	77	2025-07-17 08:04:33	2025-07-17 08:04:33
8571	252	277	88	2025-07-17 08:04:33	2025-07-17 08:04:33
8577	210	277	100	2025-07-17 08:04:33	2025-07-17 08:04:33
8579	191	277	66	2025-07-17 08:04:33	2025-07-17 08:04:33
8581	196	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8583	97	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8585	99	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8588	277	79	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8589	79	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8590	277	85	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8591	85	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8592	277	86	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8593	86	277	66	2025-07-17 08:04:33	2025-07-17 08:04:33
8594	277	88	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8595	88	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8596	277	93	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8597	93	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8598	277	253	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8600	226	277	88	2025-07-17 08:04:33	2025-07-17 08:04:33
8604	271	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8607	113	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8609	114	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8611	115	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8613	117	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8615	119	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8617	120	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8619	122	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8621	123	277	66	2025-07-17 08:04:33	2025-07-17 08:04:33
8622	277	145	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8623	145	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8625	143	277	66	2025-07-17 08:04:33	2025-07-17 08:04:33
8627	272	277	77	2025-07-17 08:04:33	2025-07-17 08:04:33
8629	139	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8631	140	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8633	141	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8634	277	147	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8635	147	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8636	277	148	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8637	277	149	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8638	149	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8639	277	152	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8640	152	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8641	277	153	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8642	153	277	44	2025-07-17 08:04:33	2025-07-17 08:04:33
8643	277	173	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8644	173	277	55	2025-07-17 08:04:33	2025-07-17 08:04:33
8646	240	277	66	2025-07-17 08:04:33	2025-07-17 08:04:33
8648	254	277	77	2025-07-17 08:04:33	2025-07-17 08:04:33
8650	262	277	77	2025-07-17 08:04:33	2025-07-17 08:04:33
8653	276	277	88	2025-07-17 08:04:33	2025-07-17 08:04:33
8477	277	54	44	2025-07-17 08:04:32	2025-07-17 08:05:11
8485	277	212	66	2025-07-17 08:04:32	2025-07-17 08:05:11
8547	277	142	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8553	277	242	55	2025-07-17 08:04:33	2025-07-17 08:05:11
8555	277	248	77	2025-07-17 08:04:33	2025-07-17 08:05:11
8557	277	269	66	2025-07-17 08:04:33	2025-07-17 08:05:11
8561	277	195	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8563	277	209	66	2025-07-17 08:04:33	2025-07-17 08:05:11
8567	238	277	66	2025-07-17 08:04:33	2025-07-17 08:07:28
8568	277	249	66	2025-07-17 08:04:33	2025-07-17 08:05:11
8570	277	252	66	2025-07-17 08:04:33	2025-07-17 08:05:11
8573	264	277	66	2025-07-17 08:04:33	2025-07-17 08:07:28
8576	277	210	55	2025-07-17 08:04:33	2025-07-17 08:05:11
8578	277	191	66	2025-07-17 08:04:33	2025-07-17 08:05:11
8580	277	196	66	2025-07-17 08:04:33	2025-07-17 08:05:11
8582	277	97	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8584	277	99	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8586	277	100	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8587	277	102	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8599	277	226	66	2025-07-17 08:04:33	2025-07-17 08:05:11
8602	239	277	66	2025-07-17 08:04:33	2025-07-17 08:07:28
8603	277	271	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8605	277	104	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8606	277	113	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8608	277	114	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8610	277	115	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8612	277	117	44	2025-07-17 08:04:33	2025-07-17 08:05:11
8614	277	119	44	2025-07-17 08:04:33	2025-07-17 08:05:12
8616	277	120	44	2025-07-17 08:04:33	2025-07-17 08:05:12
8618	277	122	44	2025-07-17 08:04:33	2025-07-17 08:05:12
8624	277	143	44	2025-07-17 08:04:33	2025-07-17 08:05:12
8626	277	272	66	2025-07-17 08:04:33	2025-07-17 08:05:12
8628	277	139	44	2025-07-17 08:04:33	2025-07-17 08:05:12
8630	277	140	44	2025-07-17 08:04:33	2025-07-17 08:05:12
8632	277	141	44	2025-07-17 08:04:33	2025-07-17 08:05:12
8645	277	240	77	2025-07-17 08:04:33	2025-07-17 08:05:12
8647	277	254	66	2025-07-17 08:04:33	2025-07-17 08:05:12
8649	277	262	66	2025-07-17 08:04:33	2025-07-17 08:05:12
8652	277	276	66	2025-07-17 08:04:33	2025-07-17 08:05:12
8550	237	277	77	2025-07-17 08:04:33	2025-07-17 08:07:28
8566	277	238	66	2025-07-17 08:04:33	2025-07-17 08:07:28
8572	277	264	88	2025-07-17 08:04:33	2025-07-17 08:07:28
8575	270	277	66	2025-07-17 08:04:33	2025-07-17 08:07:28
8601	277	239	77	2025-07-17 08:04:33	2025-07-17 08:07:28
8651	277	274	66	2025-07-17 08:04:33	2025-07-17 08:07:29
8551	277	258	66	2025-07-17 08:04:33	2025-07-17 08:05:11
8620	277	123	44	2025-07-17 08:04:33	2025-07-17 08:05:12
8574	277	270	77	2025-07-17 08:04:33	2025-07-17 08:07:28
8654	274	277	44	2025-07-17 08:07:29	2025-07-17 08:07:29
8656	174	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8657	278	181	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8658	278	193	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8659	193	278	66	2025-07-19 08:28:35	2025-07-19 08:28:35
8660	278	223	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8661	223	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8662	278	263	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8663	263	278	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8664	278	268	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8665	268	278	88	2025-07-19 08:28:35	2025-07-19 08:28:35
8667	55	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8669	57	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8671	59	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8673	60	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8675	61	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8679	65	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8681	72	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8683	73	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8684	278	126	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8685	126	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8686	278	127	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8687	127	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8688	278	166	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8689	166	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8691	74	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8693	77	278	66	2025-07-19 08:28:35	2025-07-19 08:28:35
8694	278	130	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8695	130	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8696	278	51	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8697	51	278	88	2025-07-19 08:28:35	2025-07-19 08:28:35
8698	278	214	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8700	278	231	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8701	231	278	88	2025-07-19 08:28:35	2025-07-19 08:28:35
8702	278	132	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8703	132	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8704	278	134	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8705	134	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8706	278	136	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8707	136	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8708	278	137	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8709	137	278	66	2025-07-19 08:28:35	2025-07-19 08:28:35
8710	278	138	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8711	138	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8712	278	224	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8713	224	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8715	168	278	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8716	278	189	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8717	189	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8718	278	222	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8719	222	278	66	2025-07-19 08:28:35	2025-07-19 08:28:35
8720	278	232	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8721	232	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8723	243	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8724	278	261	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8725	261	278	88	2025-07-19 08:28:35	2025-07-19 08:28:35
8727	171	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8728	278	179	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8729	179	278	66	2025-07-19 08:28:35	2025-07-19 08:28:35
8730	278	94	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8731	94	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8732	278	95	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8733	95	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8734	278	96	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8735	96	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8736	278	98	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8737	98	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8738	278	101	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8739	278	103	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8740	103	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8742	80	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8745	82	278	66	2025-07-19 08:28:35	2025-07-19 08:28:35
8747	83	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8749	84	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8751	87	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8753	89	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8755	90	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8757	91	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8666	278	55	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8668	278	57	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8670	278	59	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8672	278	60	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8674	278	61	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8676	278	62	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8677	278	64	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8678	278	65	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8682	278	73	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8690	278	74	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8692	278	77	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8699	278	176	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8714	278	168	88	2025-07-19 08:28:35	2025-07-19 08:28:38
8722	278	243	88	2025-07-19 08:28:35	2025-07-19 08:28:38
8726	278	171	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8741	278	80	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8743	278	81	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8744	278	82	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8746	278	83	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8748	278	84	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8750	278	87	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8752	278	89	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8754	278	90	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8756	278	91	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8759	92	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8760	278	244	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8761	244	278	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8764	278	233	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8765	233	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8766	278	266	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8767	266	278	88	2025-07-19 08:28:35	2025-07-19 08:28:35
8768	278	105	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8769	105	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8770	278	106	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8771	278	107	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8772	278	108	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8773	108	278	66	2025-07-19 08:28:35	2025-07-19 08:28:35
8774	278	109	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8775	278	110	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8776	278	111	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8777	111	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8778	278	112	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8779	112	278	66	2025-07-19 08:28:35	2025-07-19 08:28:35
8780	278	116	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8781	116	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8782	278	118	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8783	118	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8784	278	121	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8785	121	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8787	144	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8789	146	278	44	2025-07-19 08:28:35	2025-07-19 08:28:35
8790	278	267	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8791	267	278	66	2025-07-19 08:28:35	2025-07-19 08:28:35
8793	150	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8795	278	53	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8799	278	227	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8800	227	278	77	2025-07-19 08:28:35	2025-07-19 08:28:35
8801	278	211	88	2025-07-19 08:28:35	2025-07-19 08:28:35
8802	278	234	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8803	234	278	66	2025-07-19 08:28:35	2025-07-19 08:28:35
8806	278	273	88	2025-07-19 08:28:35	2025-07-19 08:28:35
8807	273	278	55	2025-07-19 08:28:35	2025-07-19 08:28:35
8808	278	277	100	2025-07-19 08:28:35	2025-07-19 08:28:35
8809	277	278	66	2025-07-19 08:28:35	2025-07-19 08:28:35
8655	278	174	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8680	278	72	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8758	278	92	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8762	278	260	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8763	278	216	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8786	278	144	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8788	278	146	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8792	278	150	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8794	278	151	66	2025-07-19 08:28:35	2025-07-19 08:28:38
8798	278	219	88	2025-07-19 08:28:35	2025-07-19 08:28:38
8804	278	246	88	2025-07-19 08:28:35	2025-07-19 08:28:38
11361	61	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
8811	174	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8796	278	192	88	2025-07-19 08:28:35	2025-11-17 15:32:36
8816	223	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8818	263	280	77	2025-08-13 14:46:30	2025-08-13 14:46:30
8820	268	280	88	2025-08-13 14:46:30	2025-08-13 14:46:30
8822	55	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8824	57	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8826	59	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8828	60	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8830	61	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8834	65	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8836	72	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8838	73	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8840	126	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8842	127	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8844	166	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8846	74	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8848	77	280	66	2025-08-13 14:46:30	2025-08-13 14:46:30
8850	130	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8852	51	280	88	2025-08-13 14:46:30	2025-08-13 14:46:30
8856	231	280	88	2025-08-13 14:46:30	2025-08-13 14:46:30
8858	132	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8860	134	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8862	136	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8815	280	223	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8817	280	263	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8819	280	268	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8821	280	55	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8823	280	57	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8825	280	59	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8827	280	60	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8829	280	61	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8831	280	62	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8832	280	64	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8833	280	65	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8835	280	72	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8837	280	73	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8839	280	126	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8841	280	127	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8843	280	166	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8847	280	77	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8849	280	130	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8851	280	51	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8853	280	214	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8854	280	176	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8857	280	132	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8855	280	231	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8859	280	134	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8861	280	136	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8805	246	278	77	2025-07-19 08:28:35	2025-08-13 14:58:02
8814	193	280	66	2025-08-13 14:46:30	2025-08-13 14:57:00
8813	280	193	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8864	137	280	66	2025-08-13 14:46:30	2025-08-13 14:46:30
8866	138	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8868	224	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8870	168	280	100	2025-08-13 14:46:30	2025-08-13 14:46:30
8874	222	280	66	2025-08-13 14:46:30	2025-08-13 14:46:30
8876	232	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8878	243	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8880	261	280	88	2025-08-13 14:46:30	2025-08-13 14:46:30
8882	171	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8884	179	280	66	2025-08-13 14:46:30	2025-08-13 14:46:30
8886	94	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8888	95	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8890	96	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8892	98	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8895	103	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8897	80	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8900	82	280	66	2025-08-13 14:46:30	2025-08-13 14:46:30
8902	83	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8904	84	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8906	87	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8908	89	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8910	90	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8912	91	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8914	92	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8916	244	280	77	2025-08-13 14:46:30	2025-08-13 14:46:30
8952	192	280	66	2025-08-13 14:46:30	2025-12-11 16:49:08
8920	233	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8922	266	280	88	2025-08-13 14:46:30	2025-08-13 14:46:30
8924	105	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8928	108	280	66	2025-08-13 14:46:30	2025-08-13 14:46:30
8932	111	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8934	112	280	66	2025-08-13 14:46:30	2025-08-13 14:46:30
8936	116	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8938	118	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8940	121	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8942	144	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8944	146	280	44	2025-08-13 14:46:30	2025-08-13 14:46:30
8946	267	280	66	2025-08-13 14:46:30	2025-08-13 14:46:30
8948	150	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8951	280	192	100	2025-08-13 14:46:30	2025-12-11 16:49:08
8955	227	280	77	2025-08-13 14:46:30	2025-08-13 14:46:30
8958	234	280	66	2025-08-13 14:46:30	2025-08-13 14:46:30
8962	273	280	55	2025-08-13 14:46:30	2025-08-13 14:46:30
8964	277	280	66	2025-08-13 14:46:30	2025-08-13 14:46:30
8965	176	280	44	2025-08-13 14:51:21	2025-08-13 14:51:21
8867	280	224	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8869	280	168	88	2025-08-13 14:46:30	2025-08-13 14:59:05
8871	280	189	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8872	189	280	44	2025-08-13 14:46:30	2025-08-13 14:57:00
8873	280	222	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8875	280	232	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8877	280	243	88	2025-08-13 14:46:30	2025-08-13 14:59:05
8879	280	261	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8883	280	179	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8885	280	94	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8887	280	95	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8889	280	96	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8891	280	98	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8893	280	101	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8894	280	103	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8896	280	80	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8898	280	81	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8899	280	82	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8901	280	83	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8903	280	84	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8905	280	87	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8907	280	89	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8909	280	90	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8911	280	91	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8913	280	92	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8915	280	244	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8918	280	216	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8919	280	233	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8921	280	266	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8923	280	105	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8925	280	106	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8926	280	107	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8927	280	108	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8929	280	109	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8930	280	110	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8931	280	111	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8933	280	112	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8935	280	116	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8937	280	118	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8939	280	121	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8941	280	144	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8943	280	146	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8945	280	267	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8947	280	150	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8950	280	53	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8953	280	219	88	2025-08-13 14:46:30	2025-08-13 14:59:05
8954	280	227	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8956	280	211	88	2025-08-13 14:46:30	2025-08-13 14:59:05
8957	280	234	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8961	280	273	88	2025-08-13 14:46:30	2025-08-13 14:59:05
8963	280	277	100	2025-08-13 14:46:30	2025-08-13 14:59:05
8959	280	246	88	2025-08-13 14:46:30	2025-08-13 14:59:05
8960	246	280	77	2025-08-13 14:46:30	2025-08-13 14:58:02
8812	280	181	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8863	280	137	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8865	280	138	77	2025-08-13 14:46:30	2025-08-13 14:59:05
8810	280	174	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8845	280	74	66	2025-08-13 14:46:30	2025-08-13 14:59:05
9037	283	54	77	2025-08-14 13:31:36	2025-08-14 13:31:36
9038	54	283	44	2025-08-14 13:31:36	2025-08-14 13:31:36
9039	283	165	77	2025-08-14 13:31:36	2025-08-14 13:31:36
8966	246	54	55	2025-08-13 14:58:02	2025-08-13 14:58:02
8967	246	165	55	2025-08-13 14:58:02	2025-08-13 14:58:02
8968	246	197	77	2025-08-13 14:58:02	2025-08-13 14:58:02
8969	246	204	77	2025-08-13 14:58:02	2025-08-13 14:58:02
8970	246	212	77	2025-08-13 14:58:02	2025-08-13 14:58:02
8971	246	230	77	2025-08-13 14:58:02	2025-08-13 14:58:02
8972	246	235	77	2025-08-13 14:58:02	2025-08-13 14:58:02
4522	246	245	77	2025-06-11 10:12:56	2025-08-13 14:58:02
4662	246	247	77	2025-06-23 21:08:35	2025-08-13 14:58:02
5058	246	250	77	2025-07-09 07:19:01	2025-08-13 14:58:02
5824	246	255	77	2025-07-11 12:55:51	2025-08-13 14:58:02
8983	246	124	55	2025-08-13 14:58:02	2025-08-13 14:58:02
8984	246	125	55	2025-08-13 14:58:02	2025-08-13 14:58:02
8985	246	128	55	2025-08-13 14:58:02	2025-08-13 14:58:02
8989	246	129	55	2025-08-13 14:58:02	2025-08-13 14:58:02
8990	246	200	66	2025-08-13 14:58:02	2025-08-13 14:58:02
6742	246	265	55	2025-07-12 08:56:44	2025-08-13 14:58:02
8991	246	50	77	2025-08-13 14:58:02	2025-08-13 14:58:02
5198	246	251	77	2025-07-09 10:45:10	2025-08-13 14:58:02
8993	246	131	55	2025-08-13 14:58:02	2025-08-13 14:58:02
8994	246	133	55	2025-08-13 14:58:02	2025-08-13 14:58:02
8995	246	135	55	2025-08-13 14:58:02	2025-08-13 14:58:02
8996	246	142	55	2025-08-13 14:58:02	2025-08-13 14:58:02
4402	246	237	77	2025-06-11 10:11:40	2025-08-13 14:58:02
5964	246	258	77	2025-07-11 14:47:31	2025-08-13 14:58:02
8997	246	242	66	2025-08-13 14:58:02	2025-08-13 14:58:02
4803	246	248	77	2025-06-27 14:54:03	2025-08-13 14:58:02
7536	246	269	77	2025-07-13 14:01:15	2025-08-13 14:58:02
8998	246	177	55	2025-08-13 14:58:02	2025-08-13 14:58:02
8999	246	195	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9001	246	209	77	2025-08-13 14:58:02	2025-08-13 14:58:02
9003	246	238	66	2025-08-13 14:58:02	2025-08-13 14:58:02
4944	246	249	77	2025-06-28 13:19:22	2025-08-13 14:58:02
5338	246	252	77	2025-07-10 06:23:58	2025-08-13 14:58:02
6888	246	264	77	2025-07-12 09:04:51	2025-08-13 14:58:02
7690	246	270	77	2025-07-13 16:14:56	2025-08-13 14:58:02
9005	246	191	77	2025-08-13 14:58:02	2025-08-13 14:58:02
9006	246	196	77	2025-08-13 14:58:02	2025-08-13 14:58:02
9007	246	97	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9008	246	99	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9009	246	100	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9010	246	102	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9016	246	226	77	2025-08-13 14:58:02	2025-08-13 14:58:02
9017	246	104	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9018	246	113	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9019	246	114	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9020	246	115	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9021	246	117	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9022	246	119	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9023	246	120	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9024	246	122	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9025	246	123	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9027	246	143	55	2025-08-13 14:58:02	2025-08-13 14:58:02
7995	246	272	77	2025-07-13 21:05:51	2025-08-13 14:58:02
9028	246	139	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9029	246	140	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9030	246	141	55	2025-08-13 14:58:02	2025-08-13 14:58:02
9036	246	173	55	2025-08-13 14:58:02	2025-08-13 14:58:02
5684	246	254	77	2025-07-11 11:30:37	2025-08-13 14:58:02
6428	246	262	77	2025-07-12 05:37:04	2025-08-13 14:58:02
8973	246	241	88	2025-08-13 14:58:02	2025-08-13 14:58:56
8974	246	56	66	2025-08-13 14:58:02	2025-08-13 14:58:56
8975	246	58	66	2025-08-13 14:58:02	2025-08-13 14:58:56
8976	246	63	66	2025-08-13 14:58:02	2025-08-13 14:58:56
8977	246	66	66	2025-08-13 14:58:02	2025-08-13 14:58:56
8978	246	67	66	2025-08-13 14:58:02	2025-08-13 14:58:56
8979	246	68	66	2025-08-13 14:58:02	2025-08-13 14:58:56
8980	246	69	66	2025-08-13 14:58:02	2025-08-13 14:58:56
8981	246	70	66	2025-08-13 14:58:02	2025-08-13 14:58:56
8982	246	71	66	2025-08-13 14:58:02	2025-08-13 14:58:56
8986	246	75	66	2025-08-13 14:58:02	2025-08-13 14:58:56
8987	246	76	66	2025-08-13 14:58:02	2025-08-13 14:58:56
8988	246	78	66	2025-08-13 14:58:02	2025-08-13 14:58:56
8992	246	194	66	2025-08-13 14:58:02	2025-08-13 14:58:56
9000	246	202	55	2025-08-13 14:58:02	2025-08-13 14:58:56
9002	246	215	55	2025-08-13 14:58:02	2025-08-13 14:58:56
9004	246	210	88	2025-08-13 14:58:02	2025-08-13 14:58:56
9011	246	79	66	2025-08-13 14:58:02	2025-08-13 14:58:56
9012	246	85	66	2025-08-13 14:58:02	2025-08-13 14:58:56
9013	246	86	66	2025-08-13 14:58:02	2025-08-13 14:58:56
9014	246	88	66	2025-08-13 14:58:02	2025-08-13 14:58:56
9015	246	93	66	2025-08-13 14:58:02	2025-08-13 14:58:56
5478	246	253	55	2025-07-10 15:13:36	2025-08-13 14:58:56
9026	246	145	55	2025-08-13 14:58:02	2025-08-13 14:58:56
9031	246	147	55	2025-08-13 14:58:02	2025-08-13 14:58:56
9032	246	148	55	2025-08-13 14:58:02	2025-08-13 14:58:56
9033	246	149	55	2025-08-13 14:58:02	2025-08-13 14:58:56
9034	246	152	55	2025-08-13 14:58:02	2025-08-13 14:58:56
9035	246	153	55	2025-08-13 14:58:02	2025-08-13 14:58:56
8881	280	171	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8917	280	260	66	2025-08-13 14:46:30	2025-08-13 14:59:05
8949	280	151	66	2025-08-13 14:46:30	2025-08-13 14:59:05
9040	165	283	44	2025-08-14 13:31:36	2025-08-14 13:31:36
9041	283	197	100	2025-08-14 13:31:36	2025-08-14 13:31:36
9042	197	283	88	2025-08-14 13:31:36	2025-08-14 13:31:36
9043	283	204	100	2025-08-14 13:31:36	2025-08-14 13:31:36
9044	204	283	88	2025-08-14 13:31:36	2025-08-14 13:31:36
9045	283	212	100	2025-08-14 13:31:36	2025-08-14 13:31:36
9046	212	283	88	2025-08-14 13:31:36	2025-08-14 13:31:36
9047	283	230	100	2025-08-14 13:31:36	2025-08-14 13:31:36
9048	230	283	88	2025-08-14 13:31:36	2025-08-14 13:31:36
9049	283	235	100	2025-08-14 13:31:36	2025-08-14 13:31:36
9050	235	283	88	2025-08-14 13:31:36	2025-08-14 13:31:36
9052	241	283	88	2025-08-14 13:31:36	2025-08-14 13:31:36
9053	283	245	100	2025-08-14 13:31:36	2025-08-14 13:31:36
9054	245	283	66	2025-08-14 13:31:36	2025-08-14 13:31:36
9055	283	247	100	2025-08-14 13:31:36	2025-08-14 13:31:36
9056	247	283	77	2025-08-14 13:31:36	2025-08-14 13:31:36
9057	283	250	100	2025-08-14 13:31:36	2025-08-14 13:31:36
9058	250	283	66	2025-08-14 13:31:36	2025-08-14 13:31:36
9059	283	255	100	2025-08-14 13:31:36	2025-08-14 13:31:36
9060	255	283	88	2025-08-14 13:31:36	2025-08-14 13:31:36
9062	56	283	44	2025-08-14 13:31:36	2025-08-14 13:31:36
9064	58	283	55	2025-08-14 13:31:36	2025-08-14 13:31:36
9066	63	283	55	2025-08-14 13:31:36	2025-08-14 13:31:36
9068	66	283	44	2025-08-14 13:31:36	2025-08-14 13:31:36
9070	67	283	44	2025-08-14 13:31:36	2025-08-14 13:31:36
9072	68	283	66	2025-08-14 13:31:36	2025-08-14 13:31:36
9074	69	283	66	2025-08-14 13:31:36	2025-08-14 13:31:36
9076	70	283	55	2025-08-14 13:31:36	2025-08-14 13:31:36
9078	71	283	44	2025-08-14 13:31:36	2025-08-14 13:31:36
9079	283	124	77	2025-08-14 13:31:36	2025-08-14 13:31:36
9080	124	283	44	2025-08-14 13:31:36	2025-08-14 13:31:36
9081	283	125	77	2025-08-14 13:31:36	2025-08-14 13:31:36
9082	125	283	44	2025-08-14 13:31:36	2025-08-14 13:31:36
9083	283	128	77	2025-08-14 13:31:36	2025-08-14 13:31:36
9084	128	283	55	2025-08-14 13:31:36	2025-08-14 13:31:36
9086	75	283	55	2025-08-14 13:31:36	2025-08-14 13:31:36
9088	76	283	55	2025-08-14 13:31:36	2025-08-14 13:31:36
9090	78	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9091	283	129	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9092	129	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9093	283	200	88	2025-08-14 13:31:37	2025-08-14 13:31:37
9094	200	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9095	283	265	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9096	283	50	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9098	283	251	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9099	251	283	88	2025-08-14 13:31:37	2025-08-14 13:31:37
9100	283	131	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9101	131	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9102	283	133	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9103	133	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9104	283	135	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9105	135	283	55	2025-08-14 13:31:37	2025-08-14 13:31:37
9106	283	142	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9107	142	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9108	283	237	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9109	237	283	66	2025-08-14 13:31:37	2025-08-14 13:31:37
9110	283	258	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9111	258	283	88	2025-08-14 13:31:37	2025-08-14 13:31:37
9112	283	242	88	2025-08-14 13:31:37	2025-08-14 13:31:37
9113	242	283	66	2025-08-14 13:31:37	2025-08-14 13:31:37
9114	283	248	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9115	248	283	55	2025-08-14 13:31:37	2025-08-14 13:31:37
9116	283	269	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9117	269	283	66	2025-08-14 13:31:37	2025-08-14 13:31:37
9119	177	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9120	283	195	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9122	283	209	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9123	209	283	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9125	283	238	88	2025-08-14 13:31:37	2025-08-14 13:31:37
9126	238	283	55	2025-08-14 13:31:37	2025-08-14 13:31:37
9127	283	249	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9128	249	283	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9129	283	252	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9130	252	283	88	2025-08-14 13:31:37	2025-08-14 13:31:37
9131	283	264	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9132	264	283	55	2025-08-14 13:31:37	2025-08-14 13:31:37
9133	283	270	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9134	270	283	66	2025-08-14 13:31:37	2025-08-14 13:31:37
9136	210	283	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9137	283	191	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9138	191	283	66	2025-08-14 13:31:37	2025-08-14 13:31:37
9139	283	196	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9140	196	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9141	283	97	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9142	97	283	55	2025-08-14 13:31:37	2025-08-14 13:31:37
9143	283	99	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9144	99	283	55	2025-08-14 13:31:37	2025-08-14 13:31:37
9145	283	100	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9146	283	102	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9148	79	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9150	85	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9152	86	283	66	2025-08-14 13:31:37	2025-08-14 13:31:37
9154	88	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9156	93	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9061	283	56	66	2025-08-14 13:31:36	2025-08-14 14:06:11
9063	283	58	66	2025-08-14 13:31:36	2025-08-14 14:06:11
9065	283	63	66	2025-08-14 13:31:36	2025-08-14 14:06:11
9067	283	66	66	2025-08-14 13:31:36	2025-08-14 14:06:12
9069	283	67	66	2025-08-14 13:31:36	2025-08-14 14:06:12
9071	283	68	66	2025-08-14 13:31:36	2025-08-14 14:06:12
9073	283	69	66	2025-08-14 13:31:36	2025-08-14 14:06:12
9075	283	70	66	2025-08-14 13:31:36	2025-08-14 14:06:12
9077	283	71	66	2025-08-14 13:31:36	2025-08-14 14:06:12
9087	283	76	66	2025-08-14 13:31:36	2025-08-14 14:06:12
9089	283	78	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9097	283	194	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9118	283	177	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9121	283	202	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9124	283	215	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9135	283	210	88	2025-08-14 13:31:37	2025-08-14 14:06:12
9147	283	79	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9149	283	85	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9151	283	86	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9153	283	88	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9155	283	93	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9158	283	226	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9159	226	283	88	2025-08-14 13:31:37	2025-08-14 13:31:37
9161	239	283	55	2025-08-14 13:31:37	2025-08-14 13:31:37
9162	283	271	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9163	271	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9164	283	104	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9165	283	113	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9166	113	283	55	2025-08-14 13:31:37	2025-08-14 13:31:37
9167	283	114	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9168	114	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9169	283	115	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9170	115	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9171	283	117	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9172	117	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9173	283	119	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9174	119	283	55	2025-08-14 13:31:37	2025-08-14 13:31:37
9175	283	120	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9176	120	283	55	2025-08-14 13:31:37	2025-08-14 13:31:37
9177	283	122	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9178	122	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9179	283	123	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9180	123	283	66	2025-08-14 13:31:37	2025-08-14 13:31:37
9182	145	283	55	2025-08-14 13:31:37	2025-08-14 13:31:37
9183	283	143	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9184	143	283	66	2025-08-14 13:31:37	2025-08-14 13:31:37
9185	283	272	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9186	272	283	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9187	283	139	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9188	139	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9189	283	140	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9190	140	283	55	2025-08-14 13:31:37	2025-08-14 13:31:37
9191	283	141	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9192	141	283	55	2025-08-14 13:31:37	2025-08-14 13:31:37
9194	147	283	55	2025-08-14 13:31:37	2025-08-14 13:31:37
9197	149	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9199	152	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9201	153	283	44	2025-08-14 13:31:37	2025-08-14 13:31:37
9203	173	283	55	2025-08-14 13:31:37	2025-08-14 13:31:37
9204	283	240	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9205	240	283	55	2025-08-14 13:31:37	2025-08-14 13:31:37
9206	283	254	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9207	254	283	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9208	283	262	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9209	262	283	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9210	283	274	77	2025-08-14 13:31:37	2025-08-14 13:31:37
9211	283	276	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9212	276	283	88	2025-08-14 13:31:37	2025-08-14 13:31:37
9213	283	278	100	2025-08-14 13:31:37	2025-08-14 13:31:37
9214	278	283	88	2025-08-14 13:31:37	2025-08-14 13:31:37
9051	283	241	88	2025-08-14 13:31:36	2025-08-14 14:06:11
9085	283	75	66	2025-08-14 13:31:36	2025-08-14 14:06:12
9157	283	253	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9160	283	239	88	2025-08-14 13:31:37	2025-08-14 14:06:12
9181	283	145	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9193	283	147	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9195	283	148	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9196	283	149	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9198	283	152	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9200	283	153	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9202	283	173	66	2025-08-14 13:31:37	2025-08-14 14:06:12
9218	54	286	44	2025-08-18 12:06:38	2025-08-18 12:06:38
9220	165	286	44	2025-08-18 12:06:38	2025-08-18 12:06:38
15438	72	325	44	2025-12-22 17:20:11	2025-12-22 17:20:11
9222	197	286	88	2025-08-18 12:06:38	2025-08-18 12:06:38
9216	280	283	100	2025-08-14 13:31:37	2025-12-11 16:49:08
9224	204	286	88	2025-08-18 12:06:38	2025-08-18 12:06:38
9226	212	286	88	2025-08-18 12:06:38	2025-08-18 12:06:38
9228	230	286	88	2025-08-18 12:06:38	2025-08-18 12:06:38
9230	235	286	88	2025-08-18 12:06:38	2025-08-18 12:06:38
9232	241	286	88	2025-08-18 12:06:38	2025-08-18 12:06:38
9236	247	286	77	2025-08-18 12:06:38	2025-08-18 12:06:38
9240	255	286	88	2025-08-18 12:06:38	2025-08-18 12:06:38
9242	56	286	44	2025-08-18 12:06:38	2025-08-18 12:06:38
9244	58	286	55	2025-08-18 12:06:38	2025-08-18 12:06:38
9246	63	286	55	2025-08-18 12:06:38	2025-08-18 12:06:38
9248	66	286	44	2025-08-18 12:06:38	2025-08-18 12:06:38
9250	67	286	44	2025-08-18 12:06:38	2025-08-18 12:06:38
9252	68	286	66	2025-08-18 12:06:38	2025-08-18 12:06:38
9215	283	280	88	2025-08-14 13:31:37	2025-12-11 16:49:08
9254	69	286	66	2025-08-18 12:06:38	2025-08-18 12:06:38
9256	70	286	55	2025-08-18 12:06:38	2025-08-18 12:06:38
9258	71	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9260	124	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9227	286	230	100	2025-08-18 12:06:38	2025-08-18 12:13:27
9229	286	235	100	2025-08-18 12:06:38	2025-08-18 12:13:27
9231	286	241	88	2025-08-18 12:06:38	2025-08-18 12:13:27
9233	286	245	100	2025-08-18 12:06:38	2025-08-18 12:13:27
9234	245	286	66	2025-08-18 12:06:38	2025-08-18 12:13:27
9237	286	250	100	2025-08-18 12:06:38	2025-08-18 12:13:27
9238	250	286	66	2025-08-18 12:06:38	2025-08-18 12:13:27
9241	286	56	66	2025-08-18 12:06:38	2025-08-18 12:13:27
9217	286	54	77	2025-08-18 12:06:38	2025-08-18 12:13:27
9219	286	165	77	2025-08-18 12:06:38	2025-08-18 12:13:27
9225	286	212	100	2025-08-18 12:06:38	2025-08-18 12:13:27
9235	286	247	100	2025-08-18 12:06:38	2025-08-18 12:13:27
9239	286	255	100	2025-08-18 12:06:38	2025-08-18 12:13:27
9243	286	58	66	2025-08-18 12:06:38	2025-08-18 12:13:27
9245	286	63	66	2025-08-18 12:06:38	2025-08-18 12:13:27
9247	286	66	66	2025-08-18 12:06:38	2025-08-18 12:13:27
9249	286	67	66	2025-08-18 12:06:38	2025-08-18 12:13:27
9251	286	68	66	2025-08-18 12:06:38	2025-08-18 12:13:27
9255	286	70	66	2025-08-18 12:06:38	2025-08-18 12:13:27
9257	286	71	66	2025-08-18 12:06:38	2025-08-18 12:13:27
9259	286	124	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9261	286	125	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9262	125	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9264	128	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9266	75	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9268	76	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9270	78	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9272	129	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9274	200	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9276	265	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9280	251	286	88	2025-08-18 12:06:39	2025-08-18 12:06:39
9282	131	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9284	133	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9286	135	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9288	142	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9290	237	286	66	2025-08-18 12:06:39	2025-08-18 12:06:39
9292	258	286	88	2025-08-18 12:06:39	2025-08-18 12:06:39
9294	242	286	66	2025-08-18 12:06:39	2025-08-18 12:06:39
9296	248	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9298	269	286	77	2025-08-18 12:06:39	2025-08-18 12:06:39
9300	177	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9304	209	286	77	2025-08-18 12:06:39	2025-08-18 12:06:39
9307	238	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9309	249	286	77	2025-08-18 12:06:39	2025-08-18 12:06:39
9311	252	286	88	2025-08-18 12:06:39	2025-08-18 12:06:39
9313	264	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9317	210	286	100	2025-08-18 12:06:39	2025-08-18 12:06:39
9321	196	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9323	97	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9325	99	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9329	79	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9331	85	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9333	86	286	66	2025-08-18 12:06:39	2025-08-18 12:06:39
9335	88	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9337	93	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9340	226	286	88	2025-08-18 12:06:39	2025-08-18 12:06:39
9342	239	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9344	271	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9347	113	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9349	114	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9351	115	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9353	117	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9355	119	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9357	120	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9359	122	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9361	123	286	66	2025-08-18 12:06:39	2025-08-18 12:06:39
9363	145	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9365	143	286	66	2025-08-18 12:06:39	2025-08-18 12:06:39
9367	272	286	77	2025-08-18 12:06:39	2025-08-18 12:06:39
9277	286	50	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9283	286	133	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9291	286	258	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9293	286	242	88	2025-08-18 12:06:39	2025-08-18 12:13:27
9295	286	248	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9297	286	269	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9299	286	177	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9305	286	215	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9310	286	252	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9312	286	264	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9314	286	270	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9315	270	286	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9318	286	191	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9320	286	196	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9322	286	97	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9341	286	239	88	2025-08-18 12:06:39	2025-08-18 12:13:27
9343	286	271	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9345	286	104	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9368	286	139	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9263	286	128	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9265	286	75	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9267	286	76	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9269	286	78	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9271	286	129	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9275	286	265	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9278	286	194	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9279	286	251	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9285	286	135	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9287	286	142	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9289	286	237	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9301	286	195	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9302	286	202	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9303	286	209	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9306	286	238	88	2025-08-18 12:06:39	2025-08-18 12:13:27
9316	286	210	88	2025-08-18 12:06:39	2025-08-18 12:13:27
9319	191	286	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9324	286	99	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9326	286	100	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9327	286	102	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9328	286	79	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9330	286	85	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9332	286	86	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9334	286	88	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9336	286	93	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9338	286	253	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9346	286	113	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9348	286	114	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9350	286	115	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9352	286	117	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9354	286	119	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9356	286	120	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9358	286	122	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9360	286	123	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9362	286	145	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9364	286	143	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9366	286	272	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9369	139	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9371	140	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9373	141	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9375	147	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9378	149	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9380	152	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9382	153	286	44	2025-08-18 12:06:39	2025-08-18 12:06:39
9384	173	286	55	2025-08-18 12:06:39	2025-08-18 12:06:39
9388	254	286	77	2025-08-18 12:06:39	2025-08-18 12:06:39
9390	262	286	77	2025-08-18 12:06:39	2025-08-18 12:06:39
9393	276	286	88	2025-08-18 12:06:39	2025-08-18 12:06:39
9395	278	286	88	2025-08-18 12:06:39	2025-08-18 12:06:39
9398	50	286	44	2025-08-18 12:07:04	2025-08-18 12:07:04
9399	194	286	44	2025-08-18 12:07:04	2025-08-18 12:07:04
9433	67	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9435	68	287	66	2025-08-18 13:26:08	2025-08-18 13:26:08
9437	69	287	66	2025-08-18 13:26:08	2025-08-18 13:26:08
9221	286	197	100	2025-08-18 12:06:38	2025-08-18 12:13:27
9223	286	204	100	2025-08-18 12:06:38	2025-08-18 12:13:27
9253	286	69	66	2025-08-18 12:06:38	2025-08-18 12:13:27
9273	286	200	88	2025-08-18 12:06:39	2025-08-18 12:13:27
9281	286	131	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9308	286	249	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9339	286	226	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9370	286	140	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9372	286	141	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9374	286	147	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9376	286	148	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9377	286	149	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9379	286	152	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9381	286	153	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9383	286	173	66	2025-08-18 12:06:39	2025-08-18 12:13:27
9385	286	240	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9386	240	286	55	2025-08-18 12:06:39	2025-08-18 12:13:27
9387	286	254	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9389	286	262	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9391	286	274	77	2025-08-18 12:06:39	2025-08-18 12:13:27
9392	286	276	100	2025-08-18 12:06:39	2025-08-18 12:13:27
9394	286	278	100	2025-08-18 12:06:39	2025-08-18 12:13:27
15440	73	325	55	2025-12-22 17:20:11	2025-12-22 17:20:11
9400	287	54	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9401	54	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9402	287	165	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9403	165	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9404	287	197	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9405	197	287	88	2025-08-18 13:26:08	2025-08-18 13:26:08
9406	287	204	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9407	204	287	88	2025-08-18 13:26:08	2025-08-18 13:26:08
9408	287	212	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9409	212	287	88	2025-08-18 13:26:08	2025-08-18 13:26:08
9410	287	230	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9411	230	287	88	2025-08-18 13:26:08	2025-08-18 13:26:08
9412	287	235	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9413	235	287	88	2025-08-18 13:26:08	2025-08-18 13:26:08
9415	241	287	88	2025-08-18 13:26:08	2025-08-18 13:26:08
9416	287	245	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9417	245	287	66	2025-08-18 13:26:08	2025-08-18 13:26:08
9418	287	247	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9419	247	287	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9420	287	250	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9421	250	287	66	2025-08-18 13:26:08	2025-08-18 13:26:08
9422	287	255	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9423	255	287	88	2025-08-18 13:26:08	2025-08-18 13:26:08
9425	56	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9427	58	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9429	63	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9431	66	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9439	70	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9397	280	286	100	2025-08-18 12:06:39	2025-12-11 16:49:08
9441	71	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9442	287	124	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9443	124	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9444	287	125	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9445	125	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9446	287	128	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9447	128	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9449	75	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9451	76	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9453	78	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9454	287	129	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9455	129	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9456	287	200	88	2025-08-18 13:26:08	2025-08-18 13:26:08
9457	200	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9458	287	265	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9459	287	50	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9461	287	251	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9462	251	287	88	2025-08-18 13:26:08	2025-08-18 13:26:08
9463	287	131	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9464	131	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9465	287	133	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9466	133	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9467	287	135	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9424	287	56	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9426	287	58	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9428	287	63	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9430	287	66	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9432	287	67	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9434	287	68	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9436	287	69	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9438	287	70	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9448	287	75	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9450	287	76	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9452	287	78	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9460	287	194	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9396	286	280	88	2025-08-18 12:06:39	2025-12-11 16:49:08
9468	135	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9469	287	142	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9470	142	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9471	287	237	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9472	237	287	66	2025-08-18 13:26:08	2025-08-18 13:26:08
9473	287	258	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9474	258	287	88	2025-08-18 13:26:08	2025-08-18 13:26:08
9475	287	242	88	2025-08-18 13:26:08	2025-08-18 13:26:08
9476	242	287	66	2025-08-18 13:26:08	2025-08-18 13:26:08
9477	287	248	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9478	248	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9479	287	269	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9480	269	287	77	2025-08-18 13:26:08	2025-08-18 13:26:08
11365	65	298	44	2025-09-25 07:52:16	2025-09-25 07:52:16
9482	177	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9483	287	195	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9485	287	209	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9486	209	287	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9488	287	238	88	2025-08-18 13:26:08	2025-08-18 13:26:08
9489	238	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9490	287	249	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9491	249	287	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9492	287	252	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9493	252	287	88	2025-08-18 13:26:08	2025-08-18 13:26:08
9494	287	264	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9495	264	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9496	287	270	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9497	270	287	66	2025-08-18 13:26:08	2025-08-18 13:26:08
9499	210	287	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9500	287	191	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9501	191	287	66	2025-08-18 13:26:08	2025-08-18 13:26:08
9502	287	196	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9503	196	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9504	287	97	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9505	97	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9506	287	99	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9507	99	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9508	287	100	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9509	287	102	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9511	79	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9513	85	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9515	86	287	66	2025-08-18 13:26:08	2025-08-18 13:26:08
9517	88	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9519	93	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9521	287	226	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9522	226	287	88	2025-08-18 13:26:08	2025-08-18 13:26:08
9524	239	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9525	287	271	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9526	271	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9527	287	104	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9528	287	113	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9529	113	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9530	287	114	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9531	114	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9532	287	115	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9533	115	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9534	287	117	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9535	117	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9536	287	119	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9537	119	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9538	287	120	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9539	120	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9540	287	122	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9541	122	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9542	287	123	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9543	123	287	66	2025-08-18 13:26:08	2025-08-18 13:26:08
9545	145	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9546	287	143	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9547	143	287	66	2025-08-18 13:26:08	2025-08-18 13:26:08
9548	287	272	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9549	272	287	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9550	287	139	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9551	139	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9552	287	140	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9553	140	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9554	287	141	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9555	141	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9557	147	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9560	149	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9562	152	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9564	153	287	44	2025-08-18 13:26:08	2025-08-18 13:26:08
9566	173	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9567	287	240	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9568	240	287	55	2025-08-18 13:26:08	2025-08-18 13:26:08
9569	287	254	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9570	254	287	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9571	287	262	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9572	262	287	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9573	287	274	77	2025-08-18 13:26:08	2025-08-18 13:26:08
9574	287	276	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9484	287	202	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9487	287	215	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9498	287	210	88	2025-08-18 13:26:08	2025-08-18 13:26:10
9510	287	79	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9512	287	85	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9514	287	86	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9516	287	88	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9518	287	93	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9520	287	253	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9544	287	145	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9556	287	147	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9558	287	148	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9559	287	149	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9561	287	152	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9563	287	153	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9565	287	173	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9575	276	287	88	2025-08-18 13:26:08	2025-08-18 13:26:08
9576	287	278	100	2025-08-18 13:26:08	2025-08-18 13:26:08
9577	278	287	88	2025-08-18 13:26:08	2025-08-18 13:26:08
9414	287	241	88	2025-08-18 13:26:08	2025-08-18 13:26:10
9440	287	71	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9481	287	177	66	2025-08-18 13:26:08	2025-08-18 13:26:10
9523	287	239	88	2025-08-18 13:26:08	2025-08-18 13:26:10
15441	325	126	77	2025-12-22 17:20:11	2025-12-22 17:20:11
9581	54	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9583	165	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9585	197	288	88	2025-08-19 07:31:23	2025-08-19 07:31:23
9587	204	288	88	2025-08-19 07:31:23	2025-08-19 07:31:23
9589	212	288	88	2025-08-19 07:31:23	2025-08-19 07:31:23
9591	230	288	88	2025-08-19 07:31:23	2025-08-19 07:31:23
9593	235	288	88	2025-08-19 07:31:23	2025-08-19 07:31:23
9595	241	288	88	2025-08-19 07:31:23	2025-08-19 07:31:23
9597	245	288	77	2025-08-19 07:31:23	2025-08-19 07:31:23
9599	247	288	77	2025-08-19 07:31:23	2025-08-19 07:31:23
9579	280	287	100	2025-08-18 13:26:08	2025-12-11 16:49:08
9601	250	288	77	2025-08-19 07:31:23	2025-08-19 07:31:23
9603	255	288	88	2025-08-19 07:31:23	2025-08-19 07:31:23
9604	288	56	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9605	56	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9606	288	58	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9607	58	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9608	288	63	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9609	63	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9610	288	66	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9611	66	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9612	288	67	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9613	67	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9614	288	68	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9615	68	288	66	2025-08-19 07:31:23	2025-08-19 07:31:23
9616	288	69	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9617	69	288	66	2025-08-19 07:31:23	2025-08-19 07:31:23
9618	288	70	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9619	70	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9620	288	71	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9621	71	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9623	124	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9625	125	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9627	128	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9628	288	75	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9629	75	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9630	288	76	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9631	76	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9632	288	78	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9633	78	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9635	129	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9637	200	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9639	265	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9640	288	50	77	2025-08-19 07:31:23	2025-08-19 07:31:23
9643	251	288	88	2025-08-19 07:31:23	2025-08-19 07:31:23
9645	131	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9647	133	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9649	135	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9651	142	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9653	237	288	77	2025-08-19 07:31:23	2025-08-19 07:31:23
9655	258	288	88	2025-08-19 07:31:23	2025-08-19 07:31:23
9657	242	288	66	2025-08-19 07:31:23	2025-08-19 07:31:23
9659	248	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9661	269	288	77	2025-08-19 07:31:23	2025-08-19 07:31:23
9662	288	177	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9663	177	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9664	288	195	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9665	288	202	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9578	287	280	88	2025-08-18 13:26:08	2025-12-11 16:49:08
9667	209	288	77	2025-08-19 07:31:23	2025-08-19 07:31:23
9668	288	215	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9670	238	288	66	2025-08-19 07:31:23	2025-08-19 07:31:23
9672	249	288	77	2025-08-19 07:31:23	2025-08-19 07:31:23
9674	252	288	88	2025-08-19 07:31:23	2025-08-19 07:31:23
9676	264	288	66	2025-08-19 07:31:23	2025-08-19 07:31:23
9582	288	165	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9584	288	197	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9586	288	204	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9588	288	212	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9590	288	230	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9592	288	235	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9594	288	241	55	2025-08-19 07:31:23	2025-08-19 07:31:29
9596	288	245	88	2025-08-19 07:31:23	2025-08-19 07:31:29
9598	288	247	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9602	288	255	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9622	288	124	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9624	288	125	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9626	288	128	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9634	288	129	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9636	288	200	55	2025-08-19 07:31:23	2025-08-19 07:31:29
9638	288	265	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9641	288	194	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9642	288	251	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9644	288	131	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9646	288	133	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9648	288	135	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9650	288	142	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9652	288	237	88	2025-08-19 07:31:23	2025-08-19 07:31:29
9654	288	258	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9656	288	242	55	2025-08-19 07:31:23	2025-08-19 07:31:29
9658	288	248	77	2025-08-19 07:31:23	2025-08-19 07:31:29
9660	288	269	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9669	288	238	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9671	288	249	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9673	288	252	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9675	288	264	88	2025-08-19 07:31:23	2025-08-19 07:31:29
9677	288	270	88	2025-08-19 07:31:23	2025-08-19 07:31:29
9678	270	288	77	2025-08-19 07:31:23	2025-08-19 07:31:23
9680	210	288	100	2025-08-19 07:31:23	2025-08-19 07:31:23
9681	288	191	77	2025-08-19 07:31:23	2025-08-19 07:31:23
9684	196	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9686	97	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9688	99	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9691	288	79	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9692	79	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9693	288	85	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9694	85	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9695	288	86	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9696	86	288	66	2025-08-19 07:31:23	2025-08-19 07:31:23
9697	288	88	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9698	88	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9699	288	93	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9700	93	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9701	288	253	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9703	226	288	88	2025-08-19 07:31:23	2025-08-19 07:31:23
9705	239	288	66	2025-08-19 07:31:23	2025-08-19 07:31:23
9707	271	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9710	113	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9712	114	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9714	115	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9716	117	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9718	119	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9720	120	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9722	122	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9724	123	288	66	2025-08-19 07:31:23	2025-08-19 07:31:23
9725	288	145	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9726	145	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9728	143	288	66	2025-08-19 07:31:23	2025-08-19 07:31:23
9730	272	288	77	2025-08-19 07:31:23	2025-08-19 07:31:23
9732	139	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9734	140	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9736	141	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9737	288	147	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9738	147	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9739	288	148	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9740	288	149	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9741	149	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9742	288	152	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9743	152	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9744	288	153	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9745	153	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9746	288	173	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9747	173	288	55	2025-08-19 07:31:23	2025-08-19 07:31:23
9749	240	288	66	2025-08-19 07:31:23	2025-08-19 07:31:23
9751	254	288	77	2025-08-19 07:31:23	2025-08-19 07:31:23
9753	262	288	77	2025-08-19 07:31:23	2025-08-19 07:31:23
9755	274	288	44	2025-08-19 07:31:23	2025-08-19 07:31:23
9757	276	288	88	2025-08-19 07:31:23	2025-08-19 07:31:23
9759	278	288	88	2025-08-19 07:31:23	2025-08-19 07:31:23
15442	126	325	55	2025-12-22 17:20:11	2025-12-22 17:20:11
9580	288	54	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9600	288	250	77	2025-08-19 07:31:23	2025-08-19 07:31:29
9762	50	288	44	2025-08-19 07:31:29	2025-08-19 07:31:29
9763	194	288	44	2025-08-19 07:31:29	2025-08-19 07:31:29
9666	288	209	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9679	288	210	55	2025-08-19 07:31:23	2025-08-19 07:31:29
9682	191	288	77	2025-08-19 07:31:23	2025-08-19 07:31:29
9683	288	196	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9685	288	97	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9687	288	99	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9689	288	100	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9690	288	102	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9702	288	226	66	2025-08-19 07:31:23	2025-08-19 07:31:29
9704	288	239	77	2025-08-19 07:31:23	2025-08-19 07:31:29
9706	288	271	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9708	288	104	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9709	288	113	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9711	288	114	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9713	288	115	44	2025-08-19 07:31:23	2025-08-19 07:31:29
9715	288	117	44	2025-08-19 07:31:23	2025-08-19 07:31:30
9717	288	119	44	2025-08-19 07:31:23	2025-08-19 07:31:30
9719	288	120	44	2025-08-19 07:31:23	2025-08-19 07:31:30
9721	288	122	44	2025-08-19 07:31:23	2025-08-19 07:31:30
9723	288	123	44	2025-08-19 07:31:23	2025-08-19 07:31:30
9727	288	143	44	2025-08-19 07:31:23	2025-08-19 07:31:30
9729	288	272	66	2025-08-19 07:31:23	2025-08-19 07:31:30
9731	288	139	44	2025-08-19 07:31:23	2025-08-19 07:31:30
9733	288	140	44	2025-08-19 07:31:23	2025-08-19 07:31:30
9735	288	141	44	2025-08-19 07:31:23	2025-08-19 07:31:30
9748	288	240	77	2025-08-19 07:31:23	2025-08-19 07:31:30
9750	288	254	66	2025-08-19 07:31:23	2025-08-19 07:31:30
9752	288	262	66	2025-08-19 07:31:23	2025-08-19 07:31:30
9754	288	274	66	2025-08-19 07:31:23	2025-08-19 07:31:30
9756	288	276	66	2025-08-19 07:31:23	2025-08-19 07:31:30
9758	288	278	66	2025-08-19 07:31:23	2025-08-19 07:31:30
9760	288	280	66	2025-08-19 07:31:23	2025-08-19 07:31:30
9764	289	54	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9765	54	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9766	289	165	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9767	165	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9768	289	197	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9769	197	289	88	2025-08-19 07:57:30	2025-08-19 07:57:30
9770	289	204	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9771	204	289	88	2025-08-19 07:57:30	2025-08-19 07:57:30
9772	289	212	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9773	212	289	88	2025-08-19 07:57:30	2025-08-19 07:57:30
9774	289	230	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9775	230	289	88	2025-08-19 07:57:30	2025-08-19 07:57:30
9776	289	235	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9777	235	289	88	2025-08-19 07:57:30	2025-08-19 07:57:30
11367	72	298	44	2025-09-25 07:52:16	2025-09-25 07:52:16
9779	241	289	88	2025-08-19 07:57:30	2025-08-19 07:57:30
9780	289	245	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9781	245	289	66	2025-08-19 07:57:30	2025-08-19 07:57:30
9782	289	247	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9783	247	289	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9784	289	250	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9785	250	289	66	2025-08-19 07:57:30	2025-08-19 07:57:30
9786	289	255	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9787	255	289	88	2025-08-19 07:57:30	2025-08-19 07:57:30
9789	56	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9791	58	289	55	2025-08-19 07:57:30	2025-08-19 07:57:30
9793	63	289	55	2025-08-19 07:57:30	2025-08-19 07:57:30
9795	66	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9797	67	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9799	68	289	66	2025-08-19 07:57:30	2025-08-19 07:57:30
9801	69	289	66	2025-08-19 07:57:30	2025-08-19 07:57:30
9803	70	289	55	2025-08-19 07:57:30	2025-08-19 07:57:30
9805	71	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9806	289	124	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9807	124	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9808	289	125	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9809	125	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9810	289	128	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9811	128	289	55	2025-08-19 07:57:30	2025-08-19 07:57:30
9813	75	289	55	2025-08-19 07:57:30	2025-08-19 07:57:30
9815	76	289	55	2025-08-19 07:57:30	2025-08-19 07:57:30
9817	78	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9818	289	129	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9819	129	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9820	289	200	88	2025-08-19 07:57:30	2025-08-19 07:57:30
9821	200	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9822	289	265	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9823	289	50	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9825	289	251	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9826	251	289	88	2025-08-19 07:57:30	2025-08-19 07:57:30
9827	289	131	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9828	131	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9829	289	133	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9830	133	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9831	289	135	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9832	135	289	55	2025-08-19 07:57:30	2025-08-19 07:57:30
9833	289	142	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9834	142	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9835	289	237	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9836	237	289	66	2025-08-19 07:57:30	2025-08-19 07:57:30
9837	289	258	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9838	258	289	88	2025-08-19 07:57:30	2025-08-19 07:57:30
9839	289	242	88	2025-08-19 07:57:30	2025-08-19 07:57:30
9840	242	289	66	2025-08-19 07:57:30	2025-08-19 07:57:30
9841	289	248	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9842	248	289	55	2025-08-19 07:57:30	2025-08-19 07:57:30
9843	289	269	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9844	269	289	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9846	177	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9847	289	195	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9849	289	209	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9850	209	289	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9852	289	238	88	2025-08-19 07:57:30	2025-08-19 07:57:30
9853	238	289	55	2025-08-19 07:57:30	2025-08-19 07:57:30
9854	289	249	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9855	249	289	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9856	289	252	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9857	252	289	88	2025-08-19 07:57:30	2025-08-19 07:57:30
9858	289	264	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9859	264	289	55	2025-08-19 07:57:30	2025-08-19 07:57:30
9860	289	270	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9861	270	289	66	2025-08-19 07:57:30	2025-08-19 07:57:30
9863	210	289	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9864	289	191	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9865	191	289	66	2025-08-19 07:57:30	2025-08-19 07:57:30
9866	289	196	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9867	196	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9868	289	97	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9869	97	289	55	2025-08-19 07:57:30	2025-08-19 07:57:30
9870	289	99	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9871	99	289	55	2025-08-19 07:57:30	2025-08-19 07:57:30
9872	289	100	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9873	289	102	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9875	79	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9877	85	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9879	86	289	66	2025-08-19 07:57:30	2025-08-19 07:57:30
9881	88	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9883	93	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9885	289	226	100	2025-08-19 07:57:30	2025-08-19 07:57:30
9886	226	289	88	2025-08-19 07:57:30	2025-08-19 07:57:30
9790	289	58	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9792	289	63	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9794	289	66	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9796	289	67	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9798	289	68	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9800	289	69	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9802	289	70	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9804	289	71	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9812	289	75	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9816	289	78	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9824	289	194	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9845	289	177	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9848	289	202	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9851	289	215	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9862	289	210	88	2025-08-19 07:57:30	2025-08-19 07:58:05
9874	289	79	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9876	289	85	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9878	289	86	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9880	289	88	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9882	289	93	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9884	289	253	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9888	239	289	55	2025-08-19 07:57:30	2025-08-19 07:57:30
9889	289	271	77	2025-08-19 07:57:30	2025-08-19 07:57:30
9890	271	289	44	2025-08-19 07:57:30	2025-08-19 07:57:30
9891	289	104	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9892	289	113	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9893	113	289	55	2025-08-19 07:57:31	2025-08-19 07:57:31
9894	289	114	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9895	114	289	44	2025-08-19 07:57:31	2025-08-19 07:57:31
9896	289	115	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9897	115	289	44	2025-08-19 07:57:31	2025-08-19 07:57:31
9898	289	117	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9899	117	289	44	2025-08-19 07:57:31	2025-08-19 07:57:31
9900	289	119	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9901	119	289	55	2025-08-19 07:57:31	2025-08-19 07:57:31
9902	289	120	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9903	120	289	55	2025-08-19 07:57:31	2025-08-19 07:57:31
9904	289	122	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9905	122	289	44	2025-08-19 07:57:31	2025-08-19 07:57:31
9906	289	123	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9907	123	289	66	2025-08-19 07:57:31	2025-08-19 07:57:31
9909	145	289	55	2025-08-19 07:57:31	2025-08-19 07:57:31
9910	289	143	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9911	143	289	66	2025-08-19 07:57:31	2025-08-19 07:57:31
9912	289	272	100	2025-08-19 07:57:31	2025-08-19 07:57:31
9913	272	289	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9914	289	139	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9915	139	289	44	2025-08-19 07:57:31	2025-08-19 07:57:31
9916	289	140	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9917	140	289	55	2025-08-19 07:57:31	2025-08-19 07:57:31
9918	289	141	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9919	141	289	55	2025-08-19 07:57:31	2025-08-19 07:57:31
9921	147	289	55	2025-08-19 07:57:31	2025-08-19 07:57:31
9924	149	289	44	2025-08-19 07:57:31	2025-08-19 07:57:31
9926	152	289	44	2025-08-19 07:57:31	2025-08-19 07:57:31
9928	153	289	44	2025-08-19 07:57:31	2025-08-19 07:57:31
9930	173	289	55	2025-08-19 07:57:31	2025-08-19 07:57:31
9931	289	240	100	2025-08-19 07:57:31	2025-08-19 07:57:31
9932	240	289	55	2025-08-19 07:57:31	2025-08-19 07:57:31
9933	289	254	100	2025-08-19 07:57:31	2025-08-19 07:57:31
9934	254	289	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9935	289	262	100	2025-08-19 07:57:31	2025-08-19 07:57:31
9936	262	289	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9937	289	274	77	2025-08-19 07:57:31	2025-08-19 07:57:31
9938	289	276	100	2025-08-19 07:57:31	2025-08-19 07:57:31
9939	276	289	88	2025-08-19 07:57:31	2025-08-19 07:57:31
9940	289	278	100	2025-08-19 07:57:31	2025-08-19 07:57:31
9941	278	289	88	2025-08-19 07:57:31	2025-08-19 07:57:31
9778	289	241	88	2025-08-19 07:57:30	2025-08-19 07:58:05
9788	289	56	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9814	289	76	66	2025-08-19 07:57:30	2025-08-19 07:58:05
9887	289	239	88	2025-08-19 07:57:30	2025-08-19 07:58:05
9908	289	145	66	2025-08-19 07:57:31	2025-08-19 07:58:05
9920	289	147	66	2025-08-19 07:57:31	2025-08-19 07:58:05
9922	289	148	66	2025-08-19 07:57:31	2025-08-19 07:58:05
9923	289	149	66	2025-08-19 07:57:31	2025-08-19 07:58:05
9925	289	152	66	2025-08-19 07:57:31	2025-08-19 07:58:05
9927	289	153	66	2025-08-19 07:57:31	2025-08-19 07:58:06
9929	289	173	66	2025-08-19 07:57:31	2025-08-19 07:58:06
15443	325	127	77	2025-12-22 17:20:11	2025-12-22 17:20:11
9945	174	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
9946	284	181	77	2025-08-22 08:59:29	2025-08-22 08:59:29
9947	284	193	100	2025-08-22 08:59:29	2025-08-22 08:59:29
9943	280	289	100	2025-08-19 07:57:31	2025-12-11 16:49:08
9950	223	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
9952	263	284	77	2025-08-22 08:59:29	2025-08-22 08:59:29
9954	268	284	88	2025-08-22 08:59:29	2025-08-22 08:59:29
9956	55	284	44	2025-08-22 08:59:29	2025-08-22 08:59:29
9958	57	284	44	2025-08-22 08:59:29	2025-08-22 08:59:29
9960	59	284	44	2025-08-22 08:59:29	2025-08-22 08:59:29
9962	60	284	44	2025-08-22 08:59:29	2025-08-22 08:59:29
9964	61	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
9968	65	284	44	2025-08-22 08:59:29	2025-08-22 08:59:29
9970	72	284	44	2025-08-22 08:59:29	2025-08-22 08:59:29
9972	73	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
9974	126	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
9976	127	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
9978	166	284	44	2025-08-22 08:59:29	2025-08-22 08:59:29
9980	74	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
9982	77	284	66	2025-08-22 08:59:29	2025-08-22 08:59:29
9984	130	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
9942	289	280	88	2025-08-19 07:57:31	2025-12-11 16:49:08
9986	51	284	88	2025-08-22 08:59:29	2025-08-22 08:59:29
9990	231	284	88	2025-08-22 08:59:29	2025-08-22 08:59:29
9948	193	284	77	2025-08-22 08:59:29	2025-08-22 08:59:41
9951	284	263	88	2025-08-22 08:59:29	2025-08-22 08:59:41
9953	284	268	88	2025-08-22 08:59:29	2025-08-22 08:59:41
9955	284	55	55	2025-08-22 08:59:29	2025-08-22 08:59:41
9957	284	57	55	2025-08-22 08:59:29	2025-08-22 08:59:41
9959	284	59	55	2025-08-22 08:59:29	2025-08-22 08:59:41
9961	284	60	55	2025-08-22 08:59:29	2025-08-22 08:59:41
9963	284	61	55	2025-08-22 08:59:29	2025-08-22 08:59:41
9965	284	62	55	2025-08-22 08:59:29	2025-08-22 08:59:41
9966	284	64	55	2025-08-22 08:59:29	2025-08-22 08:59:41
9967	284	65	55	2025-08-22 08:59:29	2025-08-22 08:59:41
9969	284	72	55	2025-08-22 08:59:29	2025-08-22 08:59:41
9971	284	73	55	2025-08-22 08:59:29	2025-08-22 08:59:41
9973	284	126	66	2025-08-22 08:59:29	2025-08-22 08:59:41
9975	284	127	66	2025-08-22 08:59:29	2025-08-22 08:59:41
9977	284	166	66	2025-08-22 08:59:29	2025-08-22 08:59:41
9979	284	74	55	2025-08-22 08:59:29	2025-08-22 08:59:41
9981	284	77	55	2025-08-22 08:59:29	2025-08-22 08:59:41
9983	284	130	66	2025-08-22 08:59:29	2025-08-22 08:59:41
9987	284	214	66	2025-08-22 08:59:29	2025-08-22 08:59:41
9988	284	176	66	2025-08-22 08:59:29	2025-08-22 08:59:41
9989	284	231	88	2025-08-22 08:59:29	2025-08-22 08:59:41
11369	73	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
9992	132	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
9994	134	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
9996	136	284	44	2025-08-22 08:59:29	2025-08-22 08:59:29
9998	137	284	66	2025-08-22 08:59:29	2025-08-22 08:59:29
10000	138	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
10002	224	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
10004	168	284	100	2025-08-22 08:59:29	2025-08-22 08:59:29
10005	284	189	100	2025-08-22 08:59:29	2025-08-22 08:59:29
10008	222	284	66	2025-08-22 08:59:29	2025-08-22 08:59:29
10010	232	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
10085	284	192	77	2025-08-22 08:59:30	2025-11-17 15:32:36
10012	243	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
10014	261	284	88	2025-08-22 08:59:29	2025-08-22 08:59:29
10016	171	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
10018	179	284	66	2025-08-22 08:59:29	2025-08-22 08:59:29
10020	94	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
10022	95	284	44	2025-08-22 08:59:29	2025-08-22 08:59:29
10024	96	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
10026	98	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
10029	103	284	44	2025-08-22 08:59:29	2025-08-22 08:59:29
10031	80	284	44	2025-08-22 08:59:29	2025-08-22 08:59:29
10034	82	284	66	2025-08-22 08:59:29	2025-08-22 08:59:29
10036	83	284	55	2025-08-22 08:59:29	2025-08-22 08:59:29
10038	84	284	55	2025-08-22 08:59:30	2025-08-22 08:59:30
10040	87	284	44	2025-08-22 08:59:30	2025-08-22 08:59:30
10042	89	284	44	2025-08-22 08:59:30	2025-08-22 08:59:30
10044	90	284	55	2025-08-22 08:59:30	2025-08-22 08:59:30
10046	91	284	55	2025-08-22 08:59:30	2025-08-22 08:59:30
15444	127	325	55	2025-12-22 17:20:11	2025-12-22 17:20:11
10048	92	284	44	2025-08-22 08:59:30	2025-08-22 08:59:30
10050	244	284	77	2025-08-22 08:59:30	2025-08-22 08:59:30
10054	233	284	44	2025-08-22 08:59:30	2025-08-22 08:59:30
10056	266	284	88	2025-08-22 08:59:30	2025-08-22 08:59:30
10058	105	284	44	2025-08-22 08:59:30	2025-08-22 08:59:30
10062	108	284	66	2025-08-22 08:59:30	2025-08-22 08:59:30
10066	111	284	44	2025-08-22 08:59:30	2025-08-22 08:59:30
10068	112	284	66	2025-08-22 08:59:30	2025-08-22 08:59:30
10070	116	284	44	2025-08-22 08:59:30	2025-08-22 08:59:30
10072	118	284	44	2025-08-22 08:59:30	2025-08-22 08:59:30
10074	121	284	44	2025-08-22 08:59:30	2025-08-22 08:59:30
10076	144	284	55	2025-08-22 08:59:30	2025-08-22 08:59:30
10078	146	284	44	2025-08-22 08:59:30	2025-08-22 08:59:30
10080	267	284	66	2025-08-22 08:59:30	2025-08-22 08:59:30
10082	150	284	55	2025-08-22 08:59:30	2025-08-22 08:59:30
10089	227	284	77	2025-08-22 08:59:30	2025-08-22 08:59:30
10092	234	284	66	2025-08-22 08:59:30	2025-08-22 08:59:30
10094	273	284	55	2025-08-22 08:59:30	2025-08-22 08:59:30
10096	277	284	66	2025-08-22 08:59:30	2025-08-22 08:59:30
9993	284	134	66	2025-08-22 08:59:29	2025-08-22 08:59:41
9995	284	136	66	2025-08-22 08:59:29	2025-08-22 08:59:41
9997	284	137	66	2025-08-22 08:59:29	2025-08-22 08:59:41
9999	284	138	66	2025-08-22 08:59:29	2025-08-22 08:59:41
10001	284	224	88	2025-08-22 08:59:29	2025-08-22 08:59:41
10003	284	168	77	2025-08-22 08:59:29	2025-08-22 08:59:41
10006	189	284	55	2025-08-22 08:59:29	2025-08-22 08:59:41
10007	284	222	88	2025-08-22 08:59:29	2025-08-22 08:59:41
10009	284	232	88	2025-08-22 08:59:29	2025-08-22 08:59:41
10013	284	261	88	2025-08-22 08:59:29	2025-08-22 08:59:41
10015	284	171	55	2025-08-22 08:59:29	2025-08-22 08:59:41
10017	284	179	88	2025-08-22 08:59:29	2025-08-22 08:59:41
10019	284	94	66	2025-08-22 08:59:29	2025-08-22 08:59:41
10021	284	95	66	2025-08-22 08:59:29	2025-08-22 08:59:41
10023	284	96	66	2025-08-22 08:59:29	2025-08-22 08:59:41
10025	284	98	66	2025-08-22 08:59:29	2025-08-22 08:59:41
10027	284	101	66	2025-08-22 08:59:29	2025-08-22 08:59:41
10028	284	103	66	2025-08-22 08:59:29	2025-08-22 08:59:41
10030	284	80	55	2025-08-22 08:59:29	2025-08-22 08:59:41
10032	284	81	55	2025-08-22 08:59:29	2025-08-22 08:59:41
10033	284	82	55	2025-08-22 08:59:29	2025-08-22 08:59:41
10035	284	83	55	2025-08-22 08:59:29	2025-08-22 08:59:41
10037	284	84	55	2025-08-22 08:59:30	2025-08-22 08:59:41
10039	284	87	55	2025-08-22 08:59:30	2025-08-22 08:59:41
10041	284	89	55	2025-08-22 08:59:30	2025-08-22 08:59:41
10043	284	90	55	2025-08-22 08:59:30	2025-08-22 08:59:41
10045	284	91	55	2025-08-22 08:59:30	2025-08-22 08:59:41
10049	284	244	88	2025-08-22 08:59:30	2025-08-22 08:59:41
10051	284	260	55	2025-08-22 08:59:30	2025-08-22 08:59:41
10052	284	216	55	2025-08-22 08:59:30	2025-08-22 08:59:41
10053	284	233	88	2025-08-22 08:59:30	2025-08-22 08:59:41
10055	284	266	88	2025-08-22 08:59:30	2025-08-22 08:59:41
10057	284	105	66	2025-08-22 08:59:30	2025-08-22 08:59:41
10059	284	106	66	2025-08-22 08:59:30	2025-08-22 08:59:41
10060	284	107	66	2025-08-22 08:59:30	2025-08-22 08:59:41
10061	284	108	66	2025-08-22 08:59:30	2025-08-22 08:59:41
10063	284	109	66	2025-08-22 08:59:30	2025-08-22 08:59:41
10064	284	110	66	2025-08-22 08:59:30	2025-08-22 08:59:41
10065	284	111	66	2025-08-22 08:59:30	2025-08-22 08:59:41
10067	284	112	66	2025-08-22 08:59:30	2025-08-22 08:59:41
10069	284	116	66	2025-08-22 08:59:30	2025-08-22 08:59:41
10071	284	118	66	2025-08-22 08:59:30	2025-08-22 08:59:41
10073	284	121	66	2025-08-22 08:59:30	2025-08-22 08:59:41
10075	284	144	55	2025-08-22 08:59:30	2025-08-22 08:59:41
10077	284	146	55	2025-08-22 08:59:30	2025-08-22 08:59:41
10081	284	150	55	2025-08-22 08:59:30	2025-08-22 08:59:41
10083	284	151	55	2025-08-22 08:59:30	2025-08-22 08:59:41
10084	284	53	66	2025-08-22 08:59:30	2025-08-22 08:59:41
10087	284	219	77	2025-08-22 08:59:30	2025-08-22 08:59:41
10088	284	227	88	2025-08-22 08:59:30	2025-08-22 08:59:41
10090	284	211	77	2025-08-22 08:59:30	2025-08-22 08:59:41
10091	284	234	88	2025-08-22 08:59:30	2025-08-22 08:59:41
10093	284	273	77	2025-08-22 08:59:30	2025-08-22 08:59:41
10095	284	277	88	2025-08-22 08:59:30	2025-08-22 08:59:41
10097	284	246	77	2025-08-22 08:59:30	2025-08-22 08:59:41
10098	246	284	77	2025-08-22 08:59:30	2025-08-22 08:59:30
10100	283	284	88	2025-08-22 08:59:30	2025-08-22 08:59:30
10102	286	284	88	2025-08-22 08:59:30	2025-08-22 08:59:30
10104	287	284	88	2025-08-22 08:59:30	2025-08-22 08:59:30
10106	288	284	66	2025-08-22 08:59:30	2025-08-22 08:59:30
10108	289	284	88	2025-08-22 08:59:30	2025-08-22 08:59:30
9944	284	174	55	2025-08-22 08:59:29	2025-08-22 08:59:41
9949	284	223	88	2025-08-22 08:59:29	2025-08-22 08:59:41
9985	284	51	88	2025-08-22 08:59:29	2025-08-22 08:59:41
10109	176	284	44	2025-08-22 08:59:41	2025-08-22 08:59:41
9991	284	132	66	2025-08-22 08:59:29	2025-08-22 08:59:41
10011	284	243	77	2025-08-22 08:59:29	2025-08-22 08:59:41
10047	284	92	55	2025-08-22 08:59:30	2025-08-22 08:59:41
10079	284	267	66	2025-08-22 08:59:30	2025-08-22 08:59:41
10099	284	283	88	2025-08-22 08:59:30	2025-08-22 08:59:41
10101	284	286	88	2025-08-22 08:59:30	2025-08-22 08:59:41
10103	284	287	88	2025-08-22 08:59:30	2025-08-22 08:59:41
10105	284	288	88	2025-08-22 08:59:30	2025-08-22 08:59:41
10107	284	289	88	2025-08-22 08:59:30	2025-08-22 08:59:41
11370	298	126	77	2025-09-25 07:52:16	2025-09-25 07:52:16
10111	174	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10112	290	181	77	2025-08-25 17:33:48	2025-08-25 17:33:48
10113	290	193	100	2025-08-25 17:33:48	2025-08-25 17:33:48
10116	223	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10118	263	290	77	2025-08-25 17:33:48	2025-08-25 17:33:48
10120	268	290	88	2025-08-25 17:33:48	2025-08-25 17:33:48
10122	55	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10124	57	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10126	59	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10128	60	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10130	61	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10134	65	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10136	72	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10138	73	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10140	126	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10142	127	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10144	166	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10146	74	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10148	77	290	66	2025-08-25 17:33:48	2025-08-25 17:33:48
10150	130	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10152	51	290	88	2025-08-25 17:33:48	2025-08-25 17:33:48
10156	231	290	88	2025-08-25 17:33:48	2025-08-25 17:33:48
10158	132	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10160	134	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10162	136	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10164	137	290	66	2025-08-25 17:33:48	2025-08-25 17:33:48
10166	138	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10168	224	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10170	168	290	100	2025-08-25 17:33:48	2025-08-25 17:33:48
10171	290	189	100	2025-08-25 17:33:48	2025-08-25 17:33:48
10174	222	290	66	2025-08-25 17:33:48	2025-08-25 17:33:48
10176	232	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10178	243	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10180	261	290	88	2025-08-25 17:33:48	2025-08-25 17:33:48
10182	171	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10184	179	290	66	2025-08-25 17:33:48	2025-08-25 17:33:48
10186	94	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10188	95	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10190	96	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10192	98	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10195	103	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10197	80	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10114	193	290	77	2025-08-25 17:33:48	2025-08-25 17:34:05
10115	290	223	88	2025-08-25 17:33:48	2025-08-25 17:34:05
10117	290	263	88	2025-08-25 17:33:48	2025-08-25 17:34:05
10119	290	268	88	2025-08-25 17:33:48	2025-08-25 17:34:05
10123	290	57	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10125	290	59	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10127	290	60	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10129	290	61	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10131	290	62	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10132	290	64	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10133	290	65	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10135	290	72	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10137	290	73	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10139	290	126	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10141	290	127	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10143	290	166	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10145	290	74	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10147	290	77	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10149	290	130	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10151	290	51	88	2025-08-25 17:33:48	2025-08-25 17:34:05
10153	290	214	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10154	290	176	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10157	290	132	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10159	290	134	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10161	290	136	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10163	290	137	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10165	290	138	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10167	290	224	88	2025-08-25 17:33:48	2025-08-25 17:34:05
10169	290	168	77	2025-08-25 17:33:48	2025-08-25 17:34:05
10172	189	290	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10173	290	222	88	2025-08-25 17:33:48	2025-08-25 17:34:05
10175	290	232	88	2025-08-25 17:33:48	2025-08-25 17:34:05
10177	290	243	77	2025-08-25 17:33:48	2025-08-25 17:34:05
10179	290	261	88	2025-08-25 17:33:48	2025-08-25 17:34:05
10181	290	171	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10183	290	179	88	2025-08-25 17:33:48	2025-08-25 17:34:05
10185	290	94	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10187	290	95	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10189	290	96	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10191	290	98	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10194	290	103	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10196	290	80	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10200	82	290	66	2025-08-25 17:33:48	2025-08-25 17:33:48
10202	83	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10204	84	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10206	87	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10208	89	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10210	90	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10212	91	290	55	2025-08-25 17:33:48	2025-08-25 17:33:48
10214	92	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10216	244	290	77	2025-08-25 17:33:48	2025-08-25 17:33:48
10220	233	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10222	266	290	88	2025-08-25 17:33:48	2025-08-25 17:33:48
10224	105	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10228	108	290	66	2025-08-25 17:33:48	2025-08-25 17:33:48
10232	111	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10234	112	290	66	2025-08-25 17:33:48	2025-08-25 17:33:48
10236	116	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10238	118	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10240	121	290	44	2025-08-25 17:33:48	2025-08-25 17:33:48
10242	144	290	55	2025-08-25 17:33:49	2025-08-25 17:33:49
10244	146	290	44	2025-08-25 17:33:49	2025-08-25 17:33:49
10246	267	290	66	2025-08-25 17:33:49	2025-08-25 17:33:49
10248	150	290	55	2025-08-25 17:33:49	2025-08-25 17:33:49
10255	227	290	77	2025-08-25 17:33:49	2025-08-25 17:33:49
10258	234	290	66	2025-08-25 17:33:49	2025-08-25 17:33:49
10260	273	290	55	2025-08-25 17:33:49	2025-08-25 17:33:49
10262	277	290	66	2025-08-25 17:33:49	2025-08-25 17:33:49
10264	246	290	77	2025-08-25 17:33:49	2025-08-25 17:33:49
10266	283	290	88	2025-08-25 17:33:49	2025-08-25 17:33:49
10268	286	290	88	2025-08-25 17:33:49	2025-08-25 17:33:49
10270	287	290	88	2025-08-25 17:33:49	2025-08-25 17:33:49
10272	288	290	66	2025-08-25 17:33:49	2025-08-25 17:33:49
10274	289	290	88	2025-08-25 17:33:49	2025-08-25 17:33:49
10110	290	174	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10121	290	55	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10275	176	290	44	2025-08-25 17:34:05	2025-08-25 17:34:05
10155	290	231	88	2025-08-25 17:33:48	2025-08-25 17:34:05
10193	290	101	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10198	290	81	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10199	290	82	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10201	290	83	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10203	290	84	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10205	290	87	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10207	290	89	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10209	290	90	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10211	290	91	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10213	290	92	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10215	290	244	88	2025-08-25 17:33:48	2025-08-25 17:34:05
10217	290	260	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10218	290	216	55	2025-08-25 17:33:48	2025-08-25 17:34:05
10219	290	233	88	2025-08-25 17:33:48	2025-08-25 17:34:05
10221	290	266	88	2025-08-25 17:33:48	2025-08-25 17:34:05
10223	290	105	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10225	290	106	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10226	290	107	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10227	290	108	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10229	290	109	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10230	290	110	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10231	290	111	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10233	290	112	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10235	290	116	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10237	290	118	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10239	290	121	66	2025-08-25 17:33:48	2025-08-25 17:34:05
10241	290	144	55	2025-08-25 17:33:49	2025-08-25 17:34:05
10243	290	146	55	2025-08-25 17:33:49	2025-08-25 17:34:05
10245	290	267	66	2025-08-25 17:33:49	2025-08-25 17:34:05
10247	290	150	55	2025-08-25 17:33:49	2025-08-25 17:34:05
10249	290	151	55	2025-08-25 17:33:49	2025-08-25 17:34:05
10250	290	53	66	2025-08-25 17:33:49	2025-08-25 17:34:05
10253	290	219	77	2025-08-25 17:33:49	2025-08-25 17:34:05
10254	290	227	88	2025-08-25 17:33:49	2025-08-25 17:34:05
10256	290	211	77	2025-08-25 17:33:49	2025-08-25 17:34:05
10257	290	234	88	2025-08-25 17:33:49	2025-08-25 17:34:05
10259	290	273	77	2025-08-25 17:33:49	2025-08-25 17:34:05
10261	290	277	88	2025-08-25 17:33:49	2025-08-25 17:34:05
10263	290	246	77	2025-08-25 17:33:49	2025-08-25 17:34:05
10265	290	283	88	2025-08-25 17:33:49	2025-08-25 17:34:05
10267	290	286	88	2025-08-25 17:33:49	2025-08-25 17:34:05
10269	290	287	88	2025-08-25 17:33:49	2025-08-25 17:34:05
10271	290	288	88	2025-08-25 17:33:49	2025-08-25 17:34:05
10273	290	289	88	2025-08-25 17:33:49	2025-08-25 17:34:05
10276	279	54	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10277	54	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10278	279	165	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10279	165	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10280	279	197	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10281	197	279	88	2025-09-04 12:44:36	2025-09-04 12:44:36
10282	279	204	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10283	204	279	88	2025-09-04 12:44:36	2025-09-04 12:44:36
10284	279	212	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10285	212	279	88	2025-09-04 12:44:36	2025-09-04 12:44:36
10286	279	230	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10287	230	279	88	2025-09-04 12:44:36	2025-09-04 12:44:36
10288	279	235	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10289	235	279	88	2025-09-04 12:44:36	2025-09-04 12:44:36
10252	192	290	55	2025-08-25 17:33:49	2025-11-17 15:32:36
10291	241	279	88	2025-09-04 12:44:36	2025-09-04 12:44:36
10292	279	245	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10293	245	279	66	2025-09-04 12:44:36	2025-09-04 12:44:36
10294	279	247	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10295	247	279	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10296	279	250	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10297	250	279	66	2025-09-04 12:44:36	2025-09-04 12:44:36
10298	279	255	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10251	290	192	77	2025-08-25 17:33:49	2025-11-17 15:32:36
10299	255	279	88	2025-09-04 12:44:36	2025-09-04 12:44:36
10301	56	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10303	58	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10305	63	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10307	66	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10309	67	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10311	68	279	66	2025-09-04 12:44:36	2025-09-04 12:44:36
10313	69	279	66	2025-09-04 12:44:36	2025-09-04 12:44:36
10315	70	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10317	71	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10318	279	124	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10319	124	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10320	279	125	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10321	125	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10322	279	128	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10323	128	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10325	75	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10327	76	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10329	78	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10330	279	129	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10331	129	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10332	279	200	88	2025-09-04 12:44:36	2025-09-04 12:44:36
10333	200	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10334	279	265	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10335	279	50	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10337	279	251	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10338	251	279	88	2025-09-04 12:44:36	2025-09-04 12:44:36
10339	279	131	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10340	131	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10341	279	133	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10342	133	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10343	279	135	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10344	135	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10345	279	142	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10346	142	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10347	279	237	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10348	237	279	66	2025-09-04 12:44:36	2025-09-04 12:44:36
10349	279	258	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10350	258	279	88	2025-09-04 12:44:36	2025-09-04 12:44:36
10351	279	242	88	2025-09-04 12:44:36	2025-09-04 12:44:36
10352	242	279	66	2025-09-04 12:44:36	2025-09-04 12:44:36
10353	279	248	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10354	248	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10355	279	269	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10356	269	279	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10358	177	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10359	279	195	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10361	279	209	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10362	209	279	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10364	279	238	88	2025-09-04 12:44:36	2025-09-04 12:44:36
10365	238	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10366	279	249	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10367	249	279	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10368	279	252	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10369	252	279	88	2025-09-04 12:44:36	2025-09-04 12:44:36
10370	279	264	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10371	264	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10372	279	270	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10373	270	279	66	2025-09-04 12:44:36	2025-09-04 12:44:36
10375	210	279	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10376	279	191	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10377	191	279	66	2025-09-04 12:44:36	2025-09-04 12:44:36
10378	279	196	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10379	196	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10380	279	97	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10381	97	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10382	279	99	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10383	99	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10384	279	100	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10385	279	102	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10387	79	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10389	85	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10391	86	279	66	2025-09-04 12:44:36	2025-09-04 12:44:36
10393	88	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10395	93	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10397	279	226	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10398	226	279	88	2025-09-04 12:44:36	2025-09-04 12:44:36
10400	239	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10401	279	271	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10402	271	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10403	279	104	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10404	279	113	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10405	113	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10302	279	58	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10304	279	63	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10306	279	66	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10308	279	67	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10310	279	68	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10312	279	69	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10314	279	70	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10316	279	71	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10324	279	75	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10328	279	78	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10336	279	194	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10357	279	177	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10360	279	202	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10363	279	215	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10374	279	210	88	2025-09-04 12:44:36	2025-09-04 12:44:39
10386	279	79	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10388	279	85	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10390	279	86	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10392	279	88	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10394	279	93	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10396	279	253	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10399	279	239	88	2025-09-04 12:44:36	2025-09-04 12:44:39
10406	279	114	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10407	114	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10408	279	115	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10409	115	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10410	279	117	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10411	117	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10412	279	119	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10413	119	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10414	279	120	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10415	120	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10416	279	122	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10417	122	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10418	279	123	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10419	123	279	66	2025-09-04 12:44:36	2025-09-04 12:44:36
10421	145	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10422	279	143	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10423	143	279	66	2025-09-04 12:44:36	2025-09-04 12:44:36
10424	279	272	100	2025-09-04 12:44:36	2025-09-04 12:44:36
10425	272	279	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10426	279	139	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10427	139	279	44	2025-09-04 12:44:36	2025-09-04 12:44:36
10428	279	140	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10429	140	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10430	279	141	77	2025-09-04 12:44:36	2025-09-04 12:44:36
10431	141	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10433	147	279	55	2025-09-04 12:44:36	2025-09-04 12:44:36
10436	149	279	44	2025-09-04 12:44:37	2025-09-04 12:44:37
10438	152	279	44	2025-09-04 12:44:37	2025-09-04 12:44:37
10440	153	279	44	2025-09-04 12:44:37	2025-09-04 12:44:37
10442	173	279	55	2025-09-04 12:44:37	2025-09-04 12:44:37
10443	279	240	100	2025-09-04 12:44:37	2025-09-04 12:44:37
10444	240	279	55	2025-09-04 12:44:37	2025-09-04 12:44:37
10445	279	254	100	2025-09-04 12:44:37	2025-09-04 12:44:37
10446	254	279	77	2025-09-04 12:44:37	2025-09-04 12:44:37
10447	279	262	100	2025-09-04 12:44:37	2025-09-04 12:44:37
10448	262	279	77	2025-09-04 12:44:37	2025-09-04 12:44:37
10449	279	274	77	2025-09-04 12:44:37	2025-09-04 12:44:37
10450	279	276	100	2025-09-04 12:44:37	2025-09-04 12:44:37
10451	276	279	88	2025-09-04 12:44:37	2025-09-04 12:44:37
10452	279	278	100	2025-09-04 12:44:37	2025-09-04 12:44:37
10453	278	279	88	2025-09-04 12:44:37	2025-09-04 12:44:37
15445	325	166	77	2025-12-22 17:20:11	2025-12-22 17:20:11
10456	279	284	100	2025-09-04 12:44:37	2025-09-04 12:44:37
10457	284	279	77	2025-09-04 12:44:37	2025-09-04 12:44:37
10458	279	290	100	2025-09-04 12:44:37	2025-09-04 12:44:37
10459	290	279	77	2025-09-04 12:44:37	2025-09-04 12:44:37
10290	279	241	88	2025-09-04 12:44:36	2025-09-04 12:44:39
10300	279	56	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10326	279	76	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10420	279	145	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10432	279	147	66	2025-09-04 12:44:36	2025-09-04 12:44:39
10434	279	148	66	2025-09-04 12:44:37	2025-09-04 12:44:39
10435	279	149	66	2025-09-04 12:44:37	2025-09-04 12:44:39
10437	279	152	66	2025-09-04 12:44:37	2025-09-04 12:44:39
10439	279	153	66	2025-09-04 12:44:37	2025-09-04 12:44:39
10441	279	173	66	2025-09-04 12:44:37	2025-09-04 12:44:39
10460	291	54	66	2025-09-04 18:30:54	2025-09-04 18:30:54
10461	54	291	44	2025-09-04 18:30:54	2025-09-04 18:30:54
10462	291	165	66	2025-09-04 18:30:54	2025-09-04 18:30:54
10463	165	291	44	2025-09-04 18:30:54	2025-09-04 18:30:54
10464	291	197	88	2025-09-04 18:30:54	2025-09-04 18:30:54
10465	197	291	88	2025-09-04 18:30:54	2025-09-04 18:30:54
10466	291	204	88	2025-09-04 18:30:54	2025-09-04 18:30:54
10467	204	291	88	2025-09-04 18:30:54	2025-09-04 18:30:54
10468	291	212	88	2025-09-04 18:30:54	2025-09-04 18:30:54
10469	212	291	88	2025-09-04 18:30:54	2025-09-04 18:30:54
10470	291	230	88	2025-09-04 18:30:54	2025-09-04 18:30:54
10471	230	291	88	2025-09-04 18:30:54	2025-09-04 18:30:54
10472	291	235	88	2025-09-04 18:30:54	2025-09-04 18:30:54
10473	235	291	88	2025-09-04 18:30:54	2025-09-04 18:30:54
11371	126	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
10475	241	291	88	2025-09-04 18:30:54	2025-09-04 18:30:54
10476	291	245	88	2025-09-04 18:30:54	2025-09-04 18:30:54
10477	245	291	66	2025-09-04 18:30:54	2025-09-04 18:30:54
10478	291	247	88	2025-09-04 18:30:54	2025-09-04 18:30:54
10479	247	291	77	2025-09-04 18:30:54	2025-09-04 18:30:54
10480	291	250	88	2025-09-04 18:30:54	2025-09-04 18:30:54
10481	250	291	66	2025-09-04 18:30:54	2025-09-04 18:30:54
10482	291	255	88	2025-09-04 18:30:54	2025-09-04 18:30:54
10483	255	291	88	2025-09-04 18:30:54	2025-09-04 18:30:54
10485	56	291	44	2025-09-04 18:30:54	2025-09-04 18:30:54
10487	58	291	55	2025-09-04 18:30:54	2025-09-04 18:30:54
10454	279	280	88	2025-09-04 12:44:37	2025-12-11 16:49:08
10489	63	291	55	2025-09-04 18:30:54	2025-09-04 18:30:54
10491	66	291	44	2025-09-04 18:30:54	2025-09-04 18:30:54
10493	67	291	44	2025-09-04 18:30:54	2025-09-04 18:30:54
10495	68	291	66	2025-09-04 18:30:54	2025-09-04 18:30:54
10497	69	291	66	2025-09-04 18:30:54	2025-09-04 18:30:54
10499	70	291	55	2025-09-04 18:30:54	2025-09-04 18:30:54
10501	71	291	44	2025-09-04 18:30:54	2025-09-04 18:30:54
10502	291	124	66	2025-09-04 18:30:54	2025-09-04 18:30:54
10503	124	291	44	2025-09-04 18:30:54	2025-09-04 18:30:54
10504	291	125	66	2025-09-04 18:30:54	2025-09-04 18:30:54
10505	125	291	44	2025-09-04 18:30:54	2025-09-04 18:30:54
10506	291	128	66	2025-09-04 18:30:54	2025-09-04 18:30:54
10507	128	291	55	2025-09-04 18:30:54	2025-09-04 18:30:54
10509	75	291	55	2025-09-04 18:30:54	2025-09-04 18:30:54
10484	291	56	55	2025-09-04 18:30:54	2025-09-04 18:31:04
10486	291	58	55	2025-09-04 18:30:54	2025-09-04 18:31:04
10490	291	66	55	2025-09-04 18:30:54	2025-09-04 18:31:04
10492	291	67	55	2025-09-04 18:30:54	2025-09-04 18:31:04
10494	291	68	55	2025-09-04 18:30:54	2025-09-04 18:31:04
10496	291	69	55	2025-09-04 18:30:54	2025-09-04 18:31:04
10498	291	70	55	2025-09-04 18:30:54	2025-09-04 18:31:04
10500	291	71	55	2025-09-04 18:30:54	2025-09-04 18:31:04
10508	291	75	55	2025-09-04 18:30:54	2025-09-04 18:31:04
11372	298	127	77	2025-09-25 07:52:16	2025-09-25 07:52:16
10511	76	291	55	2025-09-04 18:30:54	2025-09-04 18:30:54
10513	78	291	44	2025-09-04 18:30:54	2025-09-04 18:30:54
10514	291	129	66	2025-09-04 18:30:54	2025-09-04 18:30:54
10515	129	291	44	2025-09-04 18:30:54	2025-09-04 18:30:54
10516	291	200	77	2025-09-04 18:30:54	2025-09-04 18:30:54
10517	200	291	44	2025-09-04 18:30:54	2025-09-04 18:30:54
10518	291	265	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10519	291	50	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10521	291	251	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10522	251	291	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10523	291	131	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10524	131	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10525	291	133	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10526	133	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10527	291	135	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10528	135	291	55	2025-09-04 18:30:55	2025-09-04 18:30:55
10529	291	142	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10530	142	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10531	291	237	100	2025-09-04 18:30:55	2025-09-04 18:30:55
10532	237	291	77	2025-09-04 18:30:55	2025-09-04 18:30:55
10533	291	258	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10534	258	291	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10535	291	242	77	2025-09-04 18:30:55	2025-09-04 18:30:55
10536	242	291	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10537	291	248	100	2025-09-04 18:30:55	2025-09-04 18:30:55
10538	248	291	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10539	291	269	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10540	269	291	77	2025-09-04 18:30:55	2025-09-04 18:30:55
10542	177	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10543	291	195	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10545	291	209	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10546	209	291	77	2025-09-04 18:30:55	2025-09-04 18:30:55
10548	291	238	77	2025-09-04 18:30:55	2025-09-04 18:30:55
10549	238	291	55	2025-09-04 18:30:55	2025-09-04 18:30:55
10550	291	249	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10551	249	291	77	2025-09-04 18:30:55	2025-09-04 18:30:55
10552	291	252	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10553	252	291	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10554	291	264	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10555	264	291	55	2025-09-04 18:30:55	2025-09-04 18:30:55
10556	291	270	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10557	270	291	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10559	210	291	100	2025-09-04 18:30:55	2025-09-04 18:30:55
10560	291	191	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10561	191	291	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10562	291	196	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10563	196	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10564	291	97	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10565	97	291	55	2025-09-04 18:30:55	2025-09-04 18:30:55
10566	291	99	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10567	99	291	55	2025-09-04 18:30:55	2025-09-04 18:30:55
10568	291	100	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10569	291	102	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10571	79	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10573	85	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10575	86	291	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10577	88	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10579	93	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10581	291	226	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10582	226	291	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10584	239	291	55	2025-09-04 18:30:55	2025-09-04 18:30:55
10585	291	271	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10586	271	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10587	291	104	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10588	291	113	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10589	113	291	55	2025-09-04 18:30:55	2025-09-04 18:30:55
10590	291	114	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10591	114	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10592	291	115	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10593	115	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10594	291	117	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10595	117	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10596	291	119	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10597	119	291	55	2025-09-04 18:30:55	2025-09-04 18:30:55
10598	291	120	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10599	120	291	55	2025-09-04 18:30:55	2025-09-04 18:30:55
10600	291	122	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10601	122	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10602	291	123	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10603	123	291	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10605	145	291	55	2025-09-04 18:30:55	2025-09-04 18:30:55
10606	291	143	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10607	143	291	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10608	291	272	100	2025-09-04 18:30:55	2025-09-04 18:30:55
10609	272	291	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10610	291	139	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10611	139	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10612	291	140	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10613	140	291	55	2025-09-04 18:30:55	2025-09-04 18:30:55
10614	291	141	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10615	141	291	55	2025-09-04 18:30:55	2025-09-04 18:30:55
10512	291	78	55	2025-09-04 18:30:54	2025-09-04 18:31:04
10520	291	194	55	2025-09-04 18:30:55	2025-09-04 18:31:04
10541	291	177	55	2025-09-04 18:30:55	2025-09-04 18:31:04
10544	291	202	55	2025-09-04 18:30:55	2025-09-04 18:31:04
10547	291	215	55	2025-09-04 18:30:55	2025-09-04 18:31:04
10558	291	210	77	2025-09-04 18:30:55	2025-09-04 18:31:04
10570	291	79	55	2025-09-04 18:30:55	2025-09-04 18:31:04
10572	291	85	55	2025-09-04 18:30:55	2025-09-04 18:31:04
10574	291	86	55	2025-09-04 18:30:55	2025-09-04 18:31:04
10578	291	93	55	2025-09-04 18:30:55	2025-09-04 18:31:04
10580	291	253	55	2025-09-04 18:30:55	2025-09-04 18:31:04
10583	291	239	77	2025-09-04 18:30:55	2025-09-04 18:31:04
10604	291	145	55	2025-09-04 18:30:55	2025-09-04 18:31:04
10616	291	147	55	2025-09-04 18:30:55	2025-09-04 18:31:04
10617	147	291	55	2025-09-04 18:30:55	2025-09-04 18:30:55
10620	149	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10622	152	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10624	153	291	44	2025-09-04 18:30:55	2025-09-04 18:30:55
10626	173	291	55	2025-09-04 18:30:55	2025-09-04 18:30:55
10627	291	240	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10628	240	291	55	2025-09-04 18:30:55	2025-09-04 18:30:55
10629	291	254	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10630	254	291	77	2025-09-04 18:30:55	2025-09-04 18:30:55
10631	291	262	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10632	262	291	77	2025-09-04 18:30:55	2025-09-04 18:30:55
10633	291	274	66	2025-09-04 18:30:55	2025-09-04 18:30:55
10634	291	276	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10635	276	291	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10636	291	278	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10637	278	291	88	2025-09-04 18:30:55	2025-09-04 18:30:55
15446	166	325	44	2025-12-22 17:20:11	2025-12-22 17:20:11
10640	291	284	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10641	284	291	77	2025-09-04 18:30:55	2025-09-04 18:30:55
10642	291	290	88	2025-09-04 18:30:55	2025-09-04 18:30:55
10643	290	291	77	2025-09-04 18:30:55	2025-09-04 18:30:55
10474	291	241	77	2025-09-04 18:30:54	2025-09-04 18:31:04
10488	291	63	55	2025-09-04 18:30:54	2025-09-04 18:31:04
10510	291	76	55	2025-09-04 18:30:54	2025-09-04 18:31:04
10576	291	88	55	2025-09-04 18:30:55	2025-09-04 18:31:04
10618	291	148	55	2025-09-04 18:30:55	2025-09-04 18:31:04
10619	291	149	55	2025-09-04 18:30:55	2025-09-04 18:31:04
10621	291	152	55	2025-09-04 18:30:55	2025-09-04 18:31:04
10623	291	153	55	2025-09-04 18:30:55	2025-09-04 18:31:04
10625	291	173	55	2025-09-04 18:30:55	2025-09-04 18:31:04
11373	127	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
10645	174	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10646	285	181	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10647	285	193	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10648	193	285	66	2025-09-16 20:31:46	2025-09-16 20:31:46
10649	285	223	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10650	223	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10651	285	263	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10652	263	285	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10653	285	268	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10654	268	285	88	2025-09-16 20:31:46	2025-09-16 20:31:46
10656	55	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10658	57	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10660	59	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10662	60	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10638	291	280	77	2025-09-04 18:30:55	2025-12-11 16:49:08
10664	61	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10668	65	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10670	72	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10672	73	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10673	285	126	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10674	126	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10675	285	127	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10676	127	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10677	285	166	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10678	166	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10680	74	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10682	77	285	66	2025-09-16 20:31:46	2025-09-16 20:31:46
10683	285	130	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10684	130	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10685	285	51	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10686	51	285	88	2025-09-16 20:31:46	2025-09-16 20:31:46
10687	285	214	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10689	285	231	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10690	231	285	88	2025-09-16 20:31:46	2025-09-16 20:31:46
10691	285	132	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10692	132	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10693	285	134	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10694	134	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10695	285	136	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10696	136	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10697	285	137	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10698	137	285	66	2025-09-16 20:31:46	2025-09-16 20:31:46
10699	285	138	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10700	138	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10701	285	224	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10702	224	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10704	168	285	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10705	285	189	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10706	189	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10707	285	222	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10708	222	285	66	2025-09-16 20:31:46	2025-09-16 20:31:46
10709	285	232	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10710	232	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10712	243	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10713	285	261	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10714	261	285	88	2025-09-16 20:31:46	2025-09-16 20:31:46
10716	171	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10717	285	179	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10718	179	285	66	2025-09-16 20:31:46	2025-09-16 20:31:46
10719	285	94	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10655	285	55	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10657	285	57	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10659	285	59	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10661	285	60	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10665	285	62	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10666	285	64	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10667	285	65	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10669	285	72	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10671	285	73	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10679	285	74	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10681	285	77	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10688	285	176	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10703	285	168	88	2025-09-16 20:31:46	2025-09-16 20:31:48
10711	285	243	88	2025-09-16 20:31:46	2025-09-16 20:31:48
10715	285	171	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10720	94	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10721	285	95	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10722	95	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10723	285	96	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10724	96	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10725	285	98	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10726	98	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10727	285	101	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10728	285	103	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10729	103	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10731	80	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10734	82	285	66	2025-09-16 20:31:46	2025-09-16 20:31:46
10736	83	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10738	84	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10740	87	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10742	89	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10744	90	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10746	91	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10748	92	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10749	285	244	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10750	244	285	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10753	285	233	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10754	233	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10755	285	266	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10756	266	285	88	2025-09-16 20:31:46	2025-09-16 20:31:46
10757	285	105	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10758	105	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10759	285	106	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10760	285	107	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10761	285	108	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10762	108	285	66	2025-09-16 20:31:46	2025-09-16 20:31:46
10763	285	109	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10764	285	110	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10765	285	111	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10766	111	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10767	285	112	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10768	112	285	66	2025-09-16 20:31:46	2025-09-16 20:31:46
10769	285	116	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10770	116	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10771	285	118	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10772	118	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10773	285	121	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10774	121	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10776	144	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10778	146	285	44	2025-09-16 20:31:46	2025-09-16 20:31:46
10779	285	267	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10780	267	285	66	2025-09-16 20:31:46	2025-09-16 20:31:46
10782	150	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10784	285	53	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10788	285	227	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10789	227	285	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10790	285	211	88	2025-09-16 20:31:46	2025-09-16 20:31:46
10791	285	234	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10792	234	285	66	2025-09-16 20:31:46	2025-09-16 20:31:46
10793	285	273	88	2025-09-16 20:31:46	2025-09-16 20:31:46
10794	273	285	55	2025-09-16 20:31:46	2025-09-16 20:31:46
10795	285	279	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10796	279	285	88	2025-09-16 20:31:46	2025-09-16 20:31:46
10797	285	277	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10798	277	285	66	2025-09-16 20:31:46	2025-09-16 20:31:46
10799	285	291	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10800	291	285	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10802	246	285	77	2025-09-16 20:31:46	2025-09-16 20:31:46
10803	285	283	100	2025-09-16 20:31:46	2025-09-16 20:31:46
10804	283	285	88	2025-09-16 20:31:47	2025-09-16 20:31:47
10805	285	286	100	2025-09-16 20:31:47	2025-09-16 20:31:47
10806	286	285	88	2025-09-16 20:31:47	2025-09-16 20:31:47
10807	285	287	100	2025-09-16 20:31:47	2025-09-16 20:31:47
10808	287	285	88	2025-09-16 20:31:47	2025-09-16 20:31:47
10809	285	288	100	2025-09-16 20:31:47	2025-09-16 20:31:47
10810	288	285	66	2025-09-16 20:31:47	2025-09-16 20:31:47
10811	285	289	100	2025-09-16 20:31:47	2025-09-16 20:31:47
10812	289	285	88	2025-09-16 20:31:47	2025-09-16 20:31:47
10644	285	174	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10663	285	61	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10730	285	80	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10732	285	81	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10733	285	82	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10735	285	83	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10737	285	84	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10739	285	87	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10741	285	89	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10743	285	90	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10745	285	91	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10747	285	92	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10751	285	260	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10752	285	216	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10775	285	144	66	2025-09-16 20:31:46	2025-09-16 20:31:48
10777	285	146	66	2025-09-16 20:31:46	2025-09-16 20:31:49
10781	285	150	66	2025-09-16 20:31:46	2025-09-16 20:31:49
10783	285	151	66	2025-09-16 20:31:46	2025-09-16 20:31:49
10787	285	219	88	2025-09-16 20:31:46	2025-09-16 20:31:49
10801	285	246	88	2025-09-16 20:31:46	2025-09-16 20:31:49
11374	298	166	77	2025-09-25 07:52:16	2025-09-25 07:52:16
10814	174	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10815	292	181	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10816	292	193	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10817	193	292	66	2025-09-23 19:14:40	2025-09-23 19:14:40
10818	292	223	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10819	223	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10820	292	263	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10821	263	292	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10822	292	268	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10823	268	292	88	2025-09-23 19:14:40	2025-09-23 19:14:40
10785	285	192	88	2025-09-16 20:31:46	2025-11-17 15:32:36
10825	55	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10827	57	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10829	59	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10831	60	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10833	61	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10837	65	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10839	72	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10841	73	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10842	292	126	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10843	126	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10844	292	127	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10845	127	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10846	292	166	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10847	166	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10849	74	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10851	77	292	66	2025-09-23 19:14:40	2025-09-23 19:14:40
10852	292	130	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10853	130	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10854	292	51	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10855	51	292	88	2025-09-23 19:14:40	2025-09-23 19:14:40
10856	292	214	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10858	292	231	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10859	231	292	88	2025-09-23 19:14:40	2025-09-23 19:14:40
10860	292	132	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10861	132	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10862	292	134	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10863	134	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10864	292	136	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10865	136	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10866	292	137	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10867	137	292	66	2025-09-23 19:14:40	2025-09-23 19:14:40
10868	292	138	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10869	138	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10870	292	224	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10871	224	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10873	168	292	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10874	292	189	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10875	189	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10876	292	222	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10877	222	292	66	2025-09-23 19:14:40	2025-09-23 19:14:40
10878	292	232	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10879	232	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10881	243	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10882	292	261	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10883	261	292	88	2025-09-23 19:14:40	2025-09-23 19:14:40
10885	171	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10886	292	179	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10887	179	292	66	2025-09-23 19:14:40	2025-09-23 19:14:40
10888	292	94	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10889	94	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10890	292	95	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10891	95	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10892	292	96	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10893	96	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10894	292	98	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10895	98	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10896	292	101	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10897	292	103	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10898	103	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10900	80	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10903	82	292	66	2025-09-23 19:14:40	2025-09-23 19:14:40
10905	83	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10907	84	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10909	87	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10911	89	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10913	90	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10915	91	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10917	92	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10918	292	244	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10919	244	292	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10922	292	233	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10923	233	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10924	292	266	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10925	266	292	88	2025-09-23 19:14:40	2025-09-23 19:14:40
10926	292	105	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10927	105	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10928	292	106	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10929	292	107	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10930	292	108	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10826	292	57	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10828	292	59	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10830	292	60	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10832	292	61	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10834	292	62	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10835	292	64	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10836	292	65	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10838	292	72	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10840	292	73	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10850	292	77	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10857	292	176	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10872	292	168	88	2025-09-23 19:14:40	2025-09-23 19:14:42
10880	292	243	88	2025-09-23 19:14:40	2025-09-23 19:14:42
10884	292	171	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10899	292	80	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10901	292	81	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10902	292	82	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10904	292	83	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10906	292	84	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10908	292	87	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10910	292	89	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10912	292	90	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10914	292	91	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10916	292	92	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10920	292	260	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10921	292	216	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10931	108	292	66	2025-09-23 19:14:40	2025-09-23 19:14:40
10932	292	109	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10933	292	110	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10934	292	111	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10935	111	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10936	292	112	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10937	112	292	66	2025-09-23 19:14:40	2025-09-23 19:14:40
10938	292	116	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10939	116	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10940	292	118	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10941	118	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10942	292	121	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10943	121	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10945	144	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10947	146	292	44	2025-09-23 19:14:40	2025-09-23 19:14:40
10948	292	267	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10949	267	292	66	2025-09-23 19:14:40	2025-09-23 19:14:40
10951	150	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10953	292	53	77	2025-09-23 19:14:40	2025-09-23 19:14:40
15448	74	325	55	2025-12-22 17:20:11	2025-12-22 17:20:11
10957	292	227	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10958	227	292	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10959	292	211	88	2025-09-23 19:14:40	2025-09-23 19:14:40
10960	292	234	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10961	234	292	66	2025-09-23 19:14:40	2025-09-23 19:14:40
10962	292	273	88	2025-09-23 19:14:40	2025-09-23 19:14:40
10963	273	292	55	2025-09-23 19:14:40	2025-09-23 19:14:40
10964	292	279	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10965	279	292	88	2025-09-23 19:14:40	2025-09-23 19:14:40
10966	292	277	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10967	277	292	66	2025-09-23 19:14:40	2025-09-23 19:14:40
10968	292	291	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10969	291	292	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10971	246	292	77	2025-09-23 19:14:40	2025-09-23 19:14:40
10972	292	283	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10973	283	292	88	2025-09-23 19:14:40	2025-09-23 19:14:40
10974	292	286	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10975	286	292	88	2025-09-23 19:14:40	2025-09-23 19:14:40
10976	292	287	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10977	287	292	88	2025-09-23 19:14:40	2025-09-23 19:14:40
10978	292	288	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10979	288	292	66	2025-09-23 19:14:40	2025-09-23 19:14:40
10980	292	289	100	2025-09-23 19:14:40	2025-09-23 19:14:40
10981	289	292	88	2025-09-23 19:14:40	2025-09-23 19:14:40
10813	292	174	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10824	292	55	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10848	292	74	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10944	292	144	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10946	292	146	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10950	292	150	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10952	292	151	66	2025-09-23 19:14:40	2025-09-23 19:14:42
10956	292	219	88	2025-09-23 19:14:40	2025-09-23 19:14:42
10970	292	246	88	2025-09-23 19:14:40	2025-09-23 19:14:42
11375	166	298	44	2025-09-25 07:52:16	2025-09-25 07:52:16
10983	174	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
10984	293	181	77	2025-09-23 20:13:14	2025-09-23 20:13:14
10985	293	193	100	2025-09-23 20:13:14	2025-09-23 20:13:14
10986	193	293	66	2025-09-23 20:13:14	2025-09-23 20:13:14
10987	293	223	100	2025-09-23 20:13:14	2025-09-23 20:13:14
10988	223	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
10989	293	263	100	2025-09-23 20:13:14	2025-09-23 20:13:14
10990	263	293	77	2025-09-23 20:13:14	2025-09-23 20:13:14
10991	293	268	100	2025-09-23 20:13:14	2025-09-23 20:13:14
10992	268	293	88	2025-09-23 20:13:14	2025-09-23 20:13:14
10994	55	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
10996	57	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
10998	59	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
10954	292	192	88	2025-09-23 19:14:40	2025-11-17 15:32:36
11000	60	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11002	61	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11006	65	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11008	72	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11010	73	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11011	293	126	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11012	126	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11013	293	127	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11014	127	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11015	293	166	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11016	166	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11018	74	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11020	77	293	66	2025-09-23 20:13:14	2025-09-23 20:13:14
11021	293	130	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11022	130	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11023	293	51	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11024	51	293	88	2025-09-23 20:13:14	2025-09-23 20:13:14
11025	293	214	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11027	293	231	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11028	231	293	88	2025-09-23 20:13:14	2025-09-23 20:13:14
11029	293	132	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11030	132	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11031	293	134	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11032	134	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11033	293	136	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11034	136	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
10993	293	55	66	2025-09-23 20:13:14	2025-09-23 20:13:38
10995	293	57	66	2025-09-23 20:13:14	2025-09-23 20:13:38
10997	293	59	66	2025-09-23 20:13:14	2025-09-23 20:13:38
11001	293	61	66	2025-09-23 20:13:14	2025-09-23 20:13:38
11003	293	62	66	2025-09-23 20:13:14	2025-09-23 20:13:38
11004	293	64	66	2025-09-23 20:13:14	2025-09-23 20:13:38
11005	293	65	66	2025-09-23 20:13:14	2025-09-23 20:13:38
11007	293	72	66	2025-09-23 20:13:14	2025-09-23 20:13:38
11009	293	73	66	2025-09-23 20:13:14	2025-09-23 20:13:38
11017	293	74	66	2025-09-23 20:13:14	2025-09-23 20:13:38
11019	293	77	66	2025-09-23 20:13:14	2025-09-23 20:13:38
11026	293	176	66	2025-09-23 20:13:14	2025-09-23 20:13:38
11035	293	137	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11036	137	293	66	2025-09-23 20:13:14	2025-09-23 20:13:14
11037	293	138	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11038	138	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11039	293	224	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11040	224	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11042	168	293	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11043	293	189	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11044	189	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11045	293	222	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11046	222	293	66	2025-09-23 20:13:14	2025-09-23 20:13:14
11047	293	232	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11048	232	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11050	243	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11051	293	261	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11052	261	293	88	2025-09-23 20:13:14	2025-09-23 20:13:14
11054	171	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11055	293	179	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11056	179	293	66	2025-09-23 20:13:14	2025-09-23 20:13:14
11057	293	94	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11058	94	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11059	293	95	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11060	95	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11061	293	96	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11062	96	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11063	293	98	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11064	98	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11065	293	101	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11066	293	103	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11067	103	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11069	80	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11072	82	293	66	2025-09-23 20:13:14	2025-09-23 20:13:14
11074	83	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11076	84	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11078	87	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11080	89	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11124	192	293	55	2025-09-23 20:13:14	2025-11-17 15:32:36
11082	90	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11084	91	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11086	92	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11087	293	244	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11088	244	293	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11091	293	233	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11092	233	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11093	293	266	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11094	266	293	88	2025-09-23 20:13:14	2025-09-23 20:13:14
11095	293	105	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11096	105	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11097	293	106	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11098	293	107	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11099	293	108	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11100	108	293	66	2025-09-23 20:13:14	2025-09-23 20:13:14
11101	293	109	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11102	293	110	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11103	293	111	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11104	111	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11105	293	112	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11106	112	293	66	2025-09-23 20:13:14	2025-09-23 20:13:14
11107	293	116	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11108	116	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11109	293	118	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11110	118	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11111	293	121	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11112	121	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11114	144	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11116	146	293	44	2025-09-23 20:13:14	2025-09-23 20:13:14
11117	293	267	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11118	267	293	66	2025-09-23 20:13:14	2025-09-23 20:13:14
11120	150	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11122	293	53	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11126	293	227	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11127	227	293	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11128	293	211	88	2025-09-23 20:13:14	2025-09-23 20:13:14
11129	293	234	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11130	234	293	66	2025-09-23 20:13:14	2025-09-23 20:13:14
11131	293	273	88	2025-09-23 20:13:14	2025-09-23 20:13:14
11132	273	293	55	2025-09-23 20:13:14	2025-09-23 20:13:14
11133	293	279	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11134	279	293	88	2025-09-23 20:13:14	2025-09-23 20:13:14
11135	293	277	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11136	277	293	66	2025-09-23 20:13:14	2025-09-23 20:13:14
11137	293	291	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11138	291	293	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11140	246	293	77	2025-09-23 20:13:14	2025-09-23 20:13:14
11141	293	283	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11049	293	243	88	2025-09-23 20:13:14	2025-09-23 20:13:39
11053	293	171	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11068	293	80	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11070	293	81	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11071	293	82	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11073	293	83	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11075	293	84	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11077	293	87	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11079	293	89	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11083	293	91	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11085	293	92	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11089	293	260	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11090	293	216	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11113	293	144	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11115	293	146	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11119	293	150	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11121	293	151	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11125	293	219	88	2025-09-23 20:13:14	2025-09-23 20:13:39
11139	293	246	88	2025-09-23 20:13:14	2025-09-23 20:13:39
11123	293	192	88	2025-09-23 20:13:14	2025-11-17 15:32:36
11142	283	293	88	2025-09-23 20:13:14	2025-09-23 20:13:14
11143	293	286	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11144	286	293	88	2025-09-23 20:13:14	2025-09-23 20:13:14
11145	293	287	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11146	287	293	88	2025-09-23 20:13:14	2025-09-23 20:13:14
11147	293	288	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11148	288	293	66	2025-09-23 20:13:14	2025-09-23 20:13:14
11149	293	289	100	2025-09-23 20:13:14	2025-09-23 20:13:14
11150	289	293	88	2025-09-23 20:13:14	2025-09-23 20:13:14
10982	293	174	66	2025-09-23 20:13:14	2025-09-23 20:13:38
10999	293	60	66	2025-09-23 20:13:14	2025-09-23 20:13:38
11041	293	168	88	2025-09-23 20:13:14	2025-09-23 20:13:39
11081	293	90	66	2025-09-23 20:13:14	2025-09-23 20:13:39
11377	74	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
11152	54	294	44	2025-09-24 08:03:35	2025-09-24 08:03:35
11154	165	294	44	2025-09-24 08:03:35	2025-09-24 08:03:35
11156	197	294	88	2025-09-24 08:03:35	2025-09-24 08:03:35
11158	204	294	88	2025-09-24 08:03:35	2025-09-24 08:03:35
11160	212	294	88	2025-09-24 08:03:35	2025-09-24 08:03:35
11162	230	294	88	2025-09-24 08:03:35	2025-09-24 08:03:35
11164	235	294	88	2025-09-24 08:03:35	2025-09-24 08:03:35
11166	241	294	88	2025-09-24 08:03:35	2025-09-24 08:03:35
11168	245	294	66	2025-09-24 08:03:35	2025-09-24 08:03:35
11170	247	294	77	2025-09-24 08:03:36	2025-09-24 08:03:36
11172	250	294	66	2025-09-24 08:03:36	2025-09-24 08:03:36
11174	255	294	88	2025-09-24 08:03:36	2025-09-24 08:03:36
11176	56	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11178	58	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11180	63	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11182	66	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11184	67	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11186	68	294	66	2025-09-24 08:03:36	2025-09-24 08:03:36
11188	69	294	66	2025-09-24 08:03:36	2025-09-24 08:03:36
11190	70	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11192	71	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11194	124	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11196	125	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11198	128	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11200	75	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11202	76	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11204	78	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11206	129	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11208	200	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11213	251	294	88	2025-09-24 08:03:36	2025-09-24 08:03:36
11215	131	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11217	133	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11219	135	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11221	142	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11223	237	294	66	2025-09-24 08:03:36	2025-09-24 08:03:36
11225	258	294	88	2025-09-24 08:03:36	2025-09-24 08:03:36
11227	242	294	66	2025-09-24 08:03:36	2025-09-24 08:03:36
11229	248	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11231	269	294	77	2025-09-24 08:03:36	2025-09-24 08:03:36
11233	177	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11237	209	294	77	2025-09-24 08:03:36	2025-09-24 08:03:36
11240	238	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11242	249	294	77	2025-09-24 08:03:36	2025-09-24 08:03:36
11244	252	294	88	2025-09-24 08:03:36	2025-09-24 08:03:36
11153	294	165	55	2025-09-24 08:03:35	2025-09-24 08:03:48
11155	294	197	77	2025-09-24 08:03:35	2025-09-24 08:03:48
11157	294	204	77	2025-09-24 08:03:35	2025-09-24 08:03:48
11159	294	212	77	2025-09-24 08:03:35	2025-09-24 08:03:48
11161	294	230	77	2025-09-24 08:03:35	2025-09-24 08:03:48
11163	294	235	77	2025-09-24 08:03:35	2025-09-24 08:03:48
11165	294	241	66	2025-09-24 08:03:35	2025-09-24 08:03:48
11167	294	245	88	2025-09-24 08:03:35	2025-09-24 08:03:48
11169	294	247	77	2025-09-24 08:03:36	2025-09-24 08:03:48
11173	294	255	77	2025-09-24 08:03:36	2025-09-24 08:03:48
11175	294	56	44	2025-09-24 08:03:36	2025-09-24 08:03:48
11177	294	58	44	2025-09-24 08:03:36	2025-09-24 08:03:48
11179	294	63	44	2025-09-24 08:03:36	2025-09-24 08:03:48
11181	294	66	44	2025-09-24 08:03:36	2025-09-24 08:03:48
11183	294	67	44	2025-09-24 08:03:36	2025-09-24 08:03:48
11185	294	68	44	2025-09-24 08:03:36	2025-09-24 08:03:48
11187	294	69	44	2025-09-24 08:03:36	2025-09-24 08:03:48
11189	294	70	44	2025-09-24 08:03:36	2025-09-24 08:03:48
11191	294	71	44	2025-09-24 08:03:36	2025-09-24 08:03:48
11193	294	124	55	2025-09-24 08:03:36	2025-09-24 08:03:48
11195	294	125	55	2025-09-24 08:03:36	2025-09-24 08:03:48
11197	294	128	55	2025-09-24 08:03:36	2025-09-24 08:03:48
11199	294	75	44	2025-09-24 08:03:36	2025-09-24 08:03:48
11201	294	76	44	2025-09-24 08:03:36	2025-09-24 08:03:48
11203	294	78	44	2025-09-24 08:03:36	2025-09-24 08:03:48
11205	294	129	55	2025-09-24 08:03:36	2025-09-24 08:03:48
11207	294	200	66	2025-09-24 08:03:36	2025-09-24 08:03:48
11210	294	50	77	2025-09-24 08:03:36	2025-09-24 08:03:48
11211	294	194	44	2025-09-24 08:03:36	2025-09-24 08:03:48
11212	294	251	77	2025-09-24 08:03:36	2025-09-24 08:03:48
11214	294	131	55	2025-09-24 08:03:36	2025-09-24 08:03:48
11216	294	133	55	2025-09-24 08:03:36	2025-09-24 08:03:48
11218	294	135	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11220	294	142	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11222	294	237	88	2025-09-24 08:03:36	2025-09-24 08:03:49
11224	294	258	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11226	294	242	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11228	294	248	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11230	294	269	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11232	294	177	44	2025-09-24 08:03:36	2025-09-24 08:03:49
11234	294	195	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11235	294	202	44	2025-09-24 08:03:36	2025-09-24 08:03:49
11236	294	209	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11238	294	215	44	2025-09-24 08:03:36	2025-09-24 08:03:49
11239	294	238	66	2025-09-24 08:03:36	2025-09-24 08:03:49
11243	294	252	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11246	264	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11248	270	294	66	2025-09-24 08:03:36	2025-09-24 08:03:36
11250	210	294	100	2025-09-24 08:03:36	2025-09-24 08:03:36
11252	191	294	66	2025-09-24 08:03:36	2025-09-24 08:03:36
11254	196	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11256	97	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11258	99	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11262	79	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11264	85	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11266	86	294	66	2025-09-24 08:03:36	2025-09-24 08:03:36
11268	88	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11270	93	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11273	226	294	88	2025-09-24 08:03:36	2025-09-24 08:03:36
11275	239	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11277	271	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11280	113	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11282	114	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11284	115	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11286	117	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11288	119	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11290	120	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11292	122	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11294	123	294	66	2025-09-24 08:03:36	2025-09-24 08:03:36
11296	145	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11298	143	294	66	2025-09-24 08:03:36	2025-09-24 08:03:36
11300	272	294	77	2025-09-24 08:03:36	2025-09-24 08:03:36
11302	139	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11304	140	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11306	141	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11308	147	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11311	149	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11313	152	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11315	153	294	44	2025-09-24 08:03:36	2025-09-24 08:03:36
11317	173	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11319	240	294	55	2025-09-24 08:03:36	2025-09-24 08:03:36
11321	254	294	77	2025-09-24 08:03:36	2025-09-24 08:03:36
11323	262	294	77	2025-09-24 08:03:36	2025-09-24 08:03:36
11326	276	294	88	2025-09-24 08:03:36	2025-09-24 08:03:36
11328	278	294	88	2025-09-24 08:03:36	2025-09-24 08:03:36
11332	284	294	77	2025-09-24 08:03:36	2025-09-24 08:03:36
11334	290	294	77	2025-09-24 08:03:36	2025-09-24 08:03:36
11336	285	294	88	2025-09-24 08:03:36	2025-09-24 08:03:36
11338	292	294	88	2025-09-24 08:03:36	2025-09-24 08:03:36
11340	293	294	88	2025-09-24 08:03:36	2025-09-24 08:03:36
11151	294	54	55	2025-09-24 08:03:35	2025-09-24 08:03:48
11171	294	250	88	2025-09-24 08:03:36	2025-09-24 08:03:48
11209	294	265	66	2025-09-24 08:03:36	2025-09-24 08:03:48
11241	294	249	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11245	294	264	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11247	294	270	88	2025-09-24 08:03:36	2025-09-24 08:03:49
11249	294	210	66	2025-09-24 08:03:36	2025-09-24 08:03:49
11251	294	191	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11253	294	196	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11255	294	97	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11257	294	99	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11259	294	100	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11260	294	102	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11261	294	79	44	2025-09-24 08:03:36	2025-09-24 08:03:49
11263	294	85	44	2025-09-24 08:03:36	2025-09-24 08:03:49
11265	294	86	44	2025-09-24 08:03:36	2025-09-24 08:03:49
11267	294	88	44	2025-09-24 08:03:36	2025-09-24 08:03:49
11269	294	93	44	2025-09-24 08:03:36	2025-09-24 08:03:49
11271	294	253	44	2025-09-24 08:03:36	2025-09-24 08:03:49
11272	294	226	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11274	294	239	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11276	294	271	66	2025-09-24 08:03:36	2025-09-24 08:03:49
11278	294	104	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11279	294	113	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11281	294	114	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11283	294	115	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11285	294	117	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11287	294	119	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11289	294	120	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11291	294	122	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11293	294	123	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11295	294	145	44	2025-09-24 08:03:36	2025-09-24 08:03:49
11297	294	143	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11299	294	272	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11301	294	139	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11303	294	140	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11305	294	141	55	2025-09-24 08:03:36	2025-09-24 08:03:49
11307	294	147	44	2025-09-24 08:03:36	2025-09-24 08:03:49
11309	294	148	44	2025-09-24 08:03:36	2025-09-24 08:03:49
11310	294	149	44	2025-09-24 08:03:36	2025-09-24 08:03:49
11312	294	152	44	2025-09-24 08:03:36	2025-09-24 08:03:49
11314	294	153	44	2025-09-24 08:03:36	2025-09-24 08:03:49
11316	294	173	44	2025-09-24 08:03:36	2025-09-24 08:03:49
11318	294	240	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11320	294	254	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11322	294	262	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11324	294	274	66	2025-09-24 08:03:36	2025-09-24 08:03:49
11325	294	276	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11327	294	278	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11329	294	280	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11331	294	284	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11333	294	290	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11335	294	285	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11337	294	292	77	2025-09-24 08:03:36	2025-09-24 08:03:49
11339	294	293	77	2025-09-24 08:03:36	2025-09-24 08:03:49
15450	77	325	66	2025-12-22 17:20:11	2025-12-22 17:20:11
11379	77	298	66	2025-09-25 07:52:16	2025-09-25 07:52:16
11380	298	130	77	2025-09-25 07:52:16	2025-09-25 07:52:16
11381	130	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
11330	280	294	100	2025-09-24 08:03:36	2025-12-11 16:49:08
11382	298	51	100	2025-09-25 07:52:16	2025-09-25 07:52:16
11383	51	298	88	2025-09-25 07:52:16	2025-09-25 07:52:16
11384	298	214	77	2025-09-25 07:52:16	2025-09-25 07:52:16
11386	298	231	100	2025-09-25 07:52:16	2025-09-25 07:52:16
11387	231	298	88	2025-09-25 07:52:16	2025-09-25 07:52:16
11388	298	132	77	2025-09-25 07:52:16	2025-09-25 07:52:16
11389	132	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
11390	298	134	77	2025-09-25 07:52:16	2025-09-25 07:52:16
11391	134	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
11392	298	136	77	2025-09-25 07:52:16	2025-09-25 07:52:16
11393	136	298	44	2025-09-25 07:52:16	2025-09-25 07:52:16
11394	298	137	77	2025-09-25 07:52:16	2025-09-25 07:52:16
11395	137	298	66	2025-09-25 07:52:16	2025-09-25 07:52:16
11396	298	138	77	2025-09-25 07:52:16	2025-09-25 07:52:16
11397	138	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
11398	298	224	100	2025-09-25 07:52:16	2025-09-25 07:52:16
11399	224	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
11401	168	298	100	2025-09-25 07:52:16	2025-09-25 07:52:16
11402	298	189	100	2025-09-25 07:52:16	2025-09-25 07:52:16
11403	189	298	44	2025-09-25 07:52:16	2025-09-25 07:52:16
11404	298	222	100	2025-09-25 07:52:16	2025-09-25 07:52:16
11405	222	298	66	2025-09-25 07:52:16	2025-09-25 07:52:16
11406	298	232	100	2025-09-25 07:52:16	2025-09-25 07:52:16
11407	232	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
11409	243	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
11410	298	261	100	2025-09-25 07:52:16	2025-09-25 07:52:16
11411	261	298	88	2025-09-25 07:52:16	2025-09-25 07:52:16
11413	171	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
11414	298	179	100	2025-09-25 07:52:16	2025-09-25 07:52:16
11415	179	298	66	2025-09-25 07:52:16	2025-09-25 07:52:16
11416	298	94	77	2025-09-25 07:52:16	2025-09-25 07:52:16
11417	94	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
11418	298	95	77	2025-09-25 07:52:16	2025-09-25 07:52:16
11419	95	298	44	2025-09-25 07:52:16	2025-09-25 07:52:16
11420	298	96	77	2025-09-25 07:52:16	2025-09-25 07:52:16
11421	96	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
11422	298	98	77	2025-09-25 07:52:16	2025-09-25 07:52:16
11423	98	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
11424	298	101	77	2025-09-25 07:52:16	2025-09-25 07:52:16
11425	298	103	77	2025-09-25 07:52:16	2025-09-25 07:52:16
11426	103	298	44	2025-09-25 07:52:16	2025-09-25 07:52:16
11428	80	298	44	2025-09-25 07:52:16	2025-09-25 07:52:16
11431	82	298	66	2025-09-25 07:52:16	2025-09-25 07:52:16
11433	83	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
11435	84	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
11437	87	298	44	2025-09-25 07:52:16	2025-09-25 07:52:16
11439	89	298	44	2025-09-25 07:52:16	2025-09-25 07:52:16
11441	90	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
11443	91	298	55	2025-09-25 07:52:16	2025-09-25 07:52:16
11445	92	298	44	2025-09-25 07:52:17	2025-09-25 07:52:17
11446	298	244	100	2025-09-25 07:52:17	2025-09-25 07:52:17
11447	244	298	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11450	298	233	100	2025-09-25 07:52:17	2025-09-25 07:52:17
11451	233	298	44	2025-09-25 07:52:17	2025-09-25 07:52:17
11452	298	266	100	2025-09-25 07:52:17	2025-09-25 07:52:17
11453	266	298	88	2025-09-25 07:52:17	2025-09-25 07:52:17
11454	298	105	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11455	105	298	44	2025-09-25 07:52:17	2025-09-25 07:52:17
11456	298	106	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11457	298	107	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11458	298	108	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11459	108	298	66	2025-09-25 07:52:17	2025-09-25 07:52:17
11460	298	109	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11461	298	110	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11462	298	111	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11463	111	298	44	2025-09-25 07:52:17	2025-09-25 07:52:17
11464	298	112	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11465	112	298	66	2025-09-25 07:52:17	2025-09-25 07:52:17
11466	298	116	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11467	116	298	44	2025-09-25 07:52:17	2025-09-25 07:52:17
11468	298	118	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11469	118	298	44	2025-09-25 07:52:17	2025-09-25 07:52:17
11470	298	121	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11471	121	298	44	2025-09-25 07:52:17	2025-09-25 07:52:17
11473	144	298	55	2025-09-25 07:52:17	2025-09-25 07:52:17
11475	146	298	44	2025-09-25 07:52:17	2025-09-25 07:52:17
11476	298	267	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11477	267	298	66	2025-09-25 07:52:17	2025-09-25 07:52:17
11479	150	298	55	2025-09-25 07:52:17	2025-09-25 07:52:17
11481	298	53	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11485	298	227	100	2025-09-25 07:52:17	2025-09-25 07:52:17
11486	227	298	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11487	298	211	88	2025-09-25 07:52:17	2025-09-25 07:52:17
11488	298	234	100	2025-09-25 07:52:17	2025-09-25 07:52:17
11400	298	168	88	2025-09-25 07:52:16	2025-09-25 07:52:29
11408	298	243	88	2025-09-25 07:52:16	2025-09-25 07:52:29
11412	298	171	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11427	298	80	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11429	298	81	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11430	298	82	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11432	298	83	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11434	298	84	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11436	298	87	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11440	298	90	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11442	298	91	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11444	298	92	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11448	298	260	66	2025-09-25 07:52:17	2025-09-25 07:52:29
11449	298	216	66	2025-09-25 07:52:17	2025-09-25 07:52:29
11472	298	144	66	2025-09-25 07:52:17	2025-09-25 07:52:29
11474	298	146	66	2025-09-25 07:52:17	2025-09-25 07:52:29
11478	298	150	66	2025-09-25 07:52:17	2025-09-25 07:52:29
11480	298	151	66	2025-09-25 07:52:17	2025-09-25 07:52:29
11484	298	219	88	2025-09-25 07:52:17	2025-09-25 07:52:29
11483	192	298	55	2025-09-25 07:52:17	2025-11-17 15:32:36
11482	298	192	88	2025-09-25 07:52:17	2025-11-17 15:32:36
11489	234	298	66	2025-09-25 07:52:17	2025-09-25 07:52:17
11490	298	273	88	2025-09-25 07:52:17	2025-09-25 07:52:17
11491	273	298	55	2025-09-25 07:52:17	2025-09-25 07:52:17
11492	298	279	100	2025-09-25 07:52:17	2025-09-25 07:52:17
11493	279	298	88	2025-09-25 07:52:17	2025-09-25 07:52:17
11494	298	277	100	2025-09-25 07:52:17	2025-09-25 07:52:17
11495	277	298	66	2025-09-25 07:52:17	2025-09-25 07:52:17
11496	298	291	100	2025-09-25 07:52:17	2025-09-25 07:52:17
11497	291	298	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11499	246	298	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11500	298	283	100	2025-09-25 07:52:17	2025-09-25 07:52:17
11501	283	298	88	2025-09-25 07:52:17	2025-09-25 07:52:17
11502	298	286	100	2025-09-25 07:52:17	2025-09-25 07:52:17
11503	286	298	88	2025-09-25 07:52:17	2025-09-25 07:52:17
11504	298	287	100	2025-09-25 07:52:17	2025-09-25 07:52:17
11505	287	298	88	2025-09-25 07:52:17	2025-09-25 07:52:17
11506	298	288	100	2025-09-25 07:52:17	2025-09-25 07:52:17
11507	288	298	66	2025-09-25 07:52:17	2025-09-25 07:52:17
11508	298	289	100	2025-09-25 07:52:17	2025-09-25 07:52:17
11509	289	298	88	2025-09-25 07:52:17	2025-09-25 07:52:17
11510	298	294	100	2025-09-25 07:52:17	2025-09-25 07:52:17
11511	294	298	77	2025-09-25 07:52:17	2025-09-25 07:52:17
11341	298	174	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11352	298	55	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11354	298	57	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11356	298	59	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11358	298	60	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11360	298	61	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11362	298	62	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11363	298	64	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11364	298	65	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11366	298	72	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11368	298	73	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11376	298	74	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11378	298	77	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11385	298	176	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11438	298	89	66	2025-09-25 07:52:16	2025-09-25 07:52:29
11498	298	246	88	2025-09-25 07:52:17	2025-09-25 07:52:29
11512	299	54	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11513	54	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11514	299	165	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11515	165	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11516	299	197	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11517	197	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11518	299	204	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11519	204	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11520	299	212	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11521	212	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11522	299	230	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11523	230	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11524	299	235	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11525	235	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
15451	325	130	77	2025-12-22 17:20:11	2025-12-22 17:20:11
11527	241	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11528	299	245	100	2025-11-10 12:43:33	2025-11-10 12:43:33
11529	245	299	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11530	299	247	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11531	247	299	77	2025-11-10 12:43:33	2025-11-10 12:43:33
11532	299	250	100	2025-11-10 12:43:33	2025-11-10 12:43:33
11533	250	299	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11534	299	255	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11535	255	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11537	56	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11539	58	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11541	63	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11543	66	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11545	67	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11547	68	299	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11549	69	299	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11551	70	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11553	71	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11554	299	124	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11555	124	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11556	299	125	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11557	125	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11558	299	128	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11559	128	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11561	75	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11563	76	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11565	78	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11566	299	129	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11567	129	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11568	299	200	77	2025-11-10 12:43:33	2025-11-10 12:43:33
11569	200	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11570	299	265	77	2025-11-10 12:43:33	2025-11-10 12:43:33
11571	299	50	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11573	299	251	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11574	251	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11575	299	131	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11576	131	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11577	299	133	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11578	133	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11579	299	135	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11580	135	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11536	299	56	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11538	299	58	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11540	299	63	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11542	299	66	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11544	299	67	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11546	299	68	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11548	299	69	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11550	299	70	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11560	299	75	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11562	299	76	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11564	299	78	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11572	299	194	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11581	299	142	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11582	142	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11583	299	237	100	2025-11-10 12:43:33	2025-11-10 12:43:33
11584	237	299	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11585	299	258	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11586	258	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11587	299	242	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11588	242	299	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11589	299	248	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11590	248	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11591	299	269	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11592	269	299	77	2025-11-10 12:43:33	2025-11-10 12:43:33
15452	130	325	55	2025-12-22 17:20:11	2025-12-22 17:20:11
11594	177	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11595	299	195	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11597	299	209	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11598	209	299	77	2025-11-10 12:43:33	2025-11-10 12:43:33
11600	299	238	77	2025-11-10 12:43:33	2025-11-10 12:43:33
11601	238	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11602	299	249	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11603	249	299	77	2025-11-10 12:43:33	2025-11-10 12:43:33
11604	299	252	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11605	252	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11606	299	264	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11607	264	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11608	299	270	100	2025-11-10 12:43:33	2025-11-10 12:43:33
11609	270	299	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11611	210	299	100	2025-11-10 12:43:33	2025-11-10 12:43:33
11612	299	191	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11613	191	299	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11614	299	196	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11615	196	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11616	299	97	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11617	97	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11618	299	99	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11619	99	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11620	299	100	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11621	299	102	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11623	79	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11625	85	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11627	86	299	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11629	88	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11631	93	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11633	299	226	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11634	226	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11636	239	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11637	299	271	77	2025-11-10 12:43:33	2025-11-10 12:43:33
11638	271	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11639	299	104	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11640	299	113	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11641	113	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11642	299	114	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11643	114	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11644	299	115	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11645	115	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11646	299	117	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11647	117	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11648	299	119	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11649	119	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11650	299	120	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11651	120	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11652	299	122	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11653	122	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11654	299	123	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11655	123	299	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11657	145	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11658	299	143	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11659	143	299	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11660	299	272	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11661	272	299	77	2025-11-10 12:43:33	2025-11-10 12:43:33
11662	299	139	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11663	139	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11664	299	140	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11665	140	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11666	299	141	66	2025-11-10 12:43:33	2025-11-10 12:43:33
11667	141	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11669	147	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11672	149	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11674	152	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11676	153	299	44	2025-11-10 12:43:33	2025-11-10 12:43:33
11678	173	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11679	299	240	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11680	240	299	55	2025-11-10 12:43:33	2025-11-10 12:43:33
11681	299	254	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11682	254	299	77	2025-11-10 12:43:33	2025-11-10 12:43:33
11683	299	262	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11684	262	299	77	2025-11-10 12:43:33	2025-11-10 12:43:33
11685	299	274	77	2025-11-10 12:43:33	2025-11-10 12:43:33
11686	299	276	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11687	276	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11596	299	202	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11599	299	215	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11610	299	210	77	2025-11-10 12:43:33	2025-11-10 12:43:38
11622	299	79	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11624	299	85	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11626	299	86	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11628	299	88	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11630	299	93	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11632	299	253	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11656	299	145	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11668	299	147	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11670	299	148	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11671	299	149	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11673	299	152	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11675	299	153	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11677	299	173	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11688	299	278	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11689	278	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11690	299	280	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11692	299	284	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11693	284	299	77	2025-11-10 12:43:33	2025-11-10 12:43:33
11694	299	290	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11695	290	299	77	2025-11-10 12:43:33	2025-11-10 12:43:33
11696	299	285	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11697	285	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11698	299	292	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11699	292	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11700	299	293	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11701	293	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11702	299	298	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11703	298	299	88	2025-11-10 12:43:33	2025-11-10 12:43:33
11526	299	241	77	2025-11-10 12:43:33	2025-11-10 12:43:38
11552	299	71	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11593	299	177	55	2025-11-10 12:43:33	2025-11-10 12:43:38
11635	299	239	88	2025-11-10 12:43:33	2025-11-10 12:43:38
11704	229	54	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11705	54	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11706	229	165	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11707	165	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11708	229	197	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11709	197	229	88	2025-11-10 13:02:38	2025-11-10 13:02:38
11710	229	204	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11711	204	229	88	2025-11-10 13:02:38	2025-11-10 13:02:38
11712	229	212	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11713	212	229	88	2025-11-10 13:02:38	2025-11-10 13:02:38
11714	229	230	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11715	230	229	88	2025-11-10 13:02:38	2025-11-10 13:02:38
11716	229	235	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11717	235	229	88	2025-11-10 13:02:38	2025-11-10 13:02:38
15453	325	51	100	2025-12-22 17:20:11	2025-12-22 17:20:11
11719	241	229	88	2025-11-10 13:02:38	2025-11-10 13:02:38
11720	229	245	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11721	245	229	66	2025-11-10 13:02:38	2025-11-10 13:02:38
11722	229	247	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11723	247	229	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11724	229	250	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11725	250	229	66	2025-11-10 13:02:38	2025-11-10 13:02:38
11726	229	255	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11727	255	229	88	2025-11-10 13:02:38	2025-11-10 13:02:38
11729	56	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11731	58	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11733	63	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11735	66	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11737	67	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11739	68	229	66	2025-11-10 13:02:38	2025-11-10 13:02:38
11741	69	229	66	2025-11-10 13:02:38	2025-11-10 13:02:38
11743	70	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11745	71	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11746	229	124	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11747	124	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11748	229	125	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11749	125	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11750	229	128	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11751	128	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11753	75	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11755	76	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11757	78	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11758	229	129	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11759	129	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11760	229	200	88	2025-11-10 13:02:38	2025-11-10 13:02:38
11761	200	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11762	229	265	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11763	229	50	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11765	229	251	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11766	251	229	88	2025-11-10 13:02:38	2025-11-10 13:02:38
11767	229	131	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11768	131	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11769	229	133	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11770	133	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11771	229	135	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11772	135	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11773	229	142	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11774	142	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11775	229	237	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11776	237	229	66	2025-11-10 13:02:38	2025-11-10 13:02:38
11777	229	258	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11778	258	229	88	2025-11-10 13:02:38	2025-11-10 13:02:38
11779	229	242	88	2025-11-10 13:02:38	2025-11-10 13:02:38
11780	242	229	66	2025-11-10 13:02:38	2025-11-10 13:02:38
11781	229	248	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11782	248	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11783	229	269	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11784	269	229	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11786	177	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11787	229	195	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11789	229	209	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11790	209	229	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11728	229	56	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11730	229	58	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11732	229	63	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11734	229	66	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11736	229	67	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11738	229	68	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11740	229	69	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11742	229	70	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11744	229	71	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11754	229	76	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11756	229	78	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11764	229	194	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11785	229	177	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11788	229	202	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11691	280	299	100	2025-11-10 12:43:33	2025-12-11 16:49:08
15454	51	325	88	2025-12-22 17:20:11	2025-12-22 17:20:11
11792	229	238	88	2025-11-10 13:02:38	2025-11-10 13:02:38
11793	238	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11794	229	249	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11795	249	229	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11796	229	252	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11797	252	229	88	2025-11-10 13:02:38	2025-11-10 13:02:38
11798	229	264	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11799	264	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11800	229	270	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11801	270	229	66	2025-11-10 13:02:38	2025-11-10 13:02:38
11803	210	229	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11804	229	191	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11805	191	229	66	2025-11-10 13:02:38	2025-11-10 13:02:38
11806	229	196	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11807	196	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11808	229	97	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11809	97	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11810	229	99	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11811	99	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11812	229	100	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11813	229	102	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11815	79	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11817	85	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11819	86	229	66	2025-11-10 13:02:38	2025-11-10 13:02:38
11821	88	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11823	93	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11825	229	226	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11826	226	229	88	2025-11-10 13:02:38	2025-11-10 13:02:38
11828	239	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11829	229	271	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11830	271	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11831	229	104	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11832	229	113	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11833	113	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11834	229	114	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11835	114	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11836	229	115	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11837	115	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11838	229	117	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11839	117	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11840	229	119	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11841	119	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11842	229	120	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11843	120	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11844	229	122	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11845	122	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11846	229	123	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11847	123	229	66	2025-11-10 13:02:38	2025-11-10 13:02:38
11849	145	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11850	229	143	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11851	143	229	66	2025-11-10 13:02:38	2025-11-10 13:02:38
11852	229	272	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11853	272	229	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11854	229	139	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11855	139	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11856	229	140	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11857	140	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11858	229	141	77	2025-11-10 13:02:38	2025-11-10 13:02:38
11859	141	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11861	147	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11864	149	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11866	152	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11868	153	229	44	2025-11-10 13:02:38	2025-11-10 13:02:38
11870	173	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11871	229	240	100	2025-11-10 13:02:38	2025-11-10 13:02:38
11872	240	229	55	2025-11-10 13:02:38	2025-11-10 13:02:38
11873	229	254	100	2025-11-10 13:02:39	2025-11-10 13:02:39
11874	254	229	77	2025-11-10 13:02:39	2025-11-10 13:02:39
11875	229	262	100	2025-11-10 13:02:39	2025-11-10 13:02:39
11876	262	229	77	2025-11-10 13:02:39	2025-11-10 13:02:39
11877	229	274	77	2025-11-10 13:02:39	2025-11-10 13:02:39
11878	229	276	100	2025-11-10 13:02:39	2025-11-10 13:02:39
11879	276	229	88	2025-11-10 13:02:39	2025-11-10 13:02:39
11880	229	278	100	2025-11-10 13:02:39	2025-11-10 13:02:39
11881	278	229	88	2025-11-10 13:02:39	2025-11-10 13:02:39
11884	229	284	100	2025-11-10 13:02:39	2025-11-10 13:02:39
11885	284	229	77	2025-11-10 13:02:39	2025-11-10 13:02:39
11886	229	290	100	2025-11-10 13:02:39	2025-11-10 13:02:39
11887	290	229	77	2025-11-10 13:02:39	2025-11-10 13:02:39
11888	229	285	100	2025-11-10 13:02:39	2025-11-10 13:02:39
11889	285	229	88	2025-11-10 13:02:39	2025-11-10 13:02:39
11890	229	292	100	2025-11-10 13:02:39	2025-11-10 13:02:39
11891	292	229	88	2025-11-10 13:02:39	2025-11-10 13:02:39
11892	229	293	100	2025-11-10 13:02:39	2025-11-10 13:02:39
11893	293	229	88	2025-11-10 13:02:39	2025-11-10 13:02:39
11894	229	298	100	2025-11-10 13:02:39	2025-11-10 13:02:39
11895	298	229	88	2025-11-10 13:02:39	2025-11-10 13:02:39
11718	229	241	88	2025-11-10 13:02:38	2025-11-10 13:02:42
11752	229	75	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11802	229	210	88	2025-11-10 13:02:38	2025-11-10 13:02:42
11814	229	79	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11816	229	85	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11818	229	86	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11820	229	88	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11822	229	93	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11824	229	253	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11827	229	239	88	2025-11-10 13:02:38	2025-11-10 13:02:42
11848	229	145	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11862	229	148	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11863	229	149	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11865	229	152	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11867	229	153	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11869	229	173	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11883	280	229	100	2025-11-10 13:02:39	2025-12-11 16:49:08
11882	229	280	88	2025-11-10 13:02:39	2025-12-11 16:49:08
11791	229	215	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11860	229	147	66	2025-11-10 13:02:38	2025-11-10 13:02:42
11896	300	54	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11897	54	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
11898	300	165	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11899	165	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
11900	300	197	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11901	197	300	88	2025-11-11 06:22:03	2025-11-11 06:22:03
11902	300	204	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11903	204	300	88	2025-11-11 06:22:03	2025-11-11 06:22:03
11904	300	212	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11905	212	300	88	2025-11-11 06:22:03	2025-11-11 06:22:03
11906	300	230	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11907	230	300	88	2025-11-11 06:22:03	2025-11-11 06:22:03
11908	300	235	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11909	235	300	88	2025-11-11 06:22:03	2025-11-11 06:22:03
15455	325	214	77	2025-12-22 17:20:12	2025-12-22 17:20:12
11911	241	300	88	2025-11-11 06:22:03	2025-11-11 06:22:03
11912	300	245	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11913	245	300	66	2025-11-11 06:22:03	2025-11-11 06:22:03
11914	300	247	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11915	247	300	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11916	300	250	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11917	250	300	66	2025-11-11 06:22:03	2025-11-11 06:22:03
11918	300	255	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11919	255	300	88	2025-11-11 06:22:03	2025-11-11 06:22:03
11921	56	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
11923	58	300	55	2025-11-11 06:22:03	2025-11-11 06:22:03
11925	63	300	55	2025-11-11 06:22:03	2025-11-11 06:22:03
11927	66	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
11929	67	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
11931	68	300	66	2025-11-11 06:22:03	2025-11-11 06:22:03
11933	69	300	66	2025-11-11 06:22:03	2025-11-11 06:22:03
11935	70	300	55	2025-11-11 06:22:03	2025-11-11 06:22:03
11937	71	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
11938	300	124	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11939	124	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
11940	300	125	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11941	125	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
11942	300	128	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11943	128	300	55	2025-11-11 06:22:03	2025-11-11 06:22:03
11945	75	300	55	2025-11-11 06:22:03	2025-11-11 06:22:03
11947	76	300	55	2025-11-11 06:22:03	2025-11-11 06:22:03
11949	78	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
11950	300	129	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11951	129	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
11952	300	200	88	2025-11-11 06:22:03	2025-11-11 06:22:03
11953	200	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
11954	300	265	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11955	300	50	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11957	300	251	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11958	251	300	88	2025-11-11 06:22:03	2025-11-11 06:22:03
11959	300	131	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11960	131	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
11961	300	133	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11962	133	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
11963	300	135	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11964	135	300	55	2025-11-11 06:22:03	2025-11-11 06:22:03
11965	300	142	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11966	142	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
11967	300	237	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11968	237	300	66	2025-11-11 06:22:03	2025-11-11 06:22:03
11969	300	258	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11970	258	300	88	2025-11-11 06:22:03	2025-11-11 06:22:03
11971	300	242	88	2025-11-11 06:22:03	2025-11-11 06:22:03
11972	242	300	66	2025-11-11 06:22:03	2025-11-11 06:22:03
11973	300	248	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11974	248	300	55	2025-11-11 06:22:03	2025-11-11 06:22:03
11975	300	269	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11976	269	300	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11978	177	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
11979	300	195	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11981	300	209	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11982	209	300	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11984	300	238	88	2025-11-11 06:22:03	2025-11-11 06:22:03
11985	238	300	55	2025-11-11 06:22:03	2025-11-11 06:22:03
11986	300	249	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11987	249	300	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11988	300	252	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11989	252	300	88	2025-11-11 06:22:03	2025-11-11 06:22:03
11990	300	264	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11991	264	300	55	2025-11-11 06:22:03	2025-11-11 06:22:03
11992	300	270	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11993	270	300	66	2025-11-11 06:22:03	2025-11-11 06:22:03
11995	210	300	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11996	300	191	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11997	191	300	66	2025-11-11 06:22:03	2025-11-11 06:22:03
11998	300	196	100	2025-11-11 06:22:03	2025-11-11 06:22:03
11999	196	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
12000	300	97	77	2025-11-11 06:22:03	2025-11-11 06:22:03
11920	300	56	66	2025-11-11 06:22:03	2025-11-11 06:22:09
11922	300	58	66	2025-11-11 06:22:03	2025-11-11 06:22:09
11924	300	63	66	2025-11-11 06:22:03	2025-11-11 06:22:09
11926	300	66	66	2025-11-11 06:22:03	2025-11-11 06:22:09
11928	300	67	66	2025-11-11 06:22:03	2025-11-11 06:22:09
11930	300	68	66	2025-11-11 06:22:03	2025-11-11 06:22:09
11932	300	69	66	2025-11-11 06:22:03	2025-11-11 06:22:09
11934	300	70	66	2025-11-11 06:22:03	2025-11-11 06:22:09
11936	300	71	66	2025-11-11 06:22:03	2025-11-11 06:22:09
11946	300	76	66	2025-11-11 06:22:03	2025-11-11 06:22:10
11948	300	78	66	2025-11-11 06:22:03	2025-11-11 06:22:10
11956	300	194	66	2025-11-11 06:22:03	2025-11-11 06:22:10
11977	300	177	66	2025-11-11 06:22:03	2025-11-11 06:22:10
11980	300	202	66	2025-11-11 06:22:03	2025-11-11 06:22:10
11983	300	215	66	2025-11-11 06:22:03	2025-11-11 06:22:10
11994	300	210	88	2025-11-11 06:22:03	2025-11-11 06:22:10
12001	97	300	55	2025-11-11 06:22:03	2025-11-11 06:22:03
12002	300	99	77	2025-11-11 06:22:03	2025-11-11 06:22:03
12003	99	300	55	2025-11-11 06:22:03	2025-11-11 06:22:03
12004	300	100	77	2025-11-11 06:22:03	2025-11-11 06:22:03
12005	300	102	77	2025-11-11 06:22:03	2025-11-11 06:22:03
12007	79	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
12009	85	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
12011	86	300	66	2025-11-11 06:22:03	2025-11-11 06:22:03
12013	88	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
12015	93	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
12017	300	226	100	2025-11-11 06:22:03	2025-11-11 06:22:03
12018	226	300	88	2025-11-11 06:22:03	2025-11-11 06:22:03
12020	239	300	55	2025-11-11 06:22:03	2025-11-11 06:22:03
12021	300	271	77	2025-11-11 06:22:03	2025-11-11 06:22:03
12022	271	300	44	2025-11-11 06:22:03	2025-11-11 06:22:03
12023	300	104	77	2025-11-11 06:22:03	2025-11-11 06:22:03
12024	300	113	77	2025-11-11 06:22:03	2025-11-11 06:22:03
12025	113	300	55	2025-11-11 06:22:03	2025-11-11 06:22:03
12026	300	114	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12027	114	300	44	2025-11-11 06:22:04	2025-11-11 06:22:04
12028	300	115	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12029	115	300	44	2025-11-11 06:22:04	2025-11-11 06:22:04
12030	300	117	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12031	117	300	44	2025-11-11 06:22:04	2025-11-11 06:22:04
12032	300	119	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12033	119	300	55	2025-11-11 06:22:04	2025-11-11 06:22:04
12034	300	120	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12035	120	300	55	2025-11-11 06:22:04	2025-11-11 06:22:04
12036	300	122	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12037	122	300	44	2025-11-11 06:22:04	2025-11-11 06:22:04
12038	300	123	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12039	123	300	66	2025-11-11 06:22:04	2025-11-11 06:22:04
12041	145	300	55	2025-11-11 06:22:04	2025-11-11 06:22:04
12042	300	143	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12043	143	300	66	2025-11-11 06:22:04	2025-11-11 06:22:04
12044	300	272	100	2025-11-11 06:22:04	2025-11-11 06:22:04
12045	272	300	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12046	300	139	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12047	139	300	44	2025-11-11 06:22:04	2025-11-11 06:22:04
12048	300	140	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12049	140	300	55	2025-11-11 06:22:04	2025-11-11 06:22:04
12050	300	141	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12051	141	300	55	2025-11-11 06:22:04	2025-11-11 06:22:04
12053	147	300	55	2025-11-11 06:22:04	2025-11-11 06:22:04
12056	149	300	44	2025-11-11 06:22:04	2025-11-11 06:22:04
12058	152	300	44	2025-11-11 06:22:04	2025-11-11 06:22:04
12060	153	300	44	2025-11-11 06:22:04	2025-11-11 06:22:04
12062	173	300	55	2025-11-11 06:22:04	2025-11-11 06:22:04
12063	300	240	100	2025-11-11 06:22:04	2025-11-11 06:22:04
12064	240	300	55	2025-11-11 06:22:04	2025-11-11 06:22:04
12065	300	254	100	2025-11-11 06:22:04	2025-11-11 06:22:04
12066	254	300	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12067	300	262	100	2025-11-11 06:22:04	2025-11-11 06:22:04
12068	262	300	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12069	300	274	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12070	300	276	100	2025-11-11 06:22:04	2025-11-11 06:22:04
12071	276	300	88	2025-11-11 06:22:04	2025-11-11 06:22:04
12072	300	278	100	2025-11-11 06:22:04	2025-11-11 06:22:04
12073	278	300	88	2025-11-11 06:22:04	2025-11-11 06:22:04
12076	300	284	100	2025-11-11 06:22:04	2025-11-11 06:22:04
12077	284	300	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12078	300	290	100	2025-11-11 06:22:04	2025-11-11 06:22:04
12079	290	300	77	2025-11-11 06:22:04	2025-11-11 06:22:04
12080	300	285	100	2025-11-11 06:22:04	2025-11-11 06:22:04
12081	285	300	88	2025-11-11 06:22:04	2025-11-11 06:22:04
12082	300	292	100	2025-11-11 06:22:04	2025-11-11 06:22:04
12083	292	300	88	2025-11-11 06:22:04	2025-11-11 06:22:04
12084	300	293	100	2025-11-11 06:22:04	2025-11-11 06:22:04
12085	293	300	88	2025-11-11 06:22:04	2025-11-11 06:22:04
12086	300	298	100	2025-11-11 06:22:04	2025-11-11 06:22:04
12087	298	300	88	2025-11-11 06:22:04	2025-11-11 06:22:04
11910	300	241	88	2025-11-11 06:22:03	2025-11-11 06:22:09
11944	300	75	66	2025-11-11 06:22:03	2025-11-11 06:22:10
12006	300	79	66	2025-11-11 06:22:03	2025-11-11 06:22:10
12008	300	85	66	2025-11-11 06:22:03	2025-11-11 06:22:10
12010	300	86	66	2025-11-11 06:22:03	2025-11-11 06:22:10
12012	300	88	66	2025-11-11 06:22:03	2025-11-11 06:22:10
12014	300	93	66	2025-11-11 06:22:03	2025-11-11 06:22:10
12016	300	253	66	2025-11-11 06:22:03	2025-11-11 06:22:10
12019	300	239	88	2025-11-11 06:22:03	2025-11-11 06:22:10
12040	300	145	66	2025-11-11 06:22:04	2025-11-11 06:22:10
12052	300	147	66	2025-11-11 06:22:04	2025-11-11 06:22:10
12054	300	148	66	2025-11-11 06:22:04	2025-11-11 06:22:10
12055	300	149	66	2025-11-11 06:22:04	2025-11-11 06:22:10
12057	300	152	66	2025-11-11 06:22:04	2025-11-11 06:22:10
12059	300	153	66	2025-11-11 06:22:04	2025-11-11 06:22:10
12061	300	173	66	2025-11-11 06:22:04	2025-11-11 06:22:10
12089	174	302	55	2025-11-14 07:50:14	2025-11-14 07:50:14
12090	302	181	77	2025-11-14 07:50:14	2025-11-14 07:50:14
12091	302	193	100	2025-11-14 07:50:14	2025-11-14 07:50:14
12092	193	302	66	2025-11-14 07:50:14	2025-11-14 07:50:14
12093	302	223	100	2025-11-14 07:50:14	2025-11-14 07:50:14
12094	223	302	55	2025-11-14 07:50:14	2025-11-14 07:50:14
12095	302	263	100	2025-11-14 07:50:14	2025-11-14 07:50:14
12096	263	302	77	2025-11-14 07:50:14	2025-11-14 07:50:14
12097	302	268	100	2025-11-14 07:50:14	2025-11-14 07:50:14
12098	268	302	88	2025-11-14 07:50:14	2025-11-14 07:50:14
12100	55	302	44	2025-11-14 07:50:14	2025-11-14 07:50:14
12102	57	302	44	2025-11-14 07:50:14	2025-11-14 07:50:14
12104	59	302	44	2025-11-14 07:50:14	2025-11-14 07:50:14
12099	302	55	66	2025-11-14 07:50:14	2025-11-14 07:50:17
12101	302	57	66	2025-11-14 07:50:14	2025-11-14 07:50:17
12103	302	59	66	2025-11-14 07:50:14	2025-11-14 07:50:17
12075	280	300	100	2025-11-11 06:22:04	2025-12-11 16:49:08
12074	300	280	88	2025-11-11 06:22:04	2025-12-11 16:49:08
12106	60	302	44	2025-11-14 07:50:14	2025-11-14 07:50:14
12108	61	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12112	65	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12114	72	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12116	73	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12117	302	126	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12118	126	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12119	302	127	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12120	127	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12121	302	166	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12122	166	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12124	74	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12126	77	302	66	2025-11-14 07:50:15	2025-11-14 07:50:15
12127	302	130	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12128	130	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12129	302	51	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12130	51	302	88	2025-11-14 07:50:15	2025-11-14 07:50:15
12131	302	214	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12133	302	231	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12134	231	302	88	2025-11-14 07:50:15	2025-11-14 07:50:15
12135	302	132	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12136	132	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12137	302	134	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12138	134	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12139	302	136	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12140	136	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12141	302	137	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12142	137	302	66	2025-11-14 07:50:15	2025-11-14 07:50:15
12143	302	138	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12144	138	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12145	302	224	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12146	224	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12148	168	302	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12149	302	189	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12150	189	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12151	302	222	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12152	222	302	66	2025-11-14 07:50:15	2025-11-14 07:50:15
12153	302	232	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12154	232	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12156	243	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12157	302	261	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12158	261	302	88	2025-11-14 07:50:15	2025-11-14 07:50:15
12160	171	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12161	302	179	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12162	179	302	66	2025-11-14 07:50:15	2025-11-14 07:50:15
12163	302	94	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12164	94	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12165	302	95	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12166	95	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12167	302	96	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12168	96	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12169	302	98	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12170	98	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12171	302	101	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12172	302	103	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12173	103	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12175	80	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12178	82	302	66	2025-11-14 07:50:15	2025-11-14 07:50:15
12180	83	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12182	84	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12184	87	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12186	89	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12188	90	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12190	91	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12192	92	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12193	302	244	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12194	244	302	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12197	302	233	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12198	233	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12199	302	266	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12200	266	302	88	2025-11-14 07:50:15	2025-11-14 07:50:15
12201	302	105	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12202	105	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12203	302	106	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12204	302	107	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12205	302	108	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12206	108	302	66	2025-11-14 07:50:15	2025-11-14 07:50:15
12207	302	109	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12208	302	110	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12209	302	111	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12210	111	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12211	302	112	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12107	302	61	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12109	302	62	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12110	302	64	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12111	302	65	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12113	302	72	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12115	302	73	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12123	302	74	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12125	302	77	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12132	302	176	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12155	302	243	88	2025-11-14 07:50:15	2025-11-14 07:50:17
12159	302	171	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12174	302	80	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12176	302	81	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12177	302	82	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12179	302	83	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12181	302	84	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12183	302	87	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12185	302	89	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12187	302	90	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12189	302	91	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12191	302	92	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12195	302	260	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12196	302	216	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12212	112	302	66	2025-11-14 07:50:15	2025-11-14 07:50:15
12213	302	116	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12214	116	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12215	302	118	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12216	118	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12217	302	121	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12218	121	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12220	144	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12222	146	302	44	2025-11-14 07:50:15	2025-11-14 07:50:15
12223	302	267	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12224	267	302	66	2025-11-14 07:50:15	2025-11-14 07:50:15
12226	150	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12228	302	53	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12232	302	227	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12233	227	302	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12234	302	211	88	2025-11-14 07:50:15	2025-11-14 07:50:15
12235	302	234	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12236	234	302	66	2025-11-14 07:50:15	2025-11-14 07:50:15
12237	302	273	88	2025-11-14 07:50:15	2025-11-14 07:50:15
12238	273	302	55	2025-11-14 07:50:15	2025-11-14 07:50:15
12239	302	279	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12240	279	302	88	2025-11-14 07:50:15	2025-11-14 07:50:15
12241	302	277	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12242	277	302	66	2025-11-14 07:50:15	2025-11-14 07:50:15
12243	302	291	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12244	291	302	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12246	246	302	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12247	302	283	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12248	283	302	88	2025-11-14 07:50:15	2025-11-14 07:50:15
12249	302	286	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12250	286	302	88	2025-11-14 07:50:15	2025-11-14 07:50:15
12251	302	287	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12252	287	302	88	2025-11-14 07:50:15	2025-11-14 07:50:15
12253	302	288	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12254	288	302	66	2025-11-14 07:50:15	2025-11-14 07:50:15
12255	302	289	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12256	289	302	88	2025-11-14 07:50:15	2025-11-14 07:50:15
12257	302	294	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12258	294	302	77	2025-11-14 07:50:15	2025-11-14 07:50:15
12259	302	299	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12260	299	302	88	2025-11-14 07:50:15	2025-11-14 07:50:15
12261	302	229	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12262	229	302	88	2025-11-14 07:50:15	2025-11-14 07:50:15
12263	302	300	100	2025-11-14 07:50:15	2025-11-14 07:50:15
12264	300	302	88	2025-11-14 07:50:15	2025-11-14 07:50:15
12088	302	174	66	2025-11-14 07:50:14	2025-11-14 07:50:17
12105	302	60	66	2025-11-14 07:50:14	2025-11-14 07:50:17
12147	302	168	88	2025-11-14 07:50:15	2025-11-14 07:50:17
12219	302	144	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12221	302	146	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12225	302	150	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12227	302	151	66	2025-11-14 07:50:15	2025-11-14 07:50:17
12231	302	219	88	2025-11-14 07:50:15	2025-11-14 07:50:17
12245	302	246	88	2025-11-14 07:50:15	2025-11-14 07:50:17
12265	303	54	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12266	54	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12267	303	165	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12268	165	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12269	303	197	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12270	197	303	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12271	303	204	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12272	204	303	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12273	303	212	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12274	212	303	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12275	303	230	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12276	230	303	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12277	303	235	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12278	235	303	88	2025-11-15 08:47:00	2025-11-15 08:47:00
15457	325	231	100	2025-12-22 17:20:12	2025-12-22 17:20:12
12280	241	303	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12281	303	245	100	2025-11-15 08:47:00	2025-11-15 08:47:00
12282	245	303	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12283	303	247	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12284	247	303	77	2025-11-15 08:47:00	2025-11-15 08:47:00
12285	303	250	100	2025-11-15 08:47:00	2025-11-15 08:47:00
12286	250	303	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12287	303	255	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12288	255	303	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12290	56	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12292	58	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12294	63	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12296	66	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12298	67	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12300	68	303	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12302	69	303	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12304	70	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12306	71	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12307	303	124	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12308	124	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12309	303	125	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12310	125	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12311	303	128	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12312	128	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12314	75	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12289	303	56	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12291	303	58	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12293	303	63	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12297	303	67	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12299	303	68	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12301	303	69	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12303	303	70	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12305	303	71	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12313	303	75	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12315	303	76	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12230	192	302	55	2025-11-14 07:50:15	2025-11-17 15:32:36
12229	302	192	88	2025-11-14 07:50:15	2025-11-17 15:32:36
12316	76	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
15458	231	325	88	2025-12-22 17:20:12	2025-12-22 17:20:12
12318	78	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12319	303	129	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12320	129	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12321	303	200	77	2025-11-15 08:47:00	2025-11-15 08:47:00
12322	200	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12323	303	265	77	2025-11-15 08:47:00	2025-11-15 08:47:00
12324	303	50	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12326	303	251	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12327	251	303	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12328	303	131	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12329	131	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12330	303	133	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12331	133	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12332	303	135	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12333	135	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12334	303	142	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12335	142	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12336	303	237	100	2025-11-15 08:47:00	2025-11-15 08:47:00
12337	237	303	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12338	303	258	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12339	258	303	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12340	303	242	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12341	242	303	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12342	303	248	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12343	248	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12344	303	269	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12345	269	303	77	2025-11-15 08:47:00	2025-11-15 08:47:00
12347	177	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12348	303	195	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12350	303	209	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12351	209	303	77	2025-11-15 08:47:00	2025-11-15 08:47:00
12353	303	238	77	2025-11-15 08:47:00	2025-11-15 08:47:00
12354	238	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12355	303	249	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12356	249	303	77	2025-11-15 08:47:00	2025-11-15 08:47:00
12357	303	252	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12358	252	303	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12359	303	264	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12360	264	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12361	303	270	100	2025-11-15 08:47:00	2025-11-15 08:47:00
12362	270	303	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12364	210	303	100	2025-11-15 08:47:00	2025-11-15 08:47:00
12365	303	191	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12366	191	303	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12367	303	196	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12368	196	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12369	303	97	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12370	97	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12371	303	99	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12372	99	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12373	303	100	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12374	303	102	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12376	79	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12378	85	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12380	86	303	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12382	88	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12384	93	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12386	303	226	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12387	226	303	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12389	239	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12390	303	271	77	2025-11-15 08:47:00	2025-11-15 08:47:00
12391	271	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12392	303	104	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12393	303	113	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12394	113	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12395	303	114	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12396	114	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12397	303	115	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12398	115	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12399	303	117	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12400	117	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12401	303	119	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12402	119	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12403	303	120	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12404	120	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12405	303	122	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12406	122	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12407	303	123	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12408	123	303	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12410	145	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12411	303	143	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12412	143	303	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12413	303	272	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12414	272	303	77	2025-11-15 08:47:00	2025-11-15 08:47:00
12415	303	139	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12416	139	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12417	303	140	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12418	140	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12419	303	141	66	2025-11-15 08:47:00	2025-11-15 08:47:00
12420	141	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12422	147	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12325	303	194	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12346	303	177	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12349	303	202	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12352	303	215	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12363	303	210	77	2025-11-15 08:47:00	2025-11-15 08:47:09
12375	303	79	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12377	303	85	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12379	303	86	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12381	303	88	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12385	303	253	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12388	303	239	88	2025-11-15 08:47:00	2025-11-15 08:47:09
12409	303	145	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12421	303	147	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12425	149	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12427	152	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12429	153	303	44	2025-11-15 08:47:00	2025-11-15 08:47:00
12431	173	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12432	303	240	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12433	240	303	55	2025-11-15 08:47:00	2025-11-15 08:47:00
12434	303	254	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12435	254	303	77	2025-11-15 08:47:00	2025-11-15 08:47:00
12436	303	262	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12437	262	303	77	2025-11-15 08:47:00	2025-11-15 08:47:00
12438	303	274	77	2025-11-15 08:47:00	2025-11-15 08:47:00
12439	303	276	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12440	276	303	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12441	303	278	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12442	278	303	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12443	303	280	88	2025-11-15 08:47:00	2025-11-15 08:47:00
12445	303	284	88	2025-11-15 08:47:01	2025-11-15 08:47:01
12446	284	303	77	2025-11-15 08:47:01	2025-11-15 08:47:01
12447	303	290	88	2025-11-15 08:47:01	2025-11-15 08:47:01
12448	290	303	77	2025-11-15 08:47:01	2025-11-15 08:47:01
12449	303	285	88	2025-11-15 08:47:01	2025-11-15 08:47:01
12450	285	303	88	2025-11-15 08:47:01	2025-11-15 08:47:01
12451	303	292	88	2025-11-15 08:47:01	2025-11-15 08:47:01
12452	292	303	88	2025-11-15 08:47:01	2025-11-15 08:47:01
12453	303	293	88	2025-11-15 08:47:01	2025-11-15 08:47:01
12454	293	303	88	2025-11-15 08:47:01	2025-11-15 08:47:01
12455	303	298	88	2025-11-15 08:47:01	2025-11-15 08:47:01
12456	298	303	88	2025-11-15 08:47:01	2025-11-15 08:47:01
12457	303	302	88	2025-11-15 08:47:01	2025-11-15 08:47:01
12458	302	303	88	2025-11-15 08:47:01	2025-11-15 08:47:01
12279	303	241	77	2025-11-15 08:47:00	2025-11-15 08:47:09
12295	303	66	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12317	303	78	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12383	303	93	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12423	303	148	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12424	303	149	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12426	303	152	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12428	303	153	55	2025-11-15 08:47:00	2025-11-15 08:47:09
12430	303	173	55	2025-11-15 08:47:00	2025-11-15 08:47:09
15459	325	132	77	2025-12-22 17:20:12	2025-12-22 17:20:12
12460	174	304	55	2025-11-17 05:13:42	2025-11-17 05:13:42
12461	304	181	77	2025-11-17 05:13:42	2025-11-17 05:13:42
12462	304	193	100	2025-11-17 05:13:42	2025-11-17 05:13:42
12463	193	304	66	2025-11-17 05:13:42	2025-11-17 05:13:42
12464	304	223	100	2025-11-17 05:13:42	2025-11-17 05:13:42
12465	223	304	55	2025-11-17 05:13:42	2025-11-17 05:13:42
12466	304	263	100	2025-11-17 05:13:42	2025-11-17 05:13:42
12467	263	304	77	2025-11-17 05:13:42	2025-11-17 05:13:42
12468	304	268	100	2025-11-17 05:13:42	2025-11-17 05:13:42
12469	268	304	88	2025-11-17 05:13:42	2025-11-17 05:13:42
12471	55	304	44	2025-11-17 05:13:42	2025-11-17 05:13:42
12473	57	304	44	2025-11-17 05:13:42	2025-11-17 05:13:42
12475	59	304	44	2025-11-17 05:13:42	2025-11-17 05:13:42
12477	60	304	44	2025-11-17 05:13:42	2025-11-17 05:13:42
12479	61	304	55	2025-11-17 05:13:42	2025-11-17 05:13:42
12483	65	304	44	2025-11-17 05:13:42	2025-11-17 05:13:42
12485	72	304	44	2025-11-17 05:13:42	2025-11-17 05:13:42
12487	73	304	55	2025-11-17 05:13:42	2025-11-17 05:13:42
12488	304	126	77	2025-11-17 05:13:42	2025-11-17 05:13:42
12489	126	304	55	2025-11-17 05:13:42	2025-11-17 05:13:42
12490	304	127	77	2025-11-17 05:13:42	2025-11-17 05:13:42
12491	127	304	55	2025-11-17 05:13:42	2025-11-17 05:13:42
12492	304	166	77	2025-11-17 05:13:42	2025-11-17 05:13:42
12493	166	304	44	2025-11-17 05:13:43	2025-11-17 05:13:43
12495	74	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12497	77	304	66	2025-11-17 05:13:43	2025-11-17 05:13:43
12498	304	130	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12499	130	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12500	304	51	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12501	51	304	88	2025-11-17 05:13:43	2025-11-17 05:13:43
12502	304	214	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12504	304	231	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12505	231	304	88	2025-11-17 05:13:43	2025-11-17 05:13:43
12506	304	132	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12507	132	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12508	304	134	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12509	134	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12510	304	136	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12511	136	304	44	2025-11-17 05:13:43	2025-11-17 05:13:43
12512	304	137	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12513	137	304	66	2025-11-17 05:13:43	2025-11-17 05:13:43
12514	304	138	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12515	138	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12516	304	224	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12517	224	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12519	168	304	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12520	304	189	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12521	189	304	44	2025-11-17 05:13:43	2025-11-17 05:13:43
12522	304	222	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12523	222	304	66	2025-11-17 05:13:43	2025-11-17 05:13:43
12524	304	232	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12525	232	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12470	304	55	66	2025-11-17 05:13:42	2025-11-17 05:13:44
12472	304	57	66	2025-11-17 05:13:42	2025-11-17 05:13:44
12474	304	59	66	2025-11-17 05:13:42	2025-11-17 05:13:44
12476	304	60	66	2025-11-17 05:13:42	2025-11-17 05:13:44
12480	304	62	66	2025-11-17 05:13:42	2025-11-17 05:13:44
12481	304	64	66	2025-11-17 05:13:42	2025-11-17 05:13:44
12482	304	65	66	2025-11-17 05:13:42	2025-11-17 05:13:44
12484	304	72	66	2025-11-17 05:13:42	2025-11-17 05:13:44
12486	304	73	66	2025-11-17 05:13:42	2025-11-17 05:13:44
12494	304	74	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12496	304	77	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12503	304	176	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12518	304	168	88	2025-11-17 05:13:43	2025-11-17 05:13:44
12444	280	303	100	2025-11-15 08:47:01	2025-12-11 16:49:08
15460	132	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
12527	243	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12528	304	261	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12529	261	304	88	2025-11-17 05:13:43	2025-11-17 05:13:43
12531	171	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12532	304	179	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12533	179	304	66	2025-11-17 05:13:43	2025-11-17 05:13:43
12534	304	94	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12535	94	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12536	304	95	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12537	95	304	44	2025-11-17 05:13:43	2025-11-17 05:13:43
12538	304	96	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12539	96	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12540	304	98	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12541	98	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12542	304	101	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12543	304	103	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12544	103	304	44	2025-11-17 05:13:43	2025-11-17 05:13:43
12546	80	304	44	2025-11-17 05:13:43	2025-11-17 05:13:43
12549	82	304	66	2025-11-17 05:13:43	2025-11-17 05:13:43
12551	83	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12553	84	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12555	87	304	44	2025-11-17 05:13:43	2025-11-17 05:13:43
12557	89	304	44	2025-11-17 05:13:43	2025-11-17 05:13:43
12559	90	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12561	91	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12563	92	304	44	2025-11-17 05:13:43	2025-11-17 05:13:43
12564	304	244	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12565	244	304	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12568	304	233	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12569	233	304	44	2025-11-17 05:13:43	2025-11-17 05:13:43
12570	304	266	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12571	266	304	88	2025-11-17 05:13:43	2025-11-17 05:13:43
12572	304	105	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12573	105	304	44	2025-11-17 05:13:43	2025-11-17 05:13:43
12574	304	106	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12575	304	107	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12576	304	108	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12577	108	304	66	2025-11-17 05:13:43	2025-11-17 05:13:43
12578	304	109	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12579	304	110	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12580	304	111	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12581	111	304	44	2025-11-17 05:13:43	2025-11-17 05:13:43
12582	304	112	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12583	112	304	66	2025-11-17 05:13:43	2025-11-17 05:13:43
12584	304	116	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12585	116	304	44	2025-11-17 05:13:43	2025-11-17 05:13:43
12586	304	118	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12587	118	304	44	2025-11-17 05:13:43	2025-11-17 05:13:43
12588	304	121	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12589	121	304	44	2025-11-17 05:13:43	2025-11-17 05:13:43
12591	144	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12593	146	304	44	2025-11-17 05:13:43	2025-11-17 05:13:43
12594	304	267	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12595	267	304	66	2025-11-17 05:13:43	2025-11-17 05:13:43
12597	150	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12599	304	53	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12603	304	227	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12604	227	304	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12605	304	211	88	2025-11-17 05:13:43	2025-11-17 05:13:43
12606	304	234	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12607	234	304	66	2025-11-17 05:13:43	2025-11-17 05:13:43
12608	304	273	88	2025-11-17 05:13:43	2025-11-17 05:13:43
12609	273	304	55	2025-11-17 05:13:43	2025-11-17 05:13:43
12610	304	279	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12611	279	304	88	2025-11-17 05:13:43	2025-11-17 05:13:43
12612	304	277	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12613	277	304	66	2025-11-17 05:13:43	2025-11-17 05:13:43
12614	304	291	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12615	291	304	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12617	246	304	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12618	304	283	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12619	283	304	88	2025-11-17 05:13:43	2025-11-17 05:13:43
12620	304	286	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12621	286	304	88	2025-11-17 05:13:43	2025-11-17 05:13:43
12622	304	287	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12623	287	304	88	2025-11-17 05:13:43	2025-11-17 05:13:43
12624	304	288	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12625	288	304	66	2025-11-17 05:13:43	2025-11-17 05:13:43
12626	304	289	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12627	289	304	88	2025-11-17 05:13:43	2025-11-17 05:13:43
12628	304	294	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12629	294	304	77	2025-11-17 05:13:43	2025-11-17 05:13:43
12630	304	299	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12631	299	304	88	2025-11-17 05:13:43	2025-11-17 05:13:43
12632	304	229	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12530	304	171	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12545	304	80	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12547	304	81	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12548	304	82	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12550	304	83	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12552	304	84	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12554	304	87	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12556	304	89	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12558	304	90	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12562	304	92	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12566	304	260	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12567	304	216	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12590	304	144	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12592	304	146	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12596	304	150	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12598	304	151	66	2025-11-17 05:13:43	2025-11-17 05:13:45
12602	304	219	88	2025-11-17 05:13:43	2025-11-17 05:13:45
12616	304	246	88	2025-11-17 05:13:43	2025-11-17 05:13:45
12601	192	304	55	2025-11-17 05:13:43	2025-11-17 15:32:36
12600	304	192	88	2025-11-17 05:13:43	2025-11-17 15:32:36
12633	229	304	88	2025-11-17 05:13:43	2025-11-17 05:13:43
12634	304	300	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12635	300	304	88	2025-11-17 05:13:43	2025-11-17 05:13:43
12636	304	303	100	2025-11-17 05:13:43	2025-11-17 05:13:43
12637	303	304	88	2025-11-17 05:13:43	2025-11-17 05:13:43
12459	304	174	66	2025-11-17 05:13:42	2025-11-17 05:13:44
12478	304	61	66	2025-11-17 05:13:42	2025-11-17 05:13:44
12526	304	243	88	2025-11-17 05:13:43	2025-11-17 05:13:44
12560	304	91	66	2025-11-17 05:13:43	2025-11-17 05:13:44
12639	174	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12640	305	181	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12641	305	193	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12642	193	305	66	2025-11-17 14:08:54	2025-11-17 14:08:54
12643	305	223	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12644	223	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12645	305	263	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12646	263	305	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12647	305	268	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12648	268	305	88	2025-11-17 14:08:54	2025-11-17 14:08:54
12650	55	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12652	57	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12654	59	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12656	60	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12658	61	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12662	65	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12664	72	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12666	73	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12667	305	126	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12668	126	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12669	305	127	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12670	127	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12671	305	166	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12672	166	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12674	74	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12676	77	305	66	2025-11-17 14:08:54	2025-11-17 14:08:54
12677	305	130	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12678	130	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12679	305	51	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12680	51	305	88	2025-11-17 14:08:54	2025-11-17 14:08:54
12681	305	214	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12683	305	231	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12684	231	305	88	2025-11-17 14:08:54	2025-11-17 14:08:54
12685	305	132	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12686	132	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12687	305	134	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12688	134	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12689	305	136	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12690	136	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12691	305	137	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12692	137	305	66	2025-11-17 14:08:54	2025-11-17 14:08:54
12693	305	138	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12694	138	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12695	305	224	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12696	224	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12698	168	305	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12699	305	189	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12700	189	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12701	305	222	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12702	222	305	66	2025-11-17 14:08:54	2025-11-17 14:08:54
12703	305	232	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12704	232	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12706	243	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12707	305	261	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12708	261	305	88	2025-11-17 14:08:54	2025-11-17 14:08:54
12710	171	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12711	305	179	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12712	179	305	66	2025-11-17 14:08:54	2025-11-17 14:08:54
12713	305	94	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12714	94	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12715	305	95	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12716	95	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12717	305	96	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12718	96	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12719	305	98	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12720	98	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12721	305	101	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12722	305	103	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12723	103	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12725	80	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12728	82	305	66	2025-11-17 14:08:54	2025-11-17 14:08:54
12730	83	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12732	84	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12734	87	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12649	305	55	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12651	305	57	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12653	305	59	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12655	305	60	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12657	305	61	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12659	305	62	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12660	305	64	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12661	305	65	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12663	305	72	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12673	305	74	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12675	305	77	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12682	305	176	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12697	305	168	88	2025-11-17 14:08:54	2025-11-17 14:08:56
12705	305	243	88	2025-11-17 14:08:54	2025-11-17 14:08:56
12709	305	171	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12724	305	80	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12726	305	81	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12727	305	82	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12729	305	83	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12731	305	84	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12733	305	87	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12735	305	89	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12736	89	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12738	90	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12740	91	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12742	92	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12743	305	244	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12744	244	305	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12747	305	233	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12748	233	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12749	305	266	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12750	266	305	88	2025-11-17 14:08:54	2025-11-17 14:08:54
12751	305	105	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12752	105	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12753	305	106	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12754	305	107	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12755	305	108	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12756	108	305	66	2025-11-17 14:08:54	2025-11-17 14:08:54
12757	305	109	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12758	305	110	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12759	305	111	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12760	111	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12761	305	112	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12762	112	305	66	2025-11-17 14:08:54	2025-11-17 14:08:54
12763	305	116	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12764	116	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12765	305	118	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12766	118	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12767	305	121	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12768	121	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12770	144	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12772	146	305	44	2025-11-17 14:08:54	2025-11-17 14:08:54
12773	305	267	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12774	267	305	66	2025-11-17 14:08:54	2025-11-17 14:08:54
12776	150	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12778	305	53	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12782	305	227	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12783	227	305	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12784	305	211	88	2025-11-17 14:08:54	2025-11-17 14:08:54
12785	305	234	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12786	234	305	66	2025-11-17 14:08:54	2025-11-17 14:08:54
12787	305	273	88	2025-11-17 14:08:54	2025-11-17 14:08:54
12788	273	305	55	2025-11-17 14:08:54	2025-11-17 14:08:54
12789	305	279	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12790	279	305	88	2025-11-17 14:08:54	2025-11-17 14:08:54
12791	305	277	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12792	277	305	66	2025-11-17 14:08:54	2025-11-17 14:08:54
12793	305	291	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12794	291	305	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12796	246	305	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12797	305	283	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12798	283	305	88	2025-11-17 14:08:54	2025-11-17 14:08:54
12799	305	286	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12800	286	305	88	2025-11-17 14:08:54	2025-11-17 14:08:54
12801	305	287	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12802	287	305	88	2025-11-17 14:08:54	2025-11-17 14:08:54
12803	305	288	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12804	288	305	66	2025-11-17 14:08:54	2025-11-17 14:08:54
12805	305	289	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12806	289	305	88	2025-11-17 14:08:54	2025-11-17 14:08:54
12807	305	294	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12808	294	305	77	2025-11-17 14:08:54	2025-11-17 14:08:54
12809	305	299	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12810	299	305	88	2025-11-17 14:08:54	2025-11-17 14:08:54
12811	305	229	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12812	229	305	88	2025-11-17 14:08:54	2025-11-17 14:08:54
12813	305	300	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12814	300	305	88	2025-11-17 14:08:54	2025-11-17 14:08:54
12815	305	303	100	2025-11-17 14:08:54	2025-11-17 14:08:54
12816	303	305	88	2025-11-17 14:08:54	2025-11-17 14:08:54
12638	305	174	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12665	305	73	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12737	305	90	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12739	305	91	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12741	305	92	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12745	305	260	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12746	305	216	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12769	305	144	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12771	305	146	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12775	305	150	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12777	305	151	66	2025-11-17 14:08:54	2025-11-17 14:08:56
12781	305	219	88	2025-11-17 14:08:54	2025-11-17 14:08:56
12795	305	246	88	2025-11-17 14:08:54	2025-11-17 14:08:56
15461	325	134	77	2025-12-22 17:20:12	2025-12-22 17:20:12
12818	174	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12819	306	181	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12820	306	193	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12821	193	306	66	2025-11-17 14:27:14	2025-11-17 14:27:14
12822	306	223	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12823	223	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12824	306	263	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12825	263	306	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12826	306	268	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12827	268	306	88	2025-11-17 14:27:14	2025-11-17 14:27:14
12829	55	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12831	57	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12833	59	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12835	60	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12837	61	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12828	306	55	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12830	306	57	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12832	306	59	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12834	306	60	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12836	306	61	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12838	306	62	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12839	306	64	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12780	192	305	55	2025-11-17 14:08:54	2025-11-17 15:32:36
12779	305	192	88	2025-11-17 14:08:54	2025-11-17 15:32:36
15462	134	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
12841	65	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12843	72	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12845	73	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12846	306	126	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12847	126	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12848	306	127	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12849	127	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12850	306	166	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12851	166	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12853	74	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12855	77	306	66	2025-11-17 14:27:14	2025-11-17 14:27:14
12856	306	130	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12857	130	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12858	306	51	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12859	51	306	88	2025-11-17 14:27:14	2025-11-17 14:27:14
12860	306	214	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12862	306	231	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12863	231	306	88	2025-11-17 14:27:14	2025-11-17 14:27:14
12864	306	132	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12865	132	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12866	306	134	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12867	134	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12868	306	136	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12869	136	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12870	306	137	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12871	137	306	66	2025-11-17 14:27:14	2025-11-17 14:27:14
12872	306	138	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12873	138	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12874	306	224	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12875	224	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12877	168	306	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12878	306	189	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12879	189	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12880	306	222	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12881	222	306	66	2025-11-17 14:27:14	2025-11-17 14:27:14
12882	306	232	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12883	232	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12885	243	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12886	306	261	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12887	261	306	88	2025-11-17 14:27:14	2025-11-17 14:27:14
12889	171	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12890	306	179	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12891	179	306	66	2025-11-17 14:27:14	2025-11-17 14:27:14
12892	306	94	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12893	94	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12894	306	95	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12895	95	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12896	306	96	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12897	96	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12898	306	98	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12899	98	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12900	306	101	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12901	306	103	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12902	103	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12904	80	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12907	82	306	66	2025-11-17 14:27:14	2025-11-17 14:27:14
12909	83	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12911	84	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12913	87	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12915	89	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12917	90	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12919	91	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12921	92	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12922	306	244	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12923	244	306	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12926	306	233	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12927	233	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12928	306	266	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12929	266	306	88	2025-11-17 14:27:14	2025-11-17 14:27:14
12930	306	105	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12931	105	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12932	306	106	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12933	306	107	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12934	306	108	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12935	108	306	66	2025-11-17 14:27:14	2025-11-17 14:27:14
12936	306	109	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12937	306	110	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12938	306	111	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12939	111	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12940	306	112	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12941	112	306	66	2025-11-17 14:27:14	2025-11-17 14:27:14
12942	306	116	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12943	116	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12944	306	118	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12945	118	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12946	306	121	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12842	306	72	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12844	306	73	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12852	306	74	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12854	306	77	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12861	306	176	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12876	306	168	88	2025-11-17 14:27:14	2025-11-17 14:27:15
12884	306	243	88	2025-11-17 14:27:14	2025-11-17 14:27:15
12888	306	171	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12903	306	80	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12906	306	82	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12908	306	83	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12910	306	84	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12912	306	87	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12914	306	89	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12916	306	90	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12918	306	91	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12920	306	92	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12924	306	260	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12925	306	216	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12947	121	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12949	144	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12951	146	306	44	2025-11-17 14:27:14	2025-11-17 14:27:14
12952	306	267	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12953	267	306	66	2025-11-17 14:27:14	2025-11-17 14:27:14
12955	150	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12957	306	53	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12961	306	227	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12962	227	306	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12963	306	211	88	2025-11-17 14:27:14	2025-11-17 14:27:14
12964	306	234	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12965	234	306	66	2025-11-17 14:27:14	2025-11-17 14:27:14
12966	306	273	88	2025-11-17 14:27:14	2025-11-17 14:27:14
12967	273	306	55	2025-11-17 14:27:14	2025-11-17 14:27:14
12968	306	279	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12969	279	306	88	2025-11-17 14:27:14	2025-11-17 14:27:14
12970	306	277	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12971	277	306	66	2025-11-17 14:27:14	2025-11-17 14:27:14
12972	306	291	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12973	291	306	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12975	246	306	77	2025-11-17 14:27:14	2025-11-17 14:27:14
12976	306	283	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12977	283	306	88	2025-11-17 14:27:14	2025-11-17 14:27:14
12978	306	286	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12979	286	306	88	2025-11-17 14:27:14	2025-11-17 14:27:14
12980	306	287	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12981	287	306	88	2025-11-17 14:27:14	2025-11-17 14:27:14
12982	306	288	100	2025-11-17 14:27:14	2025-11-17 14:27:14
12983	288	306	66	2025-11-17 14:27:15	2025-11-17 14:27:15
12984	306	289	100	2025-11-17 14:27:15	2025-11-17 14:27:15
12985	289	306	88	2025-11-17 14:27:15	2025-11-17 14:27:15
12986	306	294	100	2025-11-17 14:27:15	2025-11-17 14:27:15
12987	294	306	77	2025-11-17 14:27:15	2025-11-17 14:27:15
12988	306	299	100	2025-11-17 14:27:15	2025-11-17 14:27:15
12989	299	306	88	2025-11-17 14:27:15	2025-11-17 14:27:15
12990	306	229	100	2025-11-17 14:27:15	2025-11-17 14:27:15
12991	229	306	88	2025-11-17 14:27:15	2025-11-17 14:27:15
12992	306	300	100	2025-11-17 14:27:15	2025-11-17 14:27:15
12993	300	306	88	2025-11-17 14:27:15	2025-11-17 14:27:15
12994	306	303	100	2025-11-17 14:27:15	2025-11-17 14:27:15
12995	303	306	88	2025-11-17 14:27:15	2025-11-17 14:27:15
12817	306	174	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12840	306	65	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12905	306	81	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12948	306	144	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12950	306	146	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12954	306	150	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12956	306	151	66	2025-11-17 14:27:14	2025-11-17 14:27:15
12960	306	219	88	2025-11-17 14:27:14	2025-11-17 14:27:15
12974	306	246	88	2025-11-17 14:27:14	2025-11-17 14:27:15
12996	54	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
12997	165	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
1113	192	197	55	2025-05-29 17:27:21	2025-11-17 15:32:36
1395	192	204	55	2025-05-31 06:16:32	2025-11-17 15:32:36
1853	192	212	55	2025-06-01 17:27:34	2025-11-17 15:32:36
2820	192	230	55	2025-06-05 07:04:14	2025-11-17 15:32:36
3345	192	235	55	2025-06-05 10:31:02	2025-11-17 15:32:36
4043	192	241	44	2025-06-06 14:00:40	2025-11-17 15:32:36
4654	192	247	55	2025-06-23 21:08:35	2025-11-17 15:32:36
5048	250	192	77	2025-07-09 07:19:01	2025-11-17 15:32:36
5816	192	255	55	2025-07-11 12:55:51	2025-11-17 15:32:36
12998	56	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
12999	58	192	55	2025-11-17 15:32:36	2025-11-17 15:32:36
13000	63	192	55	2025-11-17 15:32:36	2025-11-17 15:32:36
13001	66	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13002	67	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13003	68	192	66	2025-11-17 15:32:36	2025-11-17 15:32:36
13004	69	192	66	2025-11-17 15:32:36	2025-11-17 15:32:36
13005	70	192	55	2025-11-17 15:32:36	2025-11-17 15:32:36
13006	71	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13007	124	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13008	125	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13009	128	192	55	2025-11-17 15:32:36	2025-11-17 15:32:36
13010	75	192	55	2025-11-17 15:32:36	2025-11-17 15:32:36
13011	76	192	55	2025-11-17 15:32:36	2025-11-17 15:32:36
13012	78	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13013	129	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
1209	192	200	55	2025-05-30 11:28:51	2025-11-17 15:32:36
6733	192	265	77	2025-07-12 08:56:44	2025-11-17 15:32:36
746	192	50	66	2025-05-28 17:54:29	2025-11-17 15:32:36
908	194	192	44	2025-05-29 08:26:10	2025-11-17 15:32:36
5190	192	251	55	2025-07-09 10:45:10	2025-11-17 15:32:36
13014	131	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13015	133	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13016	135	192	55	2025-11-17 15:32:36	2025-11-17 15:32:36
13017	142	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
3478	237	192	66	2025-06-05 12:06:28	2025-11-17 15:32:36
5956	192	258	55	2025-07-11 14:47:31	2025-11-17 15:32:36
4179	192	242	55	2025-06-07 12:10:40	2025-11-17 15:32:36
4795	192	248	66	2025-06-27 14:54:03	2025-11-17 15:32:36
7528	192	269	55	2025-07-13 14:01:15	2025-11-17 15:32:36
13018	177	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
977	192	195	44	2025-05-29 08:29:34	2025-11-17 15:32:36
1301	202	192	44	2025-05-30 12:33:44	2025-11-17 15:32:36
1576	192	209	55	2025-05-31 09:09:46	2025-11-17 15:32:36
3615	192	238	44	2025-06-05 14:30:38	2025-11-17 15:32:36
3614	238	192	55	2025-06-05 14:30:38	2025-11-17 15:32:36
4936	192	249	66	2025-06-28 13:19:22	2025-11-17 15:32:36
4935	249	192	88	2025-06-28 13:19:22	2025-11-17 15:32:36
5330	192	252	55	2025-07-10 06:23:58	2025-11-17 15:32:36
753	192	191	55	2025-05-28 17:54:29	2025-11-17 15:32:36
13019	97	192	55	2025-11-17 15:32:36	2025-11-17 15:32:36
13020	99	192	55	2025-11-17 15:32:36	2025-11-17 15:32:36
13021	79	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13022	85	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
12958	306	192	88	2025-11-17 14:27:14	2025-11-17 15:32:36
13023	86	192	66	2025-11-17 15:32:36	2025-11-17 15:32:36
13024	88	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13025	93	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
2620	192	226	55	2025-06-04 12:14:58	2025-11-17 15:32:36
7834	192	271	55	2025-07-13 20:30:10	2025-11-17 15:32:36
13026	113	192	55	2025-11-17 15:32:36	2025-11-17 15:32:36
13027	114	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13028	115	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13029	117	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13030	119	192	55	2025-11-17 15:32:36	2025-11-17 15:32:36
13031	120	192	55	2025-11-17 15:32:36	2025-11-17 15:32:36
13032	122	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13033	123	192	66	2025-11-17 15:32:36	2025-11-17 15:32:36
13034	145	192	55	2025-11-17 15:32:36	2025-11-17 15:32:36
13035	143	192	66	2025-11-17 15:32:36	2025-11-17 15:32:36
7987	192	272	55	2025-07-13 21:05:51	2025-11-17 15:32:36
13036	139	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13037	140	192	55	2025-11-17 15:32:36	2025-11-17 15:32:36
13038	141	192	55	2025-11-17 15:32:36	2025-11-17 15:32:36
13039	147	192	55	2025-11-17 15:32:36	2025-11-17 15:32:36
13040	149	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13041	152	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
13042	153	192	44	2025-11-17 15:32:36	2025-11-17 15:32:36
3885	192	240	77	2025-06-06 11:41:53	2025-11-17 15:32:36
5676	192	254	55	2025-07-11 11:30:37	2025-11-17 15:32:36
5675	254	192	77	2025-07-11 11:30:37	2025-11-17 15:32:36
8311	192	274	66	2025-07-16 07:37:57	2025-11-17 15:32:36
8797	192	278	55	2025-07-19 08:28:35	2025-11-17 15:32:36
10086	192	284	55	2025-08-22 08:59:30	2025-11-17 15:32:36
10786	192	285	55	2025-09-16 20:31:46	2025-11-17 15:32:36
10955	192	292	55	2025-09-23 19:14:40	2025-11-17 15:32:36
12959	192	306	55	2025-11-17 14:27:14	2025-11-17 15:32:36
13044	174	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13049	223	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13051	263	307	77	2025-11-18 06:29:12	2025-11-18 06:29:12
13053	268	307	88	2025-11-18 06:29:12	2025-11-18 06:29:12
13055	55	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13057	57	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13059	59	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13061	60	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13063	61	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13067	65	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13069	72	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13071	73	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13073	126	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13075	127	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13077	166	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13079	74	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13081	77	307	66	2025-11-18 06:29:12	2025-11-18 06:29:12
13083	130	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13085	51	307	88	2025-11-18 06:29:12	2025-11-18 06:29:12
13089	231	307	88	2025-11-18 06:29:12	2025-11-18 06:29:12
13091	132	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13093	134	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13095	136	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13097	137	307	66	2025-11-18 06:29:12	2025-11-18 06:29:12
13099	138	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13101	224	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13103	168	307	100	2025-11-18 06:29:12	2025-11-18 06:29:12
13107	222	307	66	2025-11-18 06:29:12	2025-11-18 06:29:12
13111	243	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13113	261	307	88	2025-11-18 06:29:12	2025-11-18 06:29:12
13115	171	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13117	179	307	66	2025-11-18 06:29:12	2025-11-18 06:29:12
13058	307	59	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13060	307	60	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13062	307	61	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13064	307	62	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13065	307	64	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13066	307	65	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13068	307	72	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13072	307	126	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13074	307	127	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13082	307	130	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13086	307	214	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13090	307	132	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13102	307	168	88	2025-11-18 06:29:12	2025-11-18 06:29:17
13112	307	261	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13116	307	179	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13046	307	193	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13050	307	263	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13047	193	307	77	2025-11-18 06:29:12	2025-11-18 07:31:45
13048	307	223	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13052	307	268	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13054	307	55	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13056	307	57	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13078	307	74	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13076	307	166	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13080	307	77	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13084	307	51	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13087	307	176	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13092	307	134	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13094	307	136	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13096	307	137	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13098	307	138	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13104	307	189	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13100	307	224	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13108	307	232	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13105	189	307	55	2025-11-18 06:29:12	2025-11-18 07:31:45
13106	307	222	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13109	232	307	66	2025-11-18 06:29:12	2025-11-18 07:31:45
13110	307	243	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13114	307	171	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13045	307	181	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13119	94	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13121	95	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13123	96	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13125	98	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13128	103	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13130	80	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13133	82	307	66	2025-11-18 06:29:12	2025-11-18 06:29:12
13135	83	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13137	84	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13139	87	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13141	89	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13143	90	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13145	91	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13147	92	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13149	244	307	77	2025-11-18 06:29:12	2025-11-18 06:29:12
13155	266	307	88	2025-11-18 06:29:12	2025-11-18 06:29:12
13157	105	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13161	108	307	66	2025-11-18 06:29:12	2025-11-18 06:29:12
13165	111	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13167	112	307	66	2025-11-18 06:29:12	2025-11-18 06:29:12
13169	116	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13171	118	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13173	121	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13175	144	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13177	146	307	44	2025-11-18 06:29:12	2025-11-18 06:29:12
13179	267	307	66	2025-11-18 06:29:12	2025-11-18 06:29:12
13181	150	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13189	234	307	66	2025-11-18 06:29:12	2025-11-18 06:29:12
13191	273	307	55	2025-11-18 06:29:12	2025-11-18 06:29:12
13193	279	307	88	2025-11-18 06:29:12	2025-11-18 06:29:12
13195	277	307	66	2025-11-18 06:29:12	2025-11-18 06:29:12
13197	291	307	77	2025-11-18 06:29:12	2025-11-18 06:29:12
13199	246	307	77	2025-11-18 06:29:12	2025-11-18 06:29:12
13201	283	307	88	2025-11-18 06:29:12	2025-11-18 06:29:12
13203	286	307	88	2025-11-18 06:29:12	2025-11-18 06:29:12
13205	287	307	88	2025-11-18 06:29:12	2025-11-18 06:29:12
13209	289	307	88	2025-11-18 06:29:12	2025-11-18 06:29:12
13211	294	307	77	2025-11-18 06:29:12	2025-11-18 06:29:12
13213	299	307	88	2025-11-18 06:29:12	2025-11-18 06:29:12
13215	229	307	88	2025-11-18 06:29:12	2025-11-18 06:29:12
13217	300	307	88	2025-11-18 06:29:12	2025-11-18 06:29:12
13219	303	307	88	2025-11-18 06:29:12	2025-11-18 06:29:12
13132	307	82	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13134	307	83	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13136	307	84	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13138	307	87	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13140	307	89	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13142	307	90	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13144	307	91	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13146	307	92	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13151	307	216	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13148	307	244	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13156	307	105	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13178	307	267	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13180	307	150	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13185	307	227	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13183	307	53	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13184	307	219	88	2025-11-18 06:29:12	2025-11-18 06:29:17
13198	307	246	88	2025-11-18 06:29:12	2025-11-18 06:29:17
13043	307	174	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13118	307	94	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13120	307	95	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13122	307	96	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13124	307	98	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13126	307	101	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13127	307	103	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13129	307	80	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13131	307	81	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13152	307	233	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13153	233	307	55	2025-11-18 06:29:12	2025-11-18 07:31:45
13158	307	106	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13159	307	107	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13160	307	108	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13162	307	109	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13163	307	110	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13164	307	111	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13166	307	112	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13168	307	116	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13170	307	118	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13172	307	121	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13174	307	144	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13176	307	146	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13182	307	151	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13187	307	211	66	2025-11-18 06:29:12	2025-11-18 07:32:16
13186	227	307	88	2025-11-18 06:29:12	2025-11-18 07:31:45
13190	307	273	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13188	307	234	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13194	307	277	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13206	307	288	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13196	307	291	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13200	307	283	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13202	307	286	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13204	307	287	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13220	307	192	55	2025-11-18 06:29:12	2025-11-18 07:32:16
13207	288	307	77	2025-11-18 06:29:12	2025-11-18 07:31:45
13208	307	289	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13210	307	294	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13212	307	299	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13214	307	229	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13216	307	300	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13218	307	303	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13221	192	307	77	2025-11-18 06:29:12	2025-11-18 07:31:45
13070	307	73	44	2025-11-18 06:29:12	2025-11-18 07:32:16
13222	176	307	44	2025-11-18 07:31:45	2025-11-18 07:31:45
13088	307	231	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13223	260	307	44	2025-11-18 07:31:45	2025-11-18 07:31:45
13154	307	266	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13224	211	307	55	2025-11-18 07:31:45	2025-11-18 07:31:45
13192	307	279	44	2025-11-18 06:29:12	2025-11-18 07:31:45
13150	307	260	66	2025-11-18 06:29:12	2025-11-18 07:32:16
15463	325	136	77	2025-12-22 17:20:12	2025-12-22 17:20:12
13226	174	310	55	2025-11-18 09:24:22	2025-11-18 09:24:22
13227	310	181	66	2025-11-18 09:24:22	2025-11-18 09:24:22
13228	310	193	88	2025-11-18 09:24:22	2025-11-18 09:24:22
13231	223	310	55	2025-11-18 09:24:22	2025-11-18 09:24:22
13233	263	310	77	2025-11-18 09:24:22	2025-11-18 09:24:22
13235	268	310	88	2025-11-18 09:24:22	2025-11-18 09:24:22
13237	55	310	44	2025-11-18 09:24:22	2025-11-18 09:24:22
13239	57	310	44	2025-11-18 09:24:22	2025-11-18 09:24:22
13241	59	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13243	60	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13245	61	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13249	65	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13251	72	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13253	73	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13255	126	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13257	127	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13259	166	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13261	74	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13263	77	310	66	2025-11-18 09:24:23	2025-11-18 09:24:23
13265	130	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13267	51	310	88	2025-11-18 09:24:23	2025-11-18 09:24:23
13271	231	310	88	2025-11-18 09:24:23	2025-11-18 09:24:23
13273	132	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13275	134	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13277	136	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13279	137	310	66	2025-11-18 09:24:23	2025-11-18 09:24:23
13281	138	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13283	224	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13285	168	310	100	2025-11-18 09:24:23	2025-11-18 09:24:23
13286	310	189	88	2025-11-18 09:24:23	2025-11-18 09:24:23
13289	222	310	66	2025-11-18 09:24:23	2025-11-18 09:24:23
13291	232	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13293	243	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13295	261	310	88	2025-11-18 09:24:23	2025-11-18 09:24:23
13297	171	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13299	179	310	66	2025-11-18 09:24:23	2025-11-18 09:24:23
13301	94	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13303	95	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13305	96	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13307	98	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13310	103	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13312	80	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13315	82	310	66	2025-11-18 09:24:23	2025-11-18 09:24:23
13317	83	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13319	84	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13321	87	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13323	89	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13229	193	310	77	2025-11-18 09:24:22	2025-11-18 09:24:26
13230	310	223	77	2025-11-18 09:24:22	2025-11-18 09:24:26
13232	310	263	77	2025-11-18 09:24:22	2025-11-18 09:24:26
13234	310	268	77	2025-11-18 09:24:22	2025-11-18 09:24:26
13236	310	55	44	2025-11-18 09:24:22	2025-11-18 09:24:26
13238	310	57	44	2025-11-18 09:24:22	2025-11-18 09:24:26
13240	310	59	44	2025-11-18 09:24:23	2025-11-18 09:24:26
13242	310	60	44	2025-11-18 09:24:23	2025-11-18 09:24:26
13246	310	62	44	2025-11-18 09:24:23	2025-11-18 09:24:26
13247	310	64	44	2025-11-18 09:24:23	2025-11-18 09:24:26
13248	310	65	44	2025-11-18 09:24:23	2025-11-18 09:24:26
13250	310	72	44	2025-11-18 09:24:23	2025-11-18 09:24:26
13252	310	73	44	2025-11-18 09:24:23	2025-11-18 09:24:26
13254	310	126	55	2025-11-18 09:24:23	2025-11-18 09:24:26
13256	310	127	55	2025-11-18 09:24:23	2025-11-18 09:24:26
13258	310	166	55	2025-11-18 09:24:23	2025-11-18 09:24:26
13260	310	74	44	2025-11-18 09:24:23	2025-11-18 09:24:26
13262	310	77	44	2025-11-18 09:24:23	2025-11-18 09:24:26
13264	310	130	55	2025-11-18 09:24:23	2025-11-18 09:24:26
13266	310	51	77	2025-11-18 09:24:23	2025-11-18 09:24:26
13268	310	214	55	2025-11-18 09:24:23	2025-11-18 09:24:26
13269	310	176	55	2025-11-18 09:24:23	2025-11-18 09:24:26
13270	310	231	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13272	310	132	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13274	310	134	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13276	310	136	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13280	310	138	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13282	310	224	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13284	310	168	66	2025-11-18 09:24:23	2025-11-18 09:24:27
13287	189	310	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13288	310	222	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13290	310	232	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13292	310	243	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13294	310	261	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13296	310	171	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13298	310	179	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13300	310	94	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13302	310	95	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13304	310	96	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13306	310	98	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13308	310	101	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13309	310	103	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13311	310	80	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13313	310	81	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13316	310	83	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13318	310	84	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13320	310	87	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13322	310	89	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13324	310	90	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13325	90	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13327	91	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13329	92	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13331	244	310	77	2025-11-18 09:24:23	2025-11-18 09:24:23
13335	233	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13337	266	310	88	2025-11-18 09:24:23	2025-11-18 09:24:23
13339	105	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13343	108	310	66	2025-11-18 09:24:23	2025-11-18 09:24:23
13347	111	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13349	112	310	66	2025-11-18 09:24:23	2025-11-18 09:24:23
13351	116	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13353	118	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13355	121	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13357	144	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13359	146	310	44	2025-11-18 09:24:23	2025-11-18 09:24:23
13361	267	310	66	2025-11-18 09:24:23	2025-11-18 09:24:23
13363	150	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13368	227	310	77	2025-11-18 09:24:23	2025-11-18 09:24:23
13371	234	310	66	2025-11-18 09:24:23	2025-11-18 09:24:23
13373	273	310	55	2025-11-18 09:24:23	2025-11-18 09:24:23
13375	279	310	88	2025-11-18 09:24:23	2025-11-18 09:24:23
13377	277	310	66	2025-11-18 09:24:23	2025-11-18 09:24:23
13379	291	310	77	2025-11-18 09:24:23	2025-11-18 09:24:23
13381	246	310	77	2025-11-18 09:24:23	2025-11-18 09:24:23
13383	283	310	88	2025-11-18 09:24:23	2025-11-18 09:24:23
13385	286	310	88	2025-11-18 09:24:23	2025-11-18 09:24:23
13387	287	310	88	2025-11-18 09:24:23	2025-11-18 09:24:23
13389	288	310	66	2025-11-18 09:24:23	2025-11-18 09:24:23
13391	289	310	88	2025-11-18 09:24:23	2025-11-18 09:24:23
13393	294	310	77	2025-11-18 09:24:23	2025-11-18 09:24:23
13395	299	310	88	2025-11-18 09:24:23	2025-11-18 09:24:23
13397	229	310	88	2025-11-18 09:24:23	2025-11-18 09:24:23
13399	300	310	88	2025-11-18 09:24:23	2025-11-18 09:24:23
13401	303	310	88	2025-11-18 09:24:23	2025-11-18 09:24:23
13403	192	310	66	2025-11-18 09:24:23	2025-11-18 09:24:23
13225	310	174	44	2025-11-18 09:24:22	2025-11-18 09:24:26
13244	310	61	44	2025-11-18 09:24:23	2025-11-18 09:24:26
13404	176	310	44	2025-11-18 09:24:26	2025-11-18 09:24:26
13278	310	137	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13314	310	82	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13326	310	91	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13328	310	92	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13330	310	244	88	2025-11-18 09:24:23	2025-11-18 09:24:27
13332	310	260	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13333	310	216	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13334	310	233	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13336	310	266	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13338	310	105	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13340	310	106	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13341	310	107	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13342	310	108	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13344	310	109	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13345	310	110	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13346	310	111	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13348	310	112	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13350	310	116	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13352	310	118	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13354	310	121	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13356	310	144	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13358	310	146	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13360	310	267	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13362	310	150	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13364	310	151	44	2025-11-18 09:24:23	2025-11-18 09:24:27
13365	310	53	55	2025-11-18 09:24:23	2025-11-18 09:24:27
13366	310	219	66	2025-11-18 09:24:23	2025-11-18 09:24:27
13367	310	227	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13369	310	211	66	2025-11-18 09:24:23	2025-11-18 09:24:27
13370	310	234	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13372	310	273	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13374	310	279	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13376	310	277	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13378	310	291	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13380	310	246	66	2025-11-18 09:24:23	2025-11-18 09:24:27
13382	310	283	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13384	310	286	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13386	310	287	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13388	310	288	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13390	310	289	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13392	310	294	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13394	310	299	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13396	310	229	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13398	310	300	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13400	310	303	88	2025-11-18 09:24:23	2025-11-18 09:24:27
13402	310	192	77	2025-11-18 09:24:23	2025-11-18 09:24:27
13405	311	54	44	2025-11-18 09:36:16	2025-11-18 09:36:16
13406	54	311	44	2025-11-18 09:36:16	2025-11-18 09:36:16
13407	311	165	44	2025-11-18 09:36:16	2025-11-18 09:36:16
13408	165	311	44	2025-11-18 09:36:16	2025-11-18 09:36:16
15464	136	325	44	2025-12-22 17:20:12	2025-12-22 17:20:12
13410	197	311	88	2025-11-18 09:36:16	2025-11-18 09:36:16
13412	204	311	88	2025-11-18 09:36:16	2025-11-18 09:36:16
13414	212	311	88	2025-11-18 09:36:16	2025-11-18 09:36:16
13416	230	311	88	2025-11-18 09:36:16	2025-11-18 09:36:16
13418	235	311	88	2025-11-18 09:36:16	2025-11-18 09:36:16
13420	241	311	88	2025-11-18 09:36:16	2025-11-18 09:36:16
13422	245	311	66	2025-11-18 09:36:16	2025-11-18 09:36:16
13424	247	311	77	2025-11-18 09:36:16	2025-11-18 09:36:16
13411	311	204	55	2025-11-18 09:36:16	2025-11-18 09:36:28
13413	311	212	55	2025-11-18 09:36:16	2025-11-18 09:36:28
13415	311	230	55	2025-11-18 09:36:16	2025-11-18 09:36:28
13419	311	241	44	2025-11-18 09:36:16	2025-11-18 09:36:28
13421	311	245	77	2025-11-18 09:36:16	2025-11-18 09:36:28
13423	311	247	55	2025-11-18 09:36:16	2025-11-18 09:36:28
13425	311	250	66	2025-11-18 09:36:16	2025-11-18 09:36:28
13426	250	311	66	2025-11-18 09:36:16	2025-11-18 09:36:16
15465	325	137	77	2025-12-22 17:20:12	2025-12-22 17:20:12
13428	255	311	88	2025-11-18 09:36:16	2025-11-18 09:36:16
13429	311	56	44	2025-11-18 09:36:16	2025-11-18 09:36:16
13430	56	311	44	2025-11-18 09:36:16	2025-11-18 09:36:16
13431	311	58	44	2025-11-18 09:36:16	2025-11-18 09:36:16
13432	58	311	55	2025-11-18 09:36:16	2025-11-18 09:36:16
13433	311	63	44	2025-11-18 09:36:16	2025-11-18 09:36:16
13434	63	311	55	2025-11-18 09:36:16	2025-11-18 09:36:16
13435	311	66	44	2025-11-18 09:36:16	2025-11-18 09:36:16
13436	66	311	44	2025-11-18 09:36:16	2025-11-18 09:36:16
13437	311	67	44	2025-11-18 09:36:16	2025-11-18 09:36:16
13438	67	311	44	2025-11-18 09:36:16	2025-11-18 09:36:16
13439	311	68	44	2025-11-18 09:36:16	2025-11-18 09:36:16
13440	68	311	66	2025-11-18 09:36:16	2025-11-18 09:36:16
13441	311	69	44	2025-11-18 09:36:16	2025-11-18 09:36:16
13442	69	311	66	2025-11-18 09:36:17	2025-11-18 09:36:17
13443	311	70	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13444	70	311	55	2025-11-18 09:36:17	2025-11-18 09:36:17
13445	311	71	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13446	71	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13447	311	124	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13448	124	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13449	311	125	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13450	125	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13451	311	128	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13452	128	311	55	2025-11-18 09:36:17	2025-11-18 09:36:17
13453	311	75	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13454	75	311	55	2025-11-18 09:36:17	2025-11-18 09:36:17
13455	311	76	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13456	76	311	55	2025-11-18 09:36:17	2025-11-18 09:36:17
13457	311	78	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13458	78	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13459	311	129	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13460	129	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13462	200	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13465	311	194	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13467	251	311	88	2025-11-18 09:36:17	2025-11-18 09:36:17
13468	311	131	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13469	131	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13470	311	133	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13471	133	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13472	311	135	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13473	135	311	55	2025-11-18 09:36:17	2025-11-18 09:36:17
13474	311	142	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13475	142	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13477	237	311	77	2025-11-18 09:36:17	2025-11-18 09:36:17
13479	258	311	88	2025-11-18 09:36:17	2025-11-18 09:36:17
13481	242	311	66	2025-11-18 09:36:17	2025-11-18 09:36:17
13483	248	311	55	2025-11-18 09:36:17	2025-11-18 09:36:17
13485	269	311	77	2025-11-18 09:36:17	2025-11-18 09:36:17
13486	311	177	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13487	177	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13488	311	195	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13489	311	202	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13491	209	311	77	2025-11-18 09:36:17	2025-11-18 09:36:17
13492	311	215	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13494	238	311	66	2025-11-18 09:36:17	2025-11-18 09:36:17
13496	249	311	77	2025-11-18 09:36:17	2025-11-18 09:36:17
13498	252	311	88	2025-11-18 09:36:17	2025-11-18 09:36:17
13500	264	311	66	2025-11-18 09:36:17	2025-11-18 09:36:17
13502	270	311	66	2025-11-18 09:36:17	2025-11-18 09:36:17
13504	210	311	100	2025-11-18 09:36:17	2025-11-18 09:36:17
13506	191	311	66	2025-11-18 09:36:17	2025-11-18 09:36:17
13508	196	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13509	311	97	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13510	97	311	55	2025-11-18 09:36:17	2025-11-18 09:36:17
13511	311	99	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13512	99	311	55	2025-11-18 09:36:17	2025-11-18 09:36:17
13513	311	100	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13514	311	102	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13515	311	79	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13516	79	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13517	311	85	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13518	85	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13519	311	86	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13520	86	311	66	2025-11-18 09:36:17	2025-11-18 09:36:17
13521	311	88	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13522	88	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13523	311	93	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13524	93	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13525	311	253	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13527	226	311	88	2025-11-18 09:36:17	2025-11-18 09:36:17
13529	239	311	66	2025-11-18 09:36:17	2025-11-18 09:36:17
13531	271	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13532	311	104	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13461	311	200	44	2025-11-18 09:36:17	2025-11-18 09:36:28
13463	311	265	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13464	311	50	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13466	311	251	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13476	311	237	88	2025-11-18 09:36:17	2025-11-18 09:36:28
13478	311	258	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13480	311	242	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13482	311	248	66	2025-11-18 09:36:17	2025-11-18 09:36:28
13484	311	269	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13493	311	238	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13495	311	249	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13497	311	252	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13499	311	264	77	2025-11-18 09:36:17	2025-11-18 09:36:28
13501	311	270	77	2025-11-18 09:36:17	2025-11-18 09:36:28
13503	311	210	44	2025-11-18 09:36:17	2025-11-18 09:36:28
13505	311	191	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13507	311	196	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13526	311	226	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13528	311	239	77	2025-11-18 09:36:17	2025-11-18 09:36:28
13530	311	271	44	2025-11-18 09:36:17	2025-11-18 09:36:28
13533	311	113	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13534	113	311	55	2025-11-18 09:36:17	2025-11-18 09:36:17
13535	311	114	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13536	114	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13537	311	115	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13538	115	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13539	311	117	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13540	117	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13541	311	119	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13542	119	311	55	2025-11-18 09:36:17	2025-11-18 09:36:17
13543	311	120	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13544	120	311	55	2025-11-18 09:36:17	2025-11-18 09:36:17
13545	311	122	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13546	122	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13547	311	123	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13548	123	311	66	2025-11-18 09:36:17	2025-11-18 09:36:17
13549	311	145	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13550	145	311	55	2025-11-18 09:36:17	2025-11-18 09:36:17
13551	311	143	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13552	143	311	66	2025-11-18 09:36:17	2025-11-18 09:36:17
13554	272	311	77	2025-11-18 09:36:17	2025-11-18 09:36:17
13555	311	139	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13556	139	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13557	311	140	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13558	140	311	55	2025-11-18 09:36:17	2025-11-18 09:36:17
13559	311	141	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13560	141	311	55	2025-11-18 09:36:17	2025-11-18 09:36:17
13561	311	147	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13562	147	311	55	2025-11-18 09:36:17	2025-11-18 09:36:17
13563	311	148	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13564	311	149	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13565	149	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13566	311	152	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13567	152	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13568	311	153	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13569	153	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13570	311	173	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13571	173	311	55	2025-11-18 09:36:17	2025-11-18 09:36:17
13573	240	311	66	2025-11-18 09:36:17	2025-11-18 09:36:17
13575	254	311	77	2025-11-18 09:36:17	2025-11-18 09:36:17
13577	262	311	77	2025-11-18 09:36:17	2025-11-18 09:36:17
13579	274	311	44	2025-11-18 09:36:17	2025-11-18 09:36:17
13581	276	311	88	2025-11-18 09:36:17	2025-11-18 09:36:17
13583	278	311	88	2025-11-18 09:36:17	2025-11-18 09:36:17
13587	284	311	77	2025-11-18 09:36:17	2025-11-18 09:36:17
13589	290	311	77	2025-11-18 09:36:17	2025-11-18 09:36:17
13591	285	311	88	2025-11-18 09:36:17	2025-11-18 09:36:17
13593	292	311	88	2025-11-18 09:36:17	2025-11-18 09:36:17
13595	293	311	88	2025-11-18 09:36:17	2025-11-18 09:36:17
13597	298	311	88	2025-11-18 09:36:17	2025-11-18 09:36:17
13599	302	311	88	2025-11-18 09:36:17	2025-11-18 09:36:17
13601	304	311	88	2025-11-18 09:36:17	2025-11-18 09:36:17
13603	305	311	88	2025-11-18 09:36:17	2025-11-18 09:36:17
13605	306	311	88	2025-11-18 09:36:17	2025-11-18 09:36:17
13608	310	311	77	2025-11-18 09:36:17	2025-11-18 09:36:17
13409	311	197	55	2025-11-18 09:36:16	2025-11-18 09:36:28
13417	311	235	55	2025-11-18 09:36:16	2025-11-18 09:36:28
13427	311	255	55	2025-11-18 09:36:16	2025-11-18 09:36:28
13490	311	209	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13553	311	272	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13572	311	240	66	2025-11-18 09:36:17	2025-11-18 09:36:28
13574	311	254	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13576	311	262	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13578	311	274	66	2025-11-18 09:36:17	2025-11-18 09:36:28
13580	311	276	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13582	311	278	55	2025-11-18 09:36:17	2025-11-18 09:36:28
15466	137	325	66	2025-12-22 17:20:12	2025-12-22 17:20:12
13586	311	284	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13588	311	290	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13590	311	285	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13592	311	292	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13594	311	293	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13596	311	298	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13598	311	302	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13600	311	304	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13602	311	305	55	2025-11-18 09:36:17	2025-11-18 09:36:28
13604	311	306	55	2025-11-18 09:36:17	2025-11-18 09:36:29
13606	311	307	44	2025-11-18 09:36:17	2025-11-18 09:36:29
13607	311	310	66	2025-11-18 09:36:17	2025-11-18 09:36:29
13610	54	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13612	165	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13614	197	312	88	2025-11-19 06:35:43	2025-11-19 06:35:43
13616	204	312	88	2025-11-19 06:35:43	2025-11-19 06:35:43
13618	212	312	88	2025-11-19 06:35:43	2025-11-19 06:35:43
13620	230	312	88	2025-11-19 06:35:43	2025-11-19 06:35:43
13622	235	312	88	2025-11-19 06:35:43	2025-11-19 06:35:43
13624	241	312	88	2025-11-19 06:35:43	2025-11-19 06:35:43
13628	247	312	77	2025-11-19 06:35:43	2025-11-19 06:35:43
13632	255	312	88	2025-11-19 06:35:43	2025-11-19 06:35:43
13634	56	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13613	312	197	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13615	312	204	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13617	312	212	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13619	312	230	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13621	312	235	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13623	312	241	55	2025-11-19 06:35:43	2025-11-19 06:36:28
13625	312	245	88	2025-11-19 06:35:43	2025-11-19 06:36:28
13626	245	312	77	2025-11-19 06:35:43	2025-11-19 06:36:12
13631	312	255	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13630	250	312	77	2025-11-19 06:35:43	2025-11-19 06:36:12
13585	280	311	100	2025-11-18 09:36:17	2025-12-11 16:49:08
13633	312	56	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13611	312	165	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13629	312	250	77	2025-11-19 06:35:43	2025-11-19 06:36:28
13584	311	280	66	2025-11-18 09:36:17	2025-12-11 16:49:08
13636	58	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13638	63	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13640	66	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13642	67	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13644	68	312	66	2025-11-19 06:35:43	2025-11-19 06:35:43
13646	69	312	66	2025-11-19 06:35:43	2025-11-19 06:35:43
13648	70	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13650	71	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13652	124	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13654	125	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13656	128	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13658	75	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13660	76	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13662	78	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13664	129	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13666	200	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13671	251	312	88	2025-11-19 06:35:43	2025-11-19 06:35:43
13673	131	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13675	133	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13677	135	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13679	142	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13681	237	312	66	2025-11-19 06:35:43	2025-11-19 06:35:43
13683	258	312	88	2025-11-19 06:35:43	2025-11-19 06:35:43
13685	242	312	66	2025-11-19 06:35:43	2025-11-19 06:35:43
13687	248	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13689	269	312	77	2025-11-19 06:35:43	2025-11-19 06:35:43
13691	177	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13695	209	312	77	2025-11-19 06:35:43	2025-11-19 06:35:43
13698	238	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13700	249	312	77	2025-11-19 06:35:43	2025-11-19 06:35:43
13702	252	312	88	2025-11-19 06:35:43	2025-11-19 06:35:43
13704	264	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13708	210	312	100	2025-11-19 06:35:43	2025-11-19 06:35:43
13710	191	312	66	2025-11-19 06:35:43	2025-11-19 06:35:43
13712	196	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13714	97	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13716	99	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13720	79	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13722	85	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13724	86	312	66	2025-11-19 06:35:43	2025-11-19 06:35:43
13726	88	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13728	93	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13731	226	312	88	2025-11-19 06:35:43	2025-11-19 06:35:43
13733	239	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13735	271	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13738	113	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13740	114	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13637	312	63	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13639	312	66	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13641	312	67	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13643	312	68	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13645	312	69	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13647	312	70	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13649	312	71	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13653	312	125	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13663	312	129	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13657	312	75	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13659	312	76	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13661	312	78	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13665	312	200	55	2025-11-19 06:35:43	2025-11-19 06:36:28
13667	312	265	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13670	312	251	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13669	312	194	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13672	312	131	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13674	312	133	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13676	312	135	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13678	312	142	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13680	312	237	77	2025-11-19 06:35:43	2025-11-19 06:36:28
13682	312	258	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13684	312	242	55	2025-11-19 06:35:43	2025-11-19 06:36:28
13686	312	248	77	2025-11-19 06:35:43	2025-11-19 06:36:28
13688	312	269	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13694	312	209	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13690	312	177	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13693	312	202	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13697	312	238	55	2025-11-19 06:35:43	2025-11-19 06:36:28
13696	312	215	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13699	312	249	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13701	312	252	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13703	312	264	77	2025-11-19 06:35:43	2025-11-19 06:36:28
13705	312	270	88	2025-11-19 06:35:43	2025-11-19 06:36:28
13706	270	312	77	2025-11-19 06:35:43	2025-11-19 06:36:12
13709	312	191	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13711	312	196	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13713	312	97	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13715	312	99	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13717	312	100	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13718	312	102	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13730	312	226	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13719	312	79	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13721	312	85	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13723	312	86	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13727	312	93	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13729	312	253	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13732	312	239	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13734	312	271	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13736	312	104	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13737	312	113	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13739	312	114	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13741	312	115	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13651	312	124	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13668	312	50	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13707	312	210	55	2025-11-19 06:35:43	2025-11-19 06:36:28
13742	115	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13744	117	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13746	119	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13748	120	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13750	122	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13752	123	312	66	2025-11-19 06:35:43	2025-11-19 06:35:43
13754	145	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13756	143	312	66	2025-11-19 06:35:43	2025-11-19 06:35:43
13758	272	312	77	2025-11-19 06:35:43	2025-11-19 06:35:43
13760	139	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13762	140	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13764	141	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13766	147	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13769	149	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13771	152	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13773	153	312	44	2025-11-19 06:35:43	2025-11-19 06:35:43
13775	173	312	55	2025-11-19 06:35:43	2025-11-19 06:35:43
13779	254	312	77	2025-11-19 06:35:44	2025-11-19 06:35:44
13781	262	312	77	2025-11-19 06:35:44	2025-11-19 06:35:44
13784	276	312	88	2025-11-19 06:35:44	2025-11-19 06:35:44
13786	278	312	88	2025-11-19 06:35:44	2025-11-19 06:35:44
13790	284	312	77	2025-11-19 06:35:44	2025-11-19 06:35:44
13792	290	312	77	2025-11-19 06:35:44	2025-11-19 06:35:44
13794	285	312	88	2025-11-19 06:35:44	2025-11-19 06:35:44
13796	292	312	88	2025-11-19 06:35:44	2025-11-19 06:35:44
13798	293	312	88	2025-11-19 06:35:44	2025-11-19 06:35:44
13800	298	312	88	2025-11-19 06:35:44	2025-11-19 06:35:44
13802	302	312	88	2025-11-19 06:35:44	2025-11-19 06:35:44
13804	304	312	88	2025-11-19 06:35:44	2025-11-19 06:35:44
13806	305	312	88	2025-11-19 06:35:44	2025-11-19 06:35:44
13808	306	312	88	2025-11-19 06:35:44	2025-11-19 06:35:44
13811	310	312	77	2025-11-19 06:35:44	2025-11-19 06:35:44
13635	312	58	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13812	265	312	44	2025-11-19 06:36:12	2025-11-19 06:36:12
13725	312	88	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13785	312	278	66	2025-11-19 06:35:44	2025-11-19 06:36:28
13787	312	280	66	2025-11-19 06:35:44	2025-11-19 06:36:28
13789	312	284	66	2025-11-19 06:35:44	2025-11-19 06:36:28
13791	312	290	66	2025-11-19 06:35:44	2025-11-19 06:36:28
13793	312	285	66	2025-11-19 06:35:44	2025-11-19 06:36:28
13753	312	145	55	2025-11-19 06:35:43	2025-11-19 06:36:12
13795	312	292	66	2025-11-19 06:35:44	2025-11-19 06:36:28
13797	312	293	66	2025-11-19 06:35:44	2025-11-19 06:36:28
13799	312	298	66	2025-11-19 06:35:44	2025-11-19 06:36:28
13801	312	302	66	2025-11-19 06:35:44	2025-11-19 06:36:28
13803	312	304	66	2025-11-19 06:35:44	2025-11-19 06:36:28
13765	312	147	55	2025-11-19 06:35:43	2025-11-19 06:36:13
13767	312	148	55	2025-11-19 06:35:43	2025-11-19 06:36:13
13768	312	149	55	2025-11-19 06:35:43	2025-11-19 06:36:13
13770	312	152	55	2025-11-19 06:35:43	2025-11-19 06:36:13
13772	312	153	55	2025-11-19 06:35:43	2025-11-19 06:36:13
13774	312	173	55	2025-11-19 06:35:43	2025-11-19 06:36:13
13805	312	305	66	2025-11-19 06:35:44	2025-11-19 06:36:28
13777	240	312	66	2025-11-19 06:35:43	2025-11-19 06:36:13
13807	312	306	66	2025-11-19 06:35:44	2025-11-19 06:36:28
13809	312	307	66	2025-11-19 06:35:44	2025-11-19 06:36:28
13810	312	310	66	2025-11-19 06:35:44	2025-11-19 06:36:28
15467	325	138	77	2025-12-22 17:20:12	2025-12-22 17:20:12
13820	223	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13822	263	313	77	2025-11-24 11:20:11	2025-11-24 11:20:11
13824	268	313	88	2025-11-24 11:20:11	2025-11-24 11:20:11
13826	55	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13828	57	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13813	307	312	44	2025-11-19 06:36:13	2025-11-19 06:36:13
13609	312	54	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13627	312	247	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13655	312	128	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13692	312	195	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13743	312	117	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13745	312	119	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13747	312	120	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13749	312	122	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13751	312	123	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13755	312	143	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13757	312	272	66	2025-11-19 06:35:43	2025-11-19 06:36:28
13759	312	139	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13761	312	140	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13763	312	141	44	2025-11-19 06:35:43	2025-11-19 06:36:28
13776	312	240	77	2025-11-19 06:35:43	2025-11-19 06:36:28
13778	312	254	66	2025-11-19 06:35:44	2025-11-19 06:36:28
13780	312	262	66	2025-11-19 06:35:44	2025-11-19 06:36:28
13782	312	274	55	2025-11-19 06:35:44	2025-11-19 06:36:28
13783	312	276	66	2025-11-19 06:35:44	2025-11-19 06:36:28
13815	174	313	55	2025-11-24 11:20:10	2025-11-24 11:20:10
13830	59	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13832	60	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13834	61	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13838	65	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13840	72	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13819	313	223	100	2025-11-24 11:20:11	2025-12-11 16:57:01
13817	313	193	100	2025-11-24 11:20:10	2025-12-11 16:56:07
13821	313	263	100	2025-11-24 11:20:11	2025-12-11 16:57:01
13788	280	312	100	2025-11-19 06:35:44	2025-12-11 16:49:08
13829	313	59	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13831	313	60	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13833	313	61	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13835	313	62	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13836	313	64	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13837	313	65	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13839	313	72	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13816	313	181	77	2025-11-24 11:20:10	2025-12-11 16:56:07
13827	313	57	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13818	193	313	66	2025-11-24 11:20:10	2025-12-11 16:57:01
13823	313	268	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13842	73	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13844	126	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13846	127	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13848	166	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13850	74	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13852	77	313	66	2025-11-24 11:20:11	2025-11-24 11:20:11
13854	130	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13856	51	313	88	2025-11-24 11:20:11	2025-11-24 11:20:11
13860	231	313	88	2025-11-24 11:20:11	2025-11-24 11:20:11
13862	132	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13864	134	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13866	136	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13868	137	313	66	2025-11-24 11:20:11	2025-11-24 11:20:11
13870	138	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13872	224	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13874	168	313	100	2025-11-24 11:20:11	2025-11-24 11:20:11
13878	222	313	66	2025-11-24 11:20:11	2025-11-24 11:20:11
13884	261	313	88	2025-11-24 11:20:11	2025-11-24 11:20:11
13886	171	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13888	179	313	66	2025-11-24 11:20:11	2025-11-24 11:20:11
13890	94	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13892	95	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13894	96	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13896	98	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13899	103	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13901	80	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13904	82	313	66	2025-11-24 11:20:11	2025-11-24 11:20:11
13906	83	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13908	84	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13910	87	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13912	89	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13914	90	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13916	91	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13918	92	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13926	266	313	88	2025-11-24 11:20:11	2025-11-24 11:20:11
13928	105	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13932	108	313	66	2025-11-24 11:20:11	2025-11-24 11:20:11
13936	111	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13938	112	313	66	2025-11-24 11:20:11	2025-11-24 11:20:11
13940	116	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13942	118	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13944	121	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13946	144	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
13855	313	51	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13851	313	77	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13853	313	130	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13865	313	136	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13887	313	179	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13867	313	137	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13869	313	138	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13871	313	224	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13873	313	168	88	2025-11-24 11:20:11	2025-12-11 16:57:02
13875	313	189	100	2025-11-24 11:20:11	2025-12-11 16:56:07
13879	313	232	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13898	313	103	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13881	313	243	88	2025-11-24 11:20:11	2025-12-11 16:57:02
13882	243	313	55	2025-11-24 11:20:11	2025-12-11 16:56:07
13923	313	233	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13877	313	222	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13891	313	95	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13920	244	313	77	2025-11-24 11:20:11	2025-12-11 16:56:07
13883	313	261	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13885	313	171	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13889	313	94	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13880	232	313	55	2025-11-24 11:20:11	2025-12-11 16:56:07
13900	313	80	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13921	313	260	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13930	313	107	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13925	313	266	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13845	313	127	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13902	313	81	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13903	313	82	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13905	313	83	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13907	313	84	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13909	313	87	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13911	313	89	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13913	313	90	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13915	313	91	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13917	313	92	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13919	313	244	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13931	313	108	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13922	313	216	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13934	313	110	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13933	313	109	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13927	313	105	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13935	313	111	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13937	313	112	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13939	313	116	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13941	313	118	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13943	313	121	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13945	313	144	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13843	313	126	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13861	313	132	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13847	313	166	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13849	313	74	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13947	313	146	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13863	313	134	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13876	189	313	44	2025-11-24 11:20:11	2025-12-11 16:57:02
13858	313	176	66	2025-11-24 11:20:11	2025-12-11 16:56:07
13893	313	96	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13897	313	101	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13924	233	313	44	2025-11-24 11:20:11	2025-12-11 16:56:07
13857	313	214	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13948	146	313	44	2025-11-24 11:20:11	2025-11-24 11:20:11
13950	267	313	66	2025-11-24 11:20:11	2025-11-24 11:20:11
13952	150	313	55	2025-11-24 11:20:11	2025-11-24 11:20:11
15468	138	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
13964	279	313	88	2025-11-24 11:20:11	2025-11-24 11:20:11
13968	291	313	77	2025-11-24 11:20:11	2025-11-24 11:20:11
13970	246	313	77	2025-11-24 11:20:11	2025-11-24 11:20:11
13972	283	313	88	2025-11-24 11:20:11	2025-11-24 11:20:11
13974	286	313	88	2025-11-24 11:20:11	2025-11-24 11:20:11
13976	287	313	88	2025-11-24 11:20:11	2025-11-24 11:20:11
13980	289	313	88	2025-11-24 11:20:11	2025-11-24 11:20:11
13982	294	313	77	2025-11-24 11:20:11	2025-11-24 11:20:11
13984	299	313	88	2025-11-24 11:20:11	2025-11-24 11:20:11
13986	229	313	88	2025-11-24 11:20:11	2025-11-24 11:20:11
13988	300	313	88	2025-11-24 11:20:11	2025-11-24 11:20:11
13990	303	313	88	2025-11-24 11:20:11	2025-11-24 11:20:11
13992	192	313	66	2025-11-24 11:20:11	2025-11-24 11:20:11
13996	312	313	66	2025-11-24 11:20:11	2025-11-24 11:20:11
13997	176	313	44	2025-11-24 11:20:47	2025-11-24 11:20:47
13954	313	53	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13956	313	227	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13958	313	211	88	2025-11-24 11:20:11	2025-12-11 16:57:02
13962	273	313	55	2025-11-24 11:20:11	2025-12-11 16:56:08
13961	313	273	88	2025-11-24 11:20:11	2025-12-11 16:57:02
13963	313	279	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13929	313	106	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13965	313	277	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13979	313	289	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13969	313	246	88	2025-11-24 11:20:11	2025-12-11 16:57:02
13994	311	313	66	2025-11-24 11:20:11	2025-12-11 16:56:08
13983	313	299	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13985	313	229	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13987	313	300	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13989	313	303	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13981	313	294	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13993	313	311	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13957	227	313	77	2025-11-24 11:20:11	2025-12-11 16:56:08
13995	313	312	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13825	313	55	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13814	313	174	66	2025-11-24 11:20:10	2025-12-11 16:57:01
13949	313	267	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13966	277	313	66	2025-11-24 11:20:11	2025-12-11 16:56:08
13951	313	150	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13895	313	98	77	2025-11-24 11:20:11	2025-12-11 16:57:02
13999	174	315	55	2025-11-27 18:28:29	2025-11-27 18:28:29
14000	315	181	77	2025-11-27 18:28:29	2025-11-27 18:28:29
14001	315	193	100	2025-11-27 18:28:29	2025-11-27 18:28:29
14002	193	315	66	2025-11-27 18:28:29	2025-11-27 18:28:29
14003	315	223	100	2025-11-27 18:28:29	2025-11-27 18:28:29
14004	223	315	55	2025-11-27 18:28:29	2025-11-27 18:28:29
14005	315	263	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14006	263	315	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14007	315	268	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14008	268	315	88	2025-11-27 18:28:30	2025-11-27 18:28:30
14010	55	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14012	57	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14014	59	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14016	60	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14018	61	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14022	65	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14024	72	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14026	73	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14027	315	126	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14028	126	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14029	315	127	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14030	127	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14031	315	166	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14032	166	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14034	74	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14036	77	315	66	2025-11-27 18:28:30	2025-11-27 18:28:30
14037	315	130	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14038	130	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14039	315	51	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14040	51	315	88	2025-11-27 18:28:30	2025-11-27 18:28:30
14041	315	214	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14043	315	231	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14044	231	315	88	2025-11-27 18:28:30	2025-11-27 18:28:30
14045	315	132	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14046	132	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14047	315	134	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14009	315	55	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14011	315	57	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14015	315	60	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14017	315	61	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14019	315	62	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14020	315	64	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14021	315	65	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14023	315	72	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14025	315	73	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14033	315	74	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14035	315	77	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14042	315	176	66	2025-11-27 18:28:30	2025-11-27 18:28:44
13841	313	73	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13859	313	231	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13960	234	313	66	2025-11-24 11:20:11	2025-12-11 16:56:08
13967	313	291	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13978	288	313	66	2025-11-24 11:20:11	2025-12-11 16:56:08
13971	313	283	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13953	313	151	66	2025-11-24 11:20:11	2025-12-11 16:57:02
13973	313	286	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13975	313	287	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13977	313	288	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13991	313	192	100	2025-11-24 11:20:11	2025-12-11 16:57:02
13955	313	219	88	2025-11-24 11:20:11	2025-12-11 16:57:02
14048	134	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14049	315	136	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14050	136	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14051	315	137	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14052	137	315	66	2025-11-27 18:28:30	2025-11-27 18:28:30
14053	315	138	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14054	138	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14055	315	224	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14056	224	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
15469	325	224	100	2025-12-22 17:20:12	2025-12-22 17:20:12
14058	168	315	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14059	315	189	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14060	189	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14061	315	222	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14062	222	315	66	2025-11-27 18:28:30	2025-11-27 18:28:30
14063	315	232	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14064	232	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14066	243	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14067	315	261	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14068	261	315	88	2025-11-27 18:28:30	2025-11-27 18:28:30
14070	171	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14071	315	179	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14072	179	315	66	2025-11-27 18:28:30	2025-11-27 18:28:30
14073	315	94	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14074	94	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14075	315	95	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14076	95	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14077	315	96	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14078	96	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14079	315	98	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14080	98	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14081	315	101	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14082	315	103	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14083	103	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14085	80	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14088	82	315	66	2025-11-27 18:28:30	2025-11-27 18:28:30
14090	83	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14092	84	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14094	87	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14096	89	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14098	90	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14100	91	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14102	92	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14103	315	244	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14104	244	315	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14107	315	233	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14108	233	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14109	315	266	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14110	266	315	88	2025-11-27 18:28:30	2025-11-27 18:28:30
14111	315	105	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14112	105	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14113	315	106	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14114	315	107	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14115	315	108	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14116	108	315	66	2025-11-27 18:28:30	2025-11-27 18:28:30
14117	315	109	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14118	315	110	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14119	315	111	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14120	111	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14121	315	112	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14122	112	315	66	2025-11-27 18:28:30	2025-11-27 18:28:30
14123	315	116	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14124	116	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14125	315	118	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14126	118	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14127	315	121	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14128	121	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14130	144	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14132	146	315	44	2025-11-27 18:28:30	2025-11-27 18:28:30
14133	315	267	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14134	267	315	66	2025-11-27 18:28:30	2025-11-27 18:28:30
14136	150	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14138	315	53	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14140	315	227	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14141	227	315	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14142	315	211	88	2025-11-27 18:28:30	2025-11-27 18:28:30
14143	315	234	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14144	234	315	66	2025-11-27 18:28:30	2025-11-27 18:28:30
14145	315	273	88	2025-11-27 18:28:30	2025-11-27 18:28:30
14146	273	315	55	2025-11-27 18:28:30	2025-11-27 18:28:30
14147	315	279	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14148	279	315	88	2025-11-27 18:28:30	2025-11-27 18:28:30
14149	315	277	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14150	277	315	66	2025-11-27 18:28:30	2025-11-27 18:28:30
14151	315	291	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14152	291	315	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14154	246	315	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14065	315	243	88	2025-11-27 18:28:30	2025-11-27 18:28:44
14069	315	171	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14084	315	80	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14086	315	81	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14087	315	82	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14089	315	83	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14091	315	84	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14093	315	87	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14095	315	89	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14099	315	91	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14101	315	92	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14105	315	260	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14106	315	216	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14129	315	144	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14131	315	146	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14135	315	150	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14137	315	151	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14139	315	219	88	2025-11-27 18:28:30	2025-11-27 18:28:44
14153	315	246	88	2025-11-27 18:28:30	2025-11-27 18:28:44
14155	315	283	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14156	283	315	88	2025-11-27 18:28:30	2025-11-27 18:28:30
14157	315	286	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14158	286	315	88	2025-11-27 18:28:30	2025-11-27 18:28:30
14159	315	287	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14160	287	315	88	2025-11-27 18:28:30	2025-11-27 18:28:30
14161	315	288	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14162	288	315	66	2025-11-27 18:28:30	2025-11-27 18:28:30
14163	315	289	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14164	289	315	88	2025-11-27 18:28:30	2025-11-27 18:28:30
14165	315	294	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14166	294	315	77	2025-11-27 18:28:30	2025-11-27 18:28:30
14167	315	299	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14168	299	315	88	2025-11-27 18:28:30	2025-11-27 18:28:30
14169	315	229	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14170	229	315	88	2025-11-27 18:28:30	2025-11-27 18:28:30
14171	315	300	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14172	300	315	88	2025-11-27 18:28:30	2025-11-27 18:28:30
14173	315	303	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14174	303	315	88	2025-11-27 18:28:30	2025-11-27 18:28:30
14175	315	192	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14176	192	315	66	2025-11-27 18:28:30	2025-11-27 18:28:30
14177	315	311	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14178	311	315	66	2025-11-27 18:28:30	2025-11-27 18:28:30
14179	315	312	100	2025-11-27 18:28:30	2025-11-27 18:28:30
14180	312	315	66	2025-11-27 18:28:30	2025-11-27 18:28:30
13998	315	174	66	2025-11-27 18:28:29	2025-11-27 18:28:44
14013	315	59	66	2025-11-27 18:28:30	2025-11-27 18:28:44
14057	315	168	88	2025-11-27 18:28:30	2025-11-27 18:28:44
14097	315	90	66	2025-11-27 18:28:30	2025-11-27 18:28:44
15470	224	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
14182	54	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14184	165	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14186	197	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14188	204	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14190	212	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14192	230	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14194	235	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14196	241	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14198	245	316	66	2025-12-11 15:57:22	2025-12-11 15:57:22
14200	247	316	77	2025-12-11 15:57:22	2025-12-11 15:57:22
14202	250	316	66	2025-12-11 15:57:22	2025-12-11 15:57:22
14204	255	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14206	56	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14208	58	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14210	63	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14212	66	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14214	67	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14216	68	316	66	2025-12-11 15:57:22	2025-12-11 15:57:22
14218	69	316	66	2025-12-11 15:57:22	2025-12-11 15:57:22
14220	70	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14222	71	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14224	124	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14226	125	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14228	128	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14230	75	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14232	76	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14234	78	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14236	129	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14238	200	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14243	251	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14245	131	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14247	133	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14249	135	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14251	142	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14253	237	316	66	2025-12-11 15:57:22	2025-12-11 15:57:22
14255	258	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14257	242	316	66	2025-12-11 15:57:22	2025-12-11 15:57:22
14183	316	165	66	2025-12-11 15:57:22	2025-12-11 15:57:34
14185	316	197	88	2025-12-11 15:57:22	2025-12-11 15:57:34
14187	316	204	88	2025-12-11 15:57:22	2025-12-11 15:57:34
14189	316	212	88	2025-12-11 15:57:22	2025-12-11 15:57:34
14191	316	230	88	2025-12-11 15:57:22	2025-12-11 15:57:34
14193	316	235	88	2025-12-11 15:57:22	2025-12-11 15:57:34
14195	316	241	77	2025-12-11 15:57:22	2025-12-11 15:57:34
14197	316	245	88	2025-12-11 15:57:22	2025-12-11 15:57:34
14199	316	247	88	2025-12-11 15:57:22	2025-12-11 15:57:34
14203	316	255	88	2025-12-11 15:57:22	2025-12-11 15:57:34
14205	316	56	55	2025-12-11 15:57:22	2025-12-11 15:57:34
14207	316	58	55	2025-12-11 15:57:22	2025-12-11 15:57:34
14209	316	63	55	2025-12-11 15:57:22	2025-12-11 15:57:34
14211	316	66	55	2025-12-11 15:57:22	2025-12-11 15:57:34
14213	316	67	55	2025-12-11 15:57:22	2025-12-11 15:57:34
14215	316	68	55	2025-12-11 15:57:22	2025-12-11 15:57:34
14217	316	69	55	2025-12-11 15:57:22	2025-12-11 15:57:34
14219	316	70	55	2025-12-11 15:57:22	2025-12-11 15:57:34
14221	316	71	55	2025-12-11 15:57:22	2025-12-11 15:57:34
14223	316	124	66	2025-12-11 15:57:22	2025-12-11 15:57:34
14225	316	125	66	2025-12-11 15:57:22	2025-12-11 15:57:34
14227	316	128	66	2025-12-11 15:57:22	2025-12-11 15:57:34
14229	316	75	55	2025-12-11 15:57:22	2025-12-11 15:57:34
14231	316	76	55	2025-12-11 15:57:22	2025-12-11 15:57:34
14233	316	78	55	2025-12-11 15:57:22	2025-12-11 15:57:34
14235	316	129	66	2025-12-11 15:57:22	2025-12-11 15:57:34
14237	316	200	77	2025-12-11 15:57:22	2025-12-11 15:57:34
14240	316	50	88	2025-12-11 15:57:22	2025-12-11 15:57:34
14241	316	194	55	2025-12-11 15:57:22	2025-12-11 15:57:34
14242	316	251	88	2025-12-11 15:57:22	2025-12-11 15:57:34
14244	316	131	66	2025-12-11 15:57:22	2025-12-11 15:57:34
14246	316	133	66	2025-12-11 15:57:22	2025-12-11 15:57:34
14248	316	135	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14250	316	142	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14252	316	237	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14254	316	258	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14256	316	242	77	2025-12-11 15:57:22	2025-12-11 15:57:35
14259	248	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14261	269	316	77	2025-12-11 15:57:22	2025-12-11 15:57:22
14263	177	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14267	209	316	77	2025-12-11 15:57:22	2025-12-11 15:57:22
14270	238	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14272	249	316	77	2025-12-11 15:57:22	2025-12-11 15:57:22
14274	252	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14276	264	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14278	270	316	66	2025-12-11 15:57:22	2025-12-11 15:57:22
14280	210	316	100	2025-12-11 15:57:22	2025-12-11 15:57:22
14282	191	316	66	2025-12-11 15:57:22	2025-12-11 15:57:22
14284	196	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14286	97	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14288	99	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14292	79	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14294	85	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14296	86	316	66	2025-12-11 15:57:22	2025-12-11 15:57:22
14298	88	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14300	93	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14303	226	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14305	239	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14307	271	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14310	113	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14312	114	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14314	115	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14316	117	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14318	119	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14320	120	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14322	122	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14324	123	316	66	2025-12-11 15:57:22	2025-12-11 15:57:22
14326	145	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14328	143	316	66	2025-12-11 15:57:22	2025-12-11 15:57:22
14330	272	316	77	2025-12-11 15:57:22	2025-12-11 15:57:22
14332	139	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14334	140	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14336	141	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14338	147	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14341	149	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14343	152	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14345	153	316	44	2025-12-11 15:57:22	2025-12-11 15:57:22
14347	173	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14349	240	316	55	2025-12-11 15:57:22	2025-12-11 15:57:22
14351	254	316	77	2025-12-11 15:57:22	2025-12-11 15:57:22
14353	262	316	77	2025-12-11 15:57:22	2025-12-11 15:57:22
14356	276	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14358	278	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14362	284	316	77	2025-12-11 15:57:22	2025-12-11 15:57:22
14364	290	316	77	2025-12-11 15:57:22	2025-12-11 15:57:22
14260	316	269	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14262	316	177	55	2025-12-11 15:57:22	2025-12-11 15:57:35
14264	316	195	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14265	316	202	55	2025-12-11 15:57:22	2025-12-11 15:57:35
14266	316	209	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14268	316	215	55	2025-12-11 15:57:22	2025-12-11 15:57:35
14269	316	238	77	2025-12-11 15:57:22	2025-12-11 15:57:35
14271	316	249	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14273	316	252	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14277	316	270	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14279	316	210	77	2025-12-11 15:57:22	2025-12-11 15:57:35
14281	316	191	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14283	316	196	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14285	316	97	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14287	316	99	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14289	316	100	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14290	316	102	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14291	316	79	55	2025-12-11 15:57:22	2025-12-11 15:57:35
14293	316	85	55	2025-12-11 15:57:22	2025-12-11 15:57:35
14295	316	86	55	2025-12-11 15:57:22	2025-12-11 15:57:35
14297	316	88	55	2025-12-11 15:57:22	2025-12-11 15:57:35
14299	316	93	55	2025-12-11 15:57:22	2025-12-11 15:57:35
14301	316	253	55	2025-12-11 15:57:22	2025-12-11 15:57:35
14302	316	226	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14304	316	239	77	2025-12-11 15:57:22	2025-12-11 15:57:35
14306	316	271	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14308	316	104	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14311	316	114	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14313	316	115	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14315	316	117	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14317	316	119	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14319	316	120	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14321	316	122	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14323	316	123	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14325	316	145	55	2025-12-11 15:57:22	2025-12-11 15:57:35
14327	316	143	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14329	316	272	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14331	316	139	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14333	316	140	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14335	316	141	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14337	316	147	55	2025-12-11 15:57:22	2025-12-11 15:57:35
14339	316	148	55	2025-12-11 15:57:22	2025-12-11 15:57:35
14340	316	149	55	2025-12-11 15:57:22	2025-12-11 15:57:35
14342	316	152	55	2025-12-11 15:57:22	2025-12-11 15:57:35
14344	316	153	55	2025-12-11 15:57:22	2025-12-11 15:57:35
14348	316	240	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14350	316	254	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14352	316	262	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14354	316	274	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14355	316	276	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14357	316	278	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14361	316	284	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14363	316	290	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14360	280	316	100	2025-12-11 15:57:22	2025-12-11 16:49:08
14359	316	280	77	2025-12-11 15:57:22	2025-12-11 16:49:08
14366	285	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14368	292	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14370	293	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14372	298	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14374	302	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14376	304	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14378	305	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14380	306	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14383	310	316	77	2025-12-11 15:57:22	2025-12-11 15:57:22
15472	168	325	100	2025-12-22 17:20:12	2025-12-22 17:20:12
14387	315	316	88	2025-12-11 15:57:22	2025-12-11 15:57:22
14181	316	54	66	2025-12-11 15:57:22	2025-12-11 15:57:34
14201	316	250	88	2025-12-11 15:57:22	2025-12-11 15:57:34
14239	316	265	66	2025-12-11 15:57:22	2025-12-11 15:57:34
14258	316	248	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14275	316	264	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14309	316	113	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14346	316	173	55	2025-12-11 15:57:22	2025-12-11 15:57:35
14365	316	285	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14367	316	292	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14369	316	293	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14371	316	298	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14373	316	302	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14375	316	304	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14377	316	305	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14379	316	306	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14381	316	307	66	2025-12-11 15:57:22	2025-12-11 15:57:35
14382	316	310	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14437	75	317	55	2025-12-11 16:40:03	2025-12-11 16:40:03
14386	316	315	88	2025-12-11 15:57:22	2025-12-11 15:57:35
14384	316	313	77	2025-12-11 15:57:22	2025-12-11 16:09:38
14439	76	317	55	2025-12-11 16:40:03	2025-12-11 16:40:03
15473	325	189	100	2025-12-22 17:20:12	2025-12-22 17:20:12
13959	313	234	100	2025-11-24 11:20:11	2025-12-11 16:57:02
14388	317	54	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14389	54	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14390	317	165	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14391	165	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14392	317	197	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14393	197	317	88	2025-12-11 16:40:03	2025-12-11 16:40:03
14394	317	204	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14395	204	317	88	2025-12-11 16:40:03	2025-12-11 16:40:03
14396	317	212	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14397	212	317	88	2025-12-11 16:40:03	2025-12-11 16:40:03
14398	317	230	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14399	230	317	88	2025-12-11 16:40:03	2025-12-11 16:40:03
14400	317	235	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14401	235	317	88	2025-12-11 16:40:03	2025-12-11 16:40:03
14403	241	317	88	2025-12-11 16:40:03	2025-12-11 16:40:03
14404	317	245	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14405	245	317	66	2025-12-11 16:40:03	2025-12-11 16:40:03
14406	317	247	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14407	247	317	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14408	317	250	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14409	250	317	66	2025-12-11 16:40:03	2025-12-11 16:40:03
14410	317	255	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14411	255	317	88	2025-12-11 16:40:03	2025-12-11 16:40:03
14413	56	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14415	58	317	55	2025-12-11 16:40:03	2025-12-11 16:40:03
14417	63	317	55	2025-12-11 16:40:03	2025-12-11 16:40:03
14419	66	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14421	67	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14423	68	317	66	2025-12-11 16:40:03	2025-12-11 16:40:03
14425	69	317	66	2025-12-11 16:40:03	2025-12-11 16:40:03
14427	70	317	55	2025-12-11 16:40:03	2025-12-11 16:40:03
14429	71	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14430	317	124	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14431	124	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14432	317	125	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14433	125	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14434	317	128	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14435	128	317	55	2025-12-11 16:40:03	2025-12-11 16:40:03
14441	78	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14442	317	129	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14443	129	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14444	317	200	88	2025-12-11 16:40:03	2025-12-11 16:40:03
14445	200	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14446	317	265	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14447	317	50	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14449	317	251	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14450	251	317	88	2025-12-11 16:40:03	2025-12-11 16:40:03
14451	317	131	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14452	131	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14453	317	133	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14454	133	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14455	317	135	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14456	135	317	55	2025-12-11 16:40:03	2025-12-11 16:40:03
14457	317	142	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14458	142	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14459	317	237	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14460	237	317	66	2025-12-11 16:40:03	2025-12-11 16:40:03
14461	317	258	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14462	258	317	88	2025-12-11 16:40:03	2025-12-11 16:40:03
14412	317	56	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14414	317	58	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14416	317	63	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14418	317	66	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14420	317	67	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14422	317	68	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14424	317	69	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14426	317	70	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14428	317	71	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14436	317	75	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14438	317	76	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14440	317	78	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14448	317	194	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14463	317	242	88	2025-12-11 16:40:03	2025-12-11 16:40:03
14464	242	317	66	2025-12-11 16:40:03	2025-12-11 16:40:03
14465	317	248	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14466	248	317	55	2025-12-11 16:40:03	2025-12-11 16:40:03
14467	317	269	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14468	269	317	77	2025-12-11 16:40:03	2025-12-11 16:40:03
15474	189	325	44	2025-12-22 17:20:12	2025-12-22 17:20:12
14470	177	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14471	317	195	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14473	317	209	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14474	209	317	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14476	317	238	88	2025-12-11 16:40:03	2025-12-11 16:40:03
14477	238	317	55	2025-12-11 16:40:03	2025-12-11 16:40:03
14478	317	249	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14479	249	317	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14480	317	252	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14481	252	317	88	2025-12-11 16:40:03	2025-12-11 16:40:03
14482	317	264	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14483	264	317	55	2025-12-11 16:40:03	2025-12-11 16:40:03
14484	317	270	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14485	270	317	66	2025-12-11 16:40:03	2025-12-11 16:40:03
14487	210	317	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14488	317	191	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14489	191	317	66	2025-12-11 16:40:03	2025-12-11 16:40:03
14490	317	196	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14491	196	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14492	317	97	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14493	97	317	55	2025-12-11 16:40:03	2025-12-11 16:40:03
14494	317	99	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14495	99	317	55	2025-12-11 16:40:03	2025-12-11 16:40:03
14496	317	100	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14497	317	102	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14499	79	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14501	85	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14503	86	317	66	2025-12-11 16:40:03	2025-12-11 16:40:03
14505	88	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14507	93	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14509	317	226	100	2025-12-11 16:40:03	2025-12-11 16:40:03
14510	226	317	88	2025-12-11 16:40:03	2025-12-11 16:40:03
14512	239	317	55	2025-12-11 16:40:03	2025-12-11 16:40:03
14513	317	271	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14514	271	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14515	317	104	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14516	317	113	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14517	113	317	55	2025-12-11 16:40:03	2025-12-11 16:40:03
14518	317	114	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14519	114	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14520	317	115	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14521	115	317	44	2025-12-11 16:40:03	2025-12-11 16:40:03
14522	317	117	77	2025-12-11 16:40:03	2025-12-11 16:40:03
14523	117	317	44	2025-12-11 16:40:04	2025-12-11 16:40:04
14524	317	119	77	2025-12-11 16:40:04	2025-12-11 16:40:04
14525	119	317	55	2025-12-11 16:40:04	2025-12-11 16:40:04
14526	317	120	77	2025-12-11 16:40:04	2025-12-11 16:40:04
14527	120	317	55	2025-12-11 16:40:04	2025-12-11 16:40:04
14528	317	122	77	2025-12-11 16:40:04	2025-12-11 16:40:04
14529	122	317	44	2025-12-11 16:40:04	2025-12-11 16:40:04
14530	317	123	77	2025-12-11 16:40:04	2025-12-11 16:40:04
14531	123	317	66	2025-12-11 16:40:04	2025-12-11 16:40:04
14533	145	317	55	2025-12-11 16:40:04	2025-12-11 16:40:04
14534	317	143	77	2025-12-11 16:40:04	2025-12-11 16:40:04
14535	143	317	66	2025-12-11 16:40:04	2025-12-11 16:40:04
14536	317	272	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14537	272	317	77	2025-12-11 16:40:04	2025-12-11 16:40:04
14538	317	139	77	2025-12-11 16:40:04	2025-12-11 16:40:04
14539	139	317	44	2025-12-11 16:40:04	2025-12-11 16:40:04
14540	317	140	77	2025-12-11 16:40:04	2025-12-11 16:40:04
14541	140	317	55	2025-12-11 16:40:04	2025-12-11 16:40:04
14542	317	141	77	2025-12-11 16:40:04	2025-12-11 16:40:04
14543	141	317	55	2025-12-11 16:40:04	2025-12-11 16:40:04
14545	147	317	55	2025-12-11 16:40:04	2025-12-11 16:40:04
14548	149	317	44	2025-12-11 16:40:04	2025-12-11 16:40:04
14550	152	317	44	2025-12-11 16:40:04	2025-12-11 16:40:04
14552	153	317	44	2025-12-11 16:40:04	2025-12-11 16:40:04
14554	173	317	55	2025-12-11 16:40:04	2025-12-11 16:40:04
14555	317	240	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14556	240	317	55	2025-12-11 16:40:04	2025-12-11 16:40:04
14557	317	254	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14558	254	317	77	2025-12-11 16:40:04	2025-12-11 16:40:04
14559	317	262	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14560	262	317	77	2025-12-11 16:40:04	2025-12-11 16:40:04
14561	317	274	77	2025-12-11 16:40:04	2025-12-11 16:40:04
14562	317	276	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14563	276	317	88	2025-12-11 16:40:04	2025-12-11 16:40:04
14564	317	278	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14565	278	317	88	2025-12-11 16:40:04	2025-12-11 16:40:04
14568	317	284	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14569	284	317	77	2025-12-11 16:40:04	2025-12-11 16:40:04
14472	317	202	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14475	317	215	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14486	317	210	88	2025-12-11 16:40:03	2025-12-11 16:45:42
14498	317	79	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14500	317	85	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14502	317	86	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14504	317	88	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14506	317	93	66	2025-12-11 16:40:03	2025-12-11 16:45:43
14508	317	253	66	2025-12-11 16:40:03	2025-12-11 16:45:43
14532	317	145	66	2025-12-11 16:40:04	2025-12-11 16:45:43
14544	317	147	66	2025-12-11 16:40:04	2025-12-11 16:45:43
14546	317	148	66	2025-12-11 16:40:04	2025-12-11 16:45:43
14547	317	149	66	2025-12-11 16:40:04	2025-12-11 16:45:43
14549	317	152	66	2025-12-11 16:40:04	2025-12-11 16:45:43
14551	317	153	66	2025-12-11 16:40:04	2025-12-11 16:45:43
14553	317	173	66	2025-12-11 16:40:04	2025-12-11 16:45:43
14567	280	317	88	2025-12-11 16:40:04	2025-12-11 16:56:31
14566	317	280	100	2025-12-11 16:40:04	2025-12-11 16:56:31
14570	317	290	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14571	290	317	77	2025-12-11 16:40:04	2025-12-11 16:40:04
14572	317	285	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14573	285	317	88	2025-12-11 16:40:04	2025-12-11 16:40:04
14574	317	292	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14575	292	317	88	2025-12-11 16:40:04	2025-12-11 16:40:04
14576	317	293	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14577	293	317	88	2025-12-11 16:40:04	2025-12-11 16:40:04
14578	317	298	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14579	298	317	88	2025-12-11 16:40:04	2025-12-11 16:40:04
14580	317	302	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14581	302	317	88	2025-12-11 16:40:04	2025-12-11 16:40:04
14582	317	304	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14583	304	317	88	2025-12-11 16:40:04	2025-12-11 16:40:04
14584	317	305	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14585	305	317	88	2025-12-11 16:40:04	2025-12-11 16:40:04
14586	317	306	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14587	306	317	88	2025-12-11 16:40:04	2025-12-11 16:40:04
14588	317	307	77	2025-12-11 16:40:04	2025-12-11 16:40:04
14589	317	310	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14590	310	317	77	2025-12-11 16:40:04	2025-12-11 16:40:04
14591	317	315	100	2025-12-11 16:40:04	2025-12-11 16:40:04
14592	315	317	88	2025-12-11 16:40:04	2025-12-11 16:40:04
14402	317	241	88	2025-12-11 16:40:03	2025-12-11 16:45:42
14469	317	177	66	2025-12-11 16:40:03	2025-12-11 16:45:42
14511	317	239	88	2025-12-11 16:40:03	2025-12-11 16:45:43
10455	280	279	100	2025-09-04 12:44:37	2025-12-11 16:49:08
10639	280	291	100	2025-09-04 18:30:55	2025-12-11 16:49:08
9761	280	288	100	2025-08-19 07:31:23	2025-12-11 16:49:08
14648	136	320	44	2025-12-15 17:26:03	2025-12-15 17:26:03
14649	320	137	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14650	137	320	66	2025-12-15 17:26:03	2025-12-15 17:26:03
14595	211	313	44	2025-12-11 16:53:06	2025-12-11 16:53:06
14651	320	138	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14652	138	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14653	320	224	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14654	224	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14656	168	320	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14385	313	316	100	2025-12-11 15:57:22	2025-12-11 16:57:02
14594	313	317	100	2025-12-11 16:51:21	2025-12-11 16:57:02
14593	317	313	88	2025-12-11 16:40:04	2025-12-11 16:57:02
15475	325	222	100	2025-12-22 17:20:12	2025-12-22 17:20:12
14597	174	320	55	2025-12-15 17:26:02	2025-12-15 17:26:02
14598	320	181	77	2025-12-15 17:26:02	2025-12-15 17:26:02
14599	320	193	100	2025-12-15 17:26:02	2025-12-15 17:26:02
14600	193	320	66	2025-12-15 17:26:02	2025-12-15 17:26:02
14601	320	223	100	2025-12-15 17:26:02	2025-12-15 17:26:02
14602	223	320	55	2025-12-15 17:26:02	2025-12-15 17:26:02
14603	320	263	100	2025-12-15 17:26:02	2025-12-15 17:26:02
14604	263	320	77	2025-12-15 17:26:02	2025-12-15 17:26:02
14605	320	268	100	2025-12-15 17:26:02	2025-12-15 17:26:02
14606	268	320	88	2025-12-15 17:26:02	2025-12-15 17:26:02
14608	55	320	44	2025-12-15 17:26:02	2025-12-15 17:26:02
14610	57	320	44	2025-12-15 17:26:02	2025-12-15 17:26:02
14612	59	320	44	2025-12-15 17:26:02	2025-12-15 17:26:02
14614	60	320	44	2025-12-15 17:26:02	2025-12-15 17:26:02
14616	61	320	55	2025-12-15 17:26:02	2025-12-15 17:26:02
14620	65	320	44	2025-12-15 17:26:02	2025-12-15 17:26:02
14622	72	320	44	2025-12-15 17:26:02	2025-12-15 17:26:02
14624	73	320	55	2025-12-15 17:26:02	2025-12-15 17:26:02
14625	320	126	77	2025-12-15 17:26:02	2025-12-15 17:26:02
14626	126	320	55	2025-12-15 17:26:02	2025-12-15 17:26:02
14627	320	127	77	2025-12-15 17:26:02	2025-12-15 17:26:02
14628	127	320	55	2025-12-15 17:26:02	2025-12-15 17:26:02
14629	320	166	77	2025-12-15 17:26:02	2025-12-15 17:26:02
14630	166	320	44	2025-12-15 17:26:02	2025-12-15 17:26:02
14632	74	320	55	2025-12-15 17:26:02	2025-12-15 17:26:02
14634	77	320	66	2025-12-15 17:26:02	2025-12-15 17:26:02
14635	320	130	77	2025-12-15 17:26:02	2025-12-15 17:26:02
14636	130	320	55	2025-12-15 17:26:02	2025-12-15 17:26:02
14637	320	51	100	2025-12-15 17:26:02	2025-12-15 17:26:02
14638	51	320	88	2025-12-15 17:26:02	2025-12-15 17:26:02
14639	320	214	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14641	320	231	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14642	231	320	88	2025-12-15 17:26:03	2025-12-15 17:26:03
14643	320	132	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14644	132	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14645	320	134	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14646	134	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14647	320	136	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14657	320	189	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14658	189	320	44	2025-12-15 17:26:03	2025-12-15 17:26:03
14659	320	222	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14660	222	320	66	2025-12-15 17:26:03	2025-12-15 17:26:03
14661	320	232	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14662	232	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14664	243	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14665	320	261	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14666	261	320	88	2025-12-15 17:26:03	2025-12-15 17:26:03
14668	171	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14669	320	179	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14607	320	55	66	2025-12-15 17:26:02	2025-12-15 17:26:12
14609	320	57	66	2025-12-15 17:26:02	2025-12-15 17:26:12
14611	320	59	66	2025-12-15 17:26:02	2025-12-15 17:26:12
14613	320	60	66	2025-12-15 17:26:02	2025-12-15 17:26:12
14615	320	61	66	2025-12-15 17:26:02	2025-12-15 17:26:12
14617	320	62	66	2025-12-15 17:26:02	2025-12-15 17:26:12
14619	320	65	66	2025-12-15 17:26:02	2025-12-15 17:26:12
14621	320	72	66	2025-12-15 17:26:02	2025-12-15 17:26:12
14623	320	73	66	2025-12-15 17:26:02	2025-12-15 17:26:12
14631	320	74	66	2025-12-15 17:26:02	2025-12-15 17:26:12
14633	320	77	66	2025-12-15 17:26:02	2025-12-15 17:26:13
14640	320	176	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14655	320	168	88	2025-12-15 17:26:03	2025-12-15 17:26:13
14663	320	243	88	2025-12-15 17:26:03	2025-12-15 17:26:13
14667	320	171	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14670	179	320	66	2025-12-15 17:26:03	2025-12-15 17:26:03
14671	320	94	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14672	94	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14673	320	95	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14674	95	320	44	2025-12-15 17:26:03	2025-12-15 17:26:03
14675	320	96	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14676	96	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14677	320	98	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14678	98	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14679	320	101	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14680	320	103	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14681	103	320	44	2025-12-15 17:26:03	2025-12-15 17:26:03
15476	222	325	66	2025-12-22 17:20:12	2025-12-22 17:20:12
14683	80	320	44	2025-12-15 17:26:03	2025-12-15 17:26:03
14686	82	320	66	2025-12-15 17:26:03	2025-12-15 17:26:03
14688	83	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14690	84	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14692	87	320	44	2025-12-15 17:26:03	2025-12-15 17:26:03
14694	89	320	44	2025-12-15 17:26:03	2025-12-15 17:26:03
14696	90	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14698	91	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14700	92	320	44	2025-12-15 17:26:03	2025-12-15 17:26:03
14701	320	244	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14702	244	320	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14705	320	233	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14706	233	320	44	2025-12-15 17:26:03	2025-12-15 17:26:03
14707	320	266	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14708	266	320	88	2025-12-15 17:26:03	2025-12-15 17:26:03
14709	320	105	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14710	105	320	44	2025-12-15 17:26:03	2025-12-15 17:26:03
14711	320	106	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14712	320	107	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14713	320	108	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14714	108	320	66	2025-12-15 17:26:03	2025-12-15 17:26:03
14715	320	109	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14716	320	110	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14717	320	111	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14718	111	320	44	2025-12-15 17:26:03	2025-12-15 17:26:03
14719	320	112	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14720	112	320	66	2025-12-15 17:26:03	2025-12-15 17:26:03
14721	320	116	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14722	116	320	44	2025-12-15 17:26:03	2025-12-15 17:26:03
14723	320	118	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14724	118	320	44	2025-12-15 17:26:03	2025-12-15 17:26:03
14725	320	121	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14726	121	320	44	2025-12-15 17:26:03	2025-12-15 17:26:03
14728	144	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14730	146	320	44	2025-12-15 17:26:03	2025-12-15 17:26:03
14731	320	267	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14732	267	320	66	2025-12-15 17:26:03	2025-12-15 17:26:03
14734	150	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14736	320	53	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14738	320	227	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14739	227	320	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14740	320	211	88	2025-12-15 17:26:03	2025-12-15 17:26:03
14741	320	234	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14742	234	320	66	2025-12-15 17:26:03	2025-12-15 17:26:03
14743	320	273	88	2025-12-15 17:26:03	2025-12-15 17:26:03
14744	273	320	55	2025-12-15 17:26:03	2025-12-15 17:26:03
14745	320	279	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14746	279	320	88	2025-12-15 17:26:03	2025-12-15 17:26:03
14747	320	277	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14748	277	320	66	2025-12-15 17:26:03	2025-12-15 17:26:03
14749	320	291	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14750	291	320	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14752	246	320	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14753	320	283	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14754	283	320	88	2025-12-15 17:26:03	2025-12-15 17:26:03
14755	320	286	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14756	286	320	88	2025-12-15 17:26:03	2025-12-15 17:26:03
14757	320	287	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14758	287	320	88	2025-12-15 17:26:03	2025-12-15 17:26:03
14759	320	288	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14760	288	320	66	2025-12-15 17:26:03	2025-12-15 17:26:03
14761	320	289	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14762	289	320	88	2025-12-15 17:26:03	2025-12-15 17:26:03
14763	320	294	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14764	294	320	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14765	320	299	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14766	299	320	88	2025-12-15 17:26:03	2025-12-15 17:26:03
14767	320	229	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14768	229	320	88	2025-12-15 17:26:03	2025-12-15 17:26:03
14769	320	300	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14770	300	320	88	2025-12-15 17:26:03	2025-12-15 17:26:03
14771	320	303	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14772	303	320	88	2025-12-15 17:26:03	2025-12-15 17:26:03
14773	320	192	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14774	192	320	66	2025-12-15 17:26:03	2025-12-15 17:26:03
14775	320	311	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14776	311	320	66	2025-12-15 17:26:03	2025-12-15 17:26:03
14684	320	81	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14685	320	82	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14687	320	83	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14689	320	84	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14691	320	87	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14693	320	89	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14695	320	90	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14697	320	91	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14699	320	92	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14704	320	216	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14727	320	144	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14729	320	146	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14733	320	150	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14735	320	151	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14737	320	219	88	2025-12-15 17:26:03	2025-12-15 17:26:13
14751	320	246	88	2025-12-15 17:26:03	2025-12-15 17:26:13
14777	320	312	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14778	312	320	66	2025-12-15 17:26:03	2025-12-15 17:26:03
14779	320	316	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14780	316	320	77	2025-12-15 17:26:03	2025-12-15 17:26:03
14781	320	317	100	2025-12-15 17:26:03	2025-12-15 17:26:03
14782	317	320	88	2025-12-15 17:26:03	2025-12-15 17:26:03
14596	320	174	66	2025-12-15 17:26:02	2025-12-15 17:26:12
14618	320	64	66	2025-12-15 17:26:02	2025-12-15 17:26:12
14682	320	80	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14703	320	260	66	2025-12-15 17:26:03	2025-12-15 17:26:13
14783	319	54	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14784	54	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
15477	325	232	100	2025-12-22 17:20:12	2025-12-22 17:20:12
14786	165	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14788	197	319	88	2025-12-15 17:35:22	2025-12-15 17:35:22
14790	204	319	88	2025-12-15 17:35:22	2025-12-15 17:35:22
14792	212	319	88	2025-12-15 17:35:22	2025-12-15 17:35:22
14794	230	319	88	2025-12-15 17:35:22	2025-12-15 17:35:22
14796	235	319	88	2025-12-15 17:35:22	2025-12-15 17:35:22
14798	241	319	88	2025-12-15 17:35:22	2025-12-15 17:35:22
14800	245	319	66	2025-12-15 17:35:22	2025-12-15 17:35:22
14801	319	247	77	2025-12-15 17:35:22	2025-12-15 17:35:22
14802	247	319	77	2025-12-15 17:35:22	2025-12-15 17:35:22
14804	250	319	66	2025-12-15 17:35:22	2025-12-15 17:35:22
14806	255	319	88	2025-12-15 17:35:22	2025-12-15 17:35:22
14808	56	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14809	319	58	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14810	58	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14811	319	63	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14812	63	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14813	319	66	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14814	66	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14816	67	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14817	319	68	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14818	68	319	66	2025-12-15 17:35:22	2025-12-15 17:35:22
14819	319	69	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14820	69	319	66	2025-12-15 17:35:22	2025-12-15 17:35:22
14821	319	70	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14822	70	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14824	71	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14825	319	124	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14826	124	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14827	319	125	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14828	125	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14830	128	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14831	319	75	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14832	75	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14833	319	76	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14834	76	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14835	319	78	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14836	78	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14838	129	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14840	200	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14842	319	50	77	2025-12-15 17:35:22	2025-12-15 17:35:22
14843	319	194	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14845	251	319	88	2025-12-15 17:35:22	2025-12-15 17:35:22
14846	319	131	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14847	131	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14849	133	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14850	319	135	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14851	135	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14852	319	142	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14853	142	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14855	237	319	66	2025-12-15 17:35:22	2025-12-15 17:35:22
14857	258	319	88	2025-12-15 17:35:22	2025-12-15 17:35:22
14859	242	319	66	2025-12-15 17:35:22	2025-12-15 17:35:22
14860	319	248	88	2025-12-15 17:35:22	2025-12-15 17:35:22
14861	248	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14863	269	319	77	2025-12-15 17:35:22	2025-12-15 17:35:22
14865	177	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14867	319	202	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14869	209	319	77	2025-12-15 17:35:22	2025-12-15 17:35:22
14870	319	215	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14871	319	238	66	2025-12-15 17:35:22	2025-12-15 17:35:22
14872	238	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14874	249	319	77	2025-12-15 17:35:22	2025-12-15 17:35:22
14876	252	319	88	2025-12-15 17:35:22	2025-12-15 17:35:22
14878	264	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14787	319	197	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14789	319	204	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14791	319	212	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14793	319	230	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14795	319	235	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14797	319	241	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14799	319	245	77	2025-12-15 17:35:22	2025-12-15 17:35:43
14803	319	250	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14805	319	255	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14815	319	67	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14823	319	71	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14829	319	128	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14837	319	129	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14839	319	200	55	2025-12-15 17:35:22	2025-12-15 17:35:43
14841	319	265	55	2025-12-15 17:35:22	2025-12-15 17:35:43
14844	319	251	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14848	319	133	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14854	319	237	88	2025-12-15 17:35:22	2025-12-15 17:35:43
14856	319	258	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14858	319	242	55	2025-12-15 17:35:22	2025-12-15 17:35:43
14862	319	269	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14864	319	177	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14866	319	195	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14868	319	209	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14873	319	249	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14875	319	252	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14877	319	264	77	2025-12-15 17:35:22	2025-12-15 17:35:43
14880	270	319	66	2025-12-15 17:35:22	2025-12-15 17:35:22
15478	232	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
14882	210	319	100	2025-12-15 17:35:22	2025-12-15 17:35:22
14884	191	319	66	2025-12-15 17:35:22	2025-12-15 17:35:22
14886	196	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14888	97	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14889	319	99	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14890	99	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14891	319	100	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14892	319	102	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14894	79	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14895	319	85	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14896	85	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14897	319	86	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14898	86	319	66	2025-12-15 17:35:22	2025-12-15 17:35:22
14899	319	88	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14900	88	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14901	319	93	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14902	93	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14905	226	319	88	2025-12-15 17:35:22	2025-12-15 17:35:22
14907	239	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14908	319	271	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14909	271	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14910	319	104	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14912	113	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14914	114	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14915	319	115	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14916	115	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14918	117	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14920	119	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14922	120	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14923	319	122	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14924	122	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14926	123	319	66	2025-12-15 17:35:22	2025-12-15 17:35:22
14928	145	319	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14930	143	319	66	2025-12-15 17:35:22	2025-12-15 17:35:22
14932	272	319	77	2025-12-15 17:35:22	2025-12-15 17:35:22
14933	319	139	55	2025-12-15 17:35:22	2025-12-15 17:35:22
14934	139	319	44	2025-12-15 17:35:22	2025-12-15 17:35:22
14936	140	319	55	2025-12-15 17:35:23	2025-12-15 17:35:23
14937	319	141	55	2025-12-15 17:35:23	2025-12-15 17:35:23
14938	141	319	55	2025-12-15 17:35:23	2025-12-15 17:35:23
14939	319	147	55	2025-12-15 17:35:23	2025-12-15 17:35:23
14940	147	319	55	2025-12-15 17:35:23	2025-12-15 17:35:23
14942	319	149	55	2025-12-15 17:35:23	2025-12-15 17:35:23
14943	149	319	44	2025-12-15 17:35:23	2025-12-15 17:35:23
14945	152	319	44	2025-12-15 17:35:23	2025-12-15 17:35:23
14947	153	319	44	2025-12-15 17:35:23	2025-12-15 17:35:23
14948	319	173	55	2025-12-15 17:35:23	2025-12-15 17:35:23
14949	173	319	55	2025-12-15 17:35:23	2025-12-15 17:35:23
14951	240	319	55	2025-12-15 17:35:23	2025-12-15 17:35:23
14953	254	319	77	2025-12-15 17:35:23	2025-12-15 17:35:23
14955	262	319	77	2025-12-15 17:35:23	2025-12-15 17:35:23
14958	276	319	88	2025-12-15 17:35:23	2025-12-15 17:35:23
14960	278	319	88	2025-12-15 17:35:23	2025-12-15 17:35:23
14962	280	319	88	2025-12-15 17:35:23	2025-12-15 17:35:23
14964	284	319	77	2025-12-15 17:35:23	2025-12-15 17:35:23
14966	290	319	77	2025-12-15 17:35:23	2025-12-15 17:35:23
14968	285	319	88	2025-12-15 17:35:23	2025-12-15 17:35:23
14970	292	319	88	2025-12-15 17:35:23	2025-12-15 17:35:23
14972	293	319	88	2025-12-15 17:35:23	2025-12-15 17:35:23
14974	298	319	88	2025-12-15 17:35:23	2025-12-15 17:35:23
14976	302	319	88	2025-12-15 17:35:23	2025-12-15 17:35:23
14978	304	319	88	2025-12-15 17:35:23	2025-12-15 17:35:23
14980	305	319	88	2025-12-15 17:35:23	2025-12-15 17:35:23
14982	306	319	88	2025-12-15 17:35:23	2025-12-15 17:35:23
14985	310	319	77	2025-12-15 17:35:23	2025-12-15 17:35:23
14883	319	191	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14885	319	196	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14887	319	97	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14893	319	79	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14903	319	253	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14904	319	226	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14906	319	239	77	2025-12-15 17:35:22	2025-12-15 17:35:43
14911	319	113	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14913	319	114	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14919	319	119	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14921	319	120	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14925	319	123	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14927	319	145	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14929	319	143	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14931	319	272	66	2025-12-15 17:35:22	2025-12-15 17:35:43
14935	319	140	44	2025-12-15 17:35:23	2025-12-15 17:35:43
14941	319	148	44	2025-12-15 17:35:23	2025-12-15 17:35:43
14944	319	152	44	2025-12-15 17:35:23	2025-12-15 17:35:43
14946	319	153	44	2025-12-15 17:35:23	2025-12-15 17:35:43
14950	319	240	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14952	319	254	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14954	319	262	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14956	319	274	55	2025-12-15 17:35:23	2025-12-15 17:35:43
14957	319	276	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14959	319	278	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14961	319	280	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14963	319	284	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14967	319	285	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14969	319	292	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14971	319	293	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14973	319	298	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14975	319	302	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14977	319	304	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14979	319	305	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14981	319	306	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14983	319	307	55	2025-12-15 17:35:23	2025-12-15 17:35:43
14984	319	310	77	2025-12-15 17:35:23	2025-12-15 17:35:43
14986	319	315	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14987	315	319	88	2025-12-15 17:35:23	2025-12-15 17:35:23
14989	313	319	88	2025-12-15 17:35:23	2025-12-15 17:35:23
14991	320	319	88	2025-12-15 17:35:23	2025-12-15 17:35:23
14785	319	165	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14807	319	56	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14879	319	270	77	2025-12-15 17:35:22	2025-12-15 17:35:43
14881	319	210	55	2025-12-15 17:35:22	2025-12-15 17:35:43
14917	319	117	44	2025-12-15 17:35:22	2025-12-15 17:35:43
14965	319	290	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14988	319	313	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14990	319	320	66	2025-12-15 17:35:23	2025-12-15 17:35:43
14992	321	54	77	2025-12-15 17:53:43	2025-12-15 17:53:43
14993	54	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
14994	321	165	77	2025-12-15 17:53:43	2025-12-15 17:53:43
14995	165	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
14996	321	197	100	2025-12-15 17:53:43	2025-12-15 17:53:43
14997	197	321	88	2025-12-15 17:53:43	2025-12-15 17:53:43
14998	321	204	100	2025-12-15 17:53:43	2025-12-15 17:53:43
14999	204	321	88	2025-12-15 17:53:43	2025-12-15 17:53:43
15000	321	212	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15001	212	321	88	2025-12-15 17:53:43	2025-12-15 17:53:43
15002	321	230	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15003	230	321	88	2025-12-15 17:53:43	2025-12-15 17:53:43
15004	321	235	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15005	235	321	88	2025-12-15 17:53:43	2025-12-15 17:53:43
15007	241	321	88	2025-12-15 17:53:43	2025-12-15 17:53:43
15008	321	245	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15009	245	321	66	2025-12-15 17:53:43	2025-12-15 17:53:43
15010	321	247	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15011	247	321	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15012	321	250	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15013	250	321	66	2025-12-15 17:53:43	2025-12-15 17:53:43
15014	321	255	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15015	255	321	88	2025-12-15 17:53:43	2025-12-15 17:53:43
15017	56	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15019	58	321	55	2025-12-15 17:53:43	2025-12-15 17:53:43
15021	63	321	55	2025-12-15 17:53:43	2025-12-15 17:53:43
15023	66	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15025	67	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15027	68	321	66	2025-12-15 17:53:43	2025-12-15 17:53:43
15029	69	321	66	2025-12-15 17:53:43	2025-12-15 17:53:43
15031	70	321	55	2025-12-15 17:53:43	2025-12-15 17:53:43
15033	71	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15034	321	124	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15035	124	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15036	321	125	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15037	125	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15038	321	128	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15039	128	321	55	2025-12-15 17:53:43	2025-12-15 17:53:43
15041	75	321	55	2025-12-15 17:53:43	2025-12-15 17:53:43
15043	76	321	55	2025-12-15 17:53:43	2025-12-15 17:53:43
15045	78	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15046	321	129	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15047	129	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15048	321	200	88	2025-12-15 17:53:43	2025-12-15 17:53:43
15049	200	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15050	321	265	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15051	321	50	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15053	321	251	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15054	251	321	88	2025-12-15 17:53:43	2025-12-15 17:53:43
15055	321	131	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15056	131	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15057	321	133	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15058	133	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15059	321	135	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15060	135	321	55	2025-12-15 17:53:43	2025-12-15 17:53:43
15061	321	142	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15062	142	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15063	321	237	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15064	237	321	66	2025-12-15 17:53:43	2025-12-15 17:53:43
15065	321	258	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15066	258	321	88	2025-12-15 17:53:43	2025-12-15 17:53:43
15067	321	242	88	2025-12-15 17:53:43	2025-12-15 17:53:43
15068	242	321	66	2025-12-15 17:53:43	2025-12-15 17:53:43
15069	321	248	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15070	248	321	55	2025-12-15 17:53:43	2025-12-15 17:53:43
15071	321	269	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15072	269	321	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15074	177	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15075	321	195	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15077	321	209	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15078	209	321	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15080	321	238	88	2025-12-15 17:53:43	2025-12-15 17:53:43
15081	238	321	55	2025-12-15 17:53:43	2025-12-15 17:53:43
15082	321	249	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15083	249	321	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15084	321	252	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15085	252	321	88	2025-12-15 17:53:43	2025-12-15 17:53:43
15086	321	264	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15087	264	321	55	2025-12-15 17:53:43	2025-12-15 17:53:43
15016	321	56	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15018	321	58	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15020	321	63	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15022	321	66	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15024	321	67	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15026	321	68	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15028	321	69	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15032	321	71	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15040	321	75	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15042	321	76	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15044	321	78	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15052	321	194	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15073	321	177	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15076	321	202	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15079	321	215	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15088	321	270	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15089	270	321	66	2025-12-15 17:53:43	2025-12-15 17:53:43
15480	243	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
15091	210	321	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15092	321	191	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15093	191	321	66	2025-12-15 17:53:43	2025-12-15 17:53:43
15094	321	196	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15095	196	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15096	321	97	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15097	97	321	55	2025-12-15 17:53:43	2025-12-15 17:53:43
15098	321	99	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15099	99	321	55	2025-12-15 17:53:43	2025-12-15 17:53:43
15100	321	100	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15101	321	102	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15103	79	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15105	85	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15107	86	321	66	2025-12-15 17:53:43	2025-12-15 17:53:43
15109	88	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15111	93	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15113	321	226	100	2025-12-15 17:53:43	2025-12-15 17:53:43
15114	226	321	88	2025-12-15 17:53:43	2025-12-15 17:53:43
15116	239	321	55	2025-12-15 17:53:43	2025-12-15 17:53:43
15117	321	271	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15118	271	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15119	321	104	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15120	321	113	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15121	113	321	55	2025-12-15 17:53:43	2025-12-15 17:53:43
15122	321	114	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15123	114	321	44	2025-12-15 17:53:43	2025-12-15 17:53:43
15124	321	115	77	2025-12-15 17:53:43	2025-12-15 17:53:43
15125	115	321	44	2025-12-15 17:53:44	2025-12-15 17:53:44
15126	321	117	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15127	117	321	44	2025-12-15 17:53:44	2025-12-15 17:53:44
15128	321	119	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15129	119	321	55	2025-12-15 17:53:44	2025-12-15 17:53:44
15130	321	120	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15131	120	321	55	2025-12-15 17:53:44	2025-12-15 17:53:44
15132	321	122	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15133	122	321	44	2025-12-15 17:53:44	2025-12-15 17:53:44
15134	321	123	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15135	123	321	66	2025-12-15 17:53:44	2025-12-15 17:53:44
15137	145	321	55	2025-12-15 17:53:44	2025-12-15 17:53:44
15138	321	143	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15139	143	321	66	2025-12-15 17:53:44	2025-12-15 17:53:44
15140	321	272	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15141	272	321	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15142	321	139	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15143	139	321	44	2025-12-15 17:53:44	2025-12-15 17:53:44
15144	321	140	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15145	140	321	55	2025-12-15 17:53:44	2025-12-15 17:53:44
15146	321	141	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15147	141	321	55	2025-12-15 17:53:44	2025-12-15 17:53:44
15149	147	321	55	2025-12-15 17:53:44	2025-12-15 17:53:44
15152	149	321	44	2025-12-15 17:53:44	2025-12-15 17:53:44
15154	152	321	44	2025-12-15 17:53:44	2025-12-15 17:53:44
15156	153	321	44	2025-12-15 17:53:44	2025-12-15 17:53:44
15158	173	321	55	2025-12-15 17:53:44	2025-12-15 17:53:44
15159	321	240	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15160	240	321	55	2025-12-15 17:53:44	2025-12-15 17:53:44
15161	321	254	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15162	254	321	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15163	321	262	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15164	262	321	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15165	321	274	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15166	321	276	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15167	276	321	88	2025-12-15 17:53:44	2025-12-15 17:53:44
15168	321	278	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15169	278	321	88	2025-12-15 17:53:44	2025-12-15 17:53:44
15170	321	280	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15171	280	321	88	2025-12-15 17:53:44	2025-12-15 17:53:44
15172	321	284	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15173	284	321	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15174	321	290	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15175	290	321	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15176	321	285	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15177	285	321	88	2025-12-15 17:53:44	2025-12-15 17:53:44
15178	321	292	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15179	292	321	88	2025-12-15 17:53:44	2025-12-15 17:53:44
15180	321	293	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15181	293	321	88	2025-12-15 17:53:44	2025-12-15 17:53:44
15182	321	298	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15183	298	321	88	2025-12-15 17:53:44	2025-12-15 17:53:44
15184	321	302	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15185	302	321	88	2025-12-15 17:53:44	2025-12-15 17:53:44
15186	321	304	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15187	304	321	88	2025-12-15 17:53:44	2025-12-15 17:53:44
15188	321	305	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15189	305	321	88	2025-12-15 17:53:44	2025-12-15 17:53:44
15190	321	306	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15191	306	321	88	2025-12-15 17:53:44	2025-12-15 17:53:44
15192	321	307	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15193	321	310	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15194	310	321	77	2025-12-15 17:53:44	2025-12-15 17:53:44
15102	321	79	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15104	321	85	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15106	321	86	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15108	321	88	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15110	321	93	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15112	321	253	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15115	321	239	88	2025-12-15 17:53:43	2025-12-15 17:54:26
15136	321	145	66	2025-12-15 17:53:44	2025-12-15 17:54:26
15148	321	147	66	2025-12-15 17:53:44	2025-12-15 17:54:26
15151	321	149	66	2025-12-15 17:53:44	2025-12-15 17:54:26
15153	321	152	66	2025-12-15 17:53:44	2025-12-15 17:54:26
15155	321	153	66	2025-12-15 17:53:44	2025-12-15 17:54:26
15157	321	173	66	2025-12-15 17:53:44	2025-12-15 17:54:26
15195	321	315	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15196	315	321	88	2025-12-15 17:53:44	2025-12-15 17:53:44
15197	321	313	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15198	313	321	88	2025-12-15 17:53:44	2025-12-15 17:53:44
15199	321	320	100	2025-12-15 17:53:44	2025-12-15 17:53:44
15200	320	321	88	2025-12-15 17:53:44	2025-12-15 17:53:44
15006	321	241	88	2025-12-15 17:53:43	2025-12-15 17:54:26
15030	321	70	66	2025-12-15 17:53:43	2025-12-15 17:54:26
15090	321	210	88	2025-12-15 17:53:43	2025-12-15 17:54:26
15150	321	148	66	2025-12-15 17:53:44	2025-12-15 17:54:26
15202	54	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15204	165	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15206	197	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15208	204	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15210	212	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15212	230	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15214	235	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15216	241	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15218	245	318	66	2025-12-17 06:58:24	2025-12-17 06:58:24
15220	247	318	77	2025-12-17 06:58:24	2025-12-17 06:58:24
15222	250	318	66	2025-12-17 06:58:24	2025-12-17 06:58:24
15224	255	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15226	56	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15228	58	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15230	63	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15232	66	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15234	67	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15236	68	318	66	2025-12-17 06:58:24	2025-12-17 06:58:24
15238	69	318	66	2025-12-17 06:58:24	2025-12-17 06:58:24
15240	70	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15242	71	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15244	124	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15246	125	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15248	128	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15250	75	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15252	76	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15254	78	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15256	129	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15258	200	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15260	318	50	100	2025-12-17 06:58:24	2025-12-17 06:58:24
15263	251	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15265	131	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15267	133	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15269	135	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15271	142	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15273	237	318	66	2025-12-17 06:58:24	2025-12-17 06:58:24
15275	258	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15277	242	318	66	2025-12-17 06:58:24	2025-12-17 06:58:24
15279	248	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15281	269	318	77	2025-12-17 06:58:24	2025-12-17 06:58:24
15283	177	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15284	318	195	77	2025-12-17 06:58:24	2025-12-17 06:58:24
15287	209	318	77	2025-12-17 06:58:24	2025-12-17 06:58:24
15290	238	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15292	249	318	77	2025-12-17 06:58:24	2025-12-17 06:58:24
15294	252	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15296	264	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15229	318	63	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15231	318	66	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15233	318	67	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15235	318	68	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15237	318	69	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15239	318	70	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15241	318	71	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15243	318	124	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15245	318	125	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15253	318	78	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15255	318	129	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15261	318	194	66	2025-12-17 06:58:24	2025-12-17 07:00:28
15285	318	202	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15286	318	209	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15289	318	238	77	2025-12-17 06:58:24	2025-12-17 07:57:15
15201	318	54	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15203	318	165	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15205	318	197	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15207	318	204	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15209	318	212	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15211	318	230	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15213	318	235	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15217	318	245	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15219	318	247	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15221	318	250	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15223	318	255	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15225	318	56	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15247	318	128	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15251	318	76	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15257	318	200	77	2025-12-17 06:58:24	2025-12-17 07:57:15
15259	318	265	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15262	318	251	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15264	318	131	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15266	318	133	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15268	318	135	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15270	318	142	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15272	318	237	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15274	318	258	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15276	318	242	77	2025-12-17 06:58:24	2025-12-17 07:57:15
15278	318	248	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15280	318	269	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15282	318	177	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15288	318	215	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15291	318	249	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15293	318	252	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15297	318	270	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15298	270	318	66	2025-12-17 06:58:24	2025-12-17 06:58:24
15300	210	318	100	2025-12-17 06:58:24	2025-12-17 06:58:24
15301	318	191	100	2025-12-17 06:58:24	2025-12-17 06:58:24
15304	196	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15306	97	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15308	99	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15312	79	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15314	85	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15316	86	318	66	2025-12-17 06:58:24	2025-12-17 06:58:24
15318	88	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15320	93	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15323	226	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15325	239	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15327	271	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15330	113	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15332	114	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15334	115	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15336	117	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15338	119	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15340	120	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15342	122	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15344	123	318	66	2025-12-17 06:58:24	2025-12-17 06:58:24
15346	145	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15348	143	318	66	2025-12-17 06:58:24	2025-12-17 06:58:24
15350	272	318	77	2025-12-17 06:58:24	2025-12-17 06:58:24
15352	139	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15354	140	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15356	141	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15358	147	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15361	149	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15363	152	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15365	153	318	44	2025-12-17 06:58:24	2025-12-17 06:58:24
15367	173	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15369	240	318	55	2025-12-17 06:58:24	2025-12-17 06:58:24
15371	254	318	77	2025-12-17 06:58:24	2025-12-17 06:58:24
15373	262	318	77	2025-12-17 06:58:24	2025-12-17 06:58:24
15376	276	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15378	278	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15380	280	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15382	284	318	77	2025-12-17 06:58:24	2025-12-17 06:58:24
15384	290	318	77	2025-12-17 06:58:24	2025-12-17 06:58:24
15386	285	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15388	292	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15390	293	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15392	298	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15394	302	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15396	304	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15398	305	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15400	306	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15403	310	318	77	2025-12-17 06:58:24	2025-12-17 06:58:24
15313	318	85	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15315	318	86	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15317	318	88	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15319	318	93	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15321	318	253	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15322	318	226	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15326	318	271	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15347	318	143	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15360	318	149	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15362	318	152	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15364	318	153	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15366	318	173	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15368	318	240	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15302	191	318	77	2025-12-17 06:58:24	2025-12-17 07:57:15
15303	318	196	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15305	318	97	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15307	318	99	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15309	318	100	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15310	318	102	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15311	318	79	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15324	318	239	77	2025-12-17 06:58:24	2025-12-17 07:57:15
15328	318	104	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15329	318	113	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15331	318	114	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15333	318	115	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15335	318	117	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15337	318	119	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15341	318	122	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15343	318	123	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15345	318	145	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15349	318	272	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15351	318	139	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15353	318	140	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15355	318	141	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15357	318	147	55	2025-12-17 06:58:24	2025-12-17 07:57:15
15370	318	254	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15372	318	262	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15374	318	274	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15375	318	276	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15377	318	278	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15379	318	280	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15381	318	284	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15383	318	290	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15385	318	285	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15387	318	292	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15391	318	298	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15393	318	302	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15395	318	304	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15397	318	305	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15399	318	306	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15401	318	307	66	2025-12-17 06:58:24	2025-12-17 07:57:15
15402	318	310	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15404	318	315	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15405	315	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15407	313	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15409	320	318	88	2025-12-17 06:58:24	2025-12-17 06:58:24
15406	318	313	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15408	318	320	88	2025-12-17 06:58:24	2025-12-17 07:57:15
15481	325	261	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15482	261	325	88	2025-12-22 17:20:12	2025-12-22 17:20:12
15484	171	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
15485	325	179	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15486	179	325	66	2025-12-22 17:20:12	2025-12-22 17:20:12
15487	325	94	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15488	94	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
15489	325	95	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15490	95	325	44	2025-12-22 17:20:12	2025-12-22 17:20:12
15491	325	96	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15492	96	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
15493	325	98	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15494	98	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
15495	325	101	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15496	325	103	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15497	103	325	44	2025-12-22 17:20:12	2025-12-22 17:20:12
15499	80	325	44	2025-12-22 17:20:12	2025-12-22 17:20:12
15502	82	325	66	2025-12-22 17:20:12	2025-12-22 17:20:12
15504	83	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
15506	84	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
15508	87	325	44	2025-12-22 17:20:12	2025-12-22 17:20:12
15510	89	325	44	2025-12-22 17:20:12	2025-12-22 17:20:12
15512	90	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
15514	91	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
15516	92	325	44	2025-12-22 17:20:12	2025-12-22 17:20:12
15517	325	244	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15518	244	325	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15521	325	233	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15522	233	325	44	2025-12-22 17:20:12	2025-12-22 17:20:12
15523	325	266	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15524	266	325	88	2025-12-22 17:20:12	2025-12-22 17:20:12
15525	325	105	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15526	105	325	44	2025-12-22 17:20:12	2025-12-22 17:20:12
15527	325	106	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15528	325	107	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15529	325	108	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15530	108	325	66	2025-12-22 17:20:12	2025-12-22 17:20:12
15531	325	109	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15532	325	110	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15533	325	111	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15534	111	325	44	2025-12-22 17:20:12	2025-12-22 17:20:12
15535	325	112	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15536	112	325	66	2025-12-22 17:20:12	2025-12-22 17:20:12
15537	325	116	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15538	116	325	44	2025-12-22 17:20:12	2025-12-22 17:20:12
15539	325	118	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15540	118	325	44	2025-12-22 17:20:12	2025-12-22 17:20:12
15541	325	121	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15542	121	325	44	2025-12-22 17:20:12	2025-12-22 17:20:12
15544	144	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
15546	146	325	44	2025-12-22 17:20:12	2025-12-22 17:20:12
15547	325	267	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15548	267	325	66	2025-12-22 17:20:12	2025-12-22 17:20:12
15550	150	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
15552	325	53	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15554	325	227	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15555	227	325	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15556	325	211	88	2025-12-22 17:20:12	2025-12-22 17:20:12
15557	325	234	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15558	234	325	66	2025-12-22 17:20:12	2025-12-22 17:20:12
15559	325	273	88	2025-12-22 17:20:12	2025-12-22 17:20:12
15560	273	325	55	2025-12-22 17:20:12	2025-12-22 17:20:12
15561	325	279	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15562	279	325	88	2025-12-22 17:20:12	2025-12-22 17:20:12
15563	325	277	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15564	277	325	66	2025-12-22 17:20:12	2025-12-22 17:20:12
15565	325	291	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15566	291	325	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15568	246	325	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15569	325	283	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15570	283	325	88	2025-12-22 17:20:12	2025-12-22 17:20:12
15571	325	286	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15572	286	325	88	2025-12-22 17:20:12	2025-12-22 17:20:12
15573	325	287	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15574	287	325	88	2025-12-22 17:20:12	2025-12-22 17:20:12
15575	325	288	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15576	288	325	66	2025-12-22 17:20:12	2025-12-22 17:20:12
15577	325	289	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15578	289	325	88	2025-12-22 17:20:12	2025-12-22 17:20:12
15579	325	294	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15580	294	325	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15581	325	299	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15582	299	325	88	2025-12-22 17:20:12	2025-12-22 17:20:12
15498	325	80	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15500	325	81	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15501	325	82	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15503	325	83	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15505	325	84	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15507	325	87	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15509	325	89	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15513	325	91	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15515	325	92	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15519	325	260	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15520	325	216	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15543	325	144	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15545	325	146	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15549	325	150	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15551	325	151	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15553	325	219	88	2025-12-22 17:20:12	2025-12-22 17:21:38
15567	325	246	88	2025-12-22 17:20:12	2025-12-22 17:21:38
15584	229	325	88	2025-12-22 17:20:12	2025-12-22 17:20:12
15585	325	300	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15586	300	325	88	2025-12-22 17:20:12	2025-12-22 17:20:12
15587	325	303	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15588	303	325	88	2025-12-22 17:20:12	2025-12-22 17:20:12
15589	325	192	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15590	192	325	66	2025-12-22 17:20:12	2025-12-22 17:20:12
15591	325	311	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15592	311	325	66	2025-12-22 17:20:12	2025-12-22 17:20:12
15593	325	312	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15594	312	325	66	2025-12-22 17:20:12	2025-12-22 17:20:12
15595	325	316	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15596	316	325	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15597	325	317	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15598	317	325	88	2025-12-22 17:20:12	2025-12-22 17:20:12
15599	325	319	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15600	319	325	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15601	325	321	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15602	321	325	88	2025-12-22 17:20:12	2025-12-22 17:20:12
15603	325	318	100	2025-12-22 17:20:12	2025-12-22 17:20:12
15604	318	325	77	2025-12-22 17:20:12	2025-12-22 17:20:12
15412	325	174	66	2025-12-22 17:20:11	2025-12-22 17:21:38
15423	325	55	66	2025-12-22 17:20:11	2025-12-22 17:21:38
15425	325	57	66	2025-12-22 17:20:11	2025-12-22 17:21:38
15427	325	59	66	2025-12-22 17:20:11	2025-12-22 17:21:38
15429	325	60	66	2025-12-22 17:20:11	2025-12-22 17:21:38
15431	325	61	66	2025-12-22 17:20:11	2025-12-22 17:21:38
15433	325	62	66	2025-12-22 17:20:11	2025-12-22 17:21:38
15434	325	64	66	2025-12-22 17:20:11	2025-12-22 17:21:38
15435	325	65	66	2025-12-22 17:20:11	2025-12-22 17:21:38
15437	325	72	66	2025-12-22 17:20:11	2025-12-22 17:21:38
15439	325	73	66	2025-12-22 17:20:11	2025-12-22 17:21:38
15447	325	74	66	2025-12-22 17:20:11	2025-12-22 17:21:38
15449	325	77	66	2025-12-22 17:20:11	2025-12-22 17:21:38
15456	325	176	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15471	325	168	88	2025-12-22 17:20:12	2025-12-22 17:21:38
15479	325	243	88	2025-12-22 17:20:12	2025-12-22 17:21:38
15483	325	171	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15511	325	90	66	2025-12-22 17:20:12	2025-12-22 17:21:38
15606	174	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15607	324	181	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15608	324	193	100	2025-12-22 23:42:06	2025-12-22 23:42:06
15609	193	324	66	2025-12-22 23:42:06	2025-12-22 23:42:06
15610	324	223	100	2025-12-22 23:42:06	2025-12-22 23:42:06
15611	223	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15612	324	263	100	2025-12-22 23:42:06	2025-12-22 23:42:06
15613	263	324	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15614	324	268	100	2025-12-22 23:42:06	2025-12-22 23:42:06
15615	268	324	88	2025-12-22 23:42:06	2025-12-22 23:42:06
15617	55	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15619	57	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15621	59	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15623	60	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15625	61	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15629	65	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15631	72	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15633	73	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15634	324	126	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15635	126	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15636	324	127	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15637	127	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15638	324	166	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15639	166	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15641	74	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15643	77	324	66	2025-12-22 23:42:06	2025-12-22 23:42:06
15644	324	130	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15645	130	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15646	324	51	100	2025-12-22 23:42:06	2025-12-22 23:42:06
15647	51	324	88	2025-12-22 23:42:06	2025-12-22 23:42:06
15648	324	214	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15650	324	231	100	2025-12-22 23:42:06	2025-12-22 23:42:06
15651	231	324	88	2025-12-22 23:42:06	2025-12-22 23:42:06
15652	324	132	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15653	132	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15654	324	134	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15655	134	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15656	324	136	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15657	136	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15658	324	137	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15659	137	324	66	2025-12-22 23:42:06	2025-12-22 23:42:06
15660	324	138	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15661	138	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15662	324	224	100	2025-12-22 23:42:06	2025-12-22 23:42:06
15663	224	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15665	168	324	100	2025-12-22 23:42:06	2025-12-22 23:42:06
15666	324	189	100	2025-12-22 23:42:06	2025-12-22 23:42:06
15667	189	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15668	324	222	100	2025-12-22 23:42:06	2025-12-22 23:42:06
15669	222	324	66	2025-12-22 23:42:06	2025-12-22 23:42:06
15670	324	232	100	2025-12-22 23:42:06	2025-12-22 23:42:06
15671	232	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15616	324	55	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15618	324	57	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15620	324	59	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15622	324	60	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15624	324	61	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15626	324	62	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15627	324	64	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15628	324	65	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15630	324	72	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15640	324	74	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15642	324	77	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15649	324	176	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15664	324	168	88	2025-12-22 23:42:06	2025-12-22 23:42:09
15672	324	243	88	2025-12-22 23:42:06	2025-12-22 23:42:09
15673	243	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15674	324	261	100	2025-12-22 23:42:06	2025-12-22 23:42:06
15675	261	324	88	2025-12-22 23:42:06	2025-12-22 23:42:06
15677	171	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15678	324	179	100	2025-12-22 23:42:06	2025-12-22 23:42:06
15679	179	324	66	2025-12-22 23:42:06	2025-12-22 23:42:06
15680	324	94	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15681	94	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15682	324	95	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15683	95	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15684	324	96	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15685	96	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15686	324	98	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15687	98	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15688	324	101	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15689	324	103	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15690	103	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15692	80	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15695	82	324	66	2025-12-22 23:42:06	2025-12-22 23:42:06
15697	83	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15699	84	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15701	87	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15703	89	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15705	90	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15707	91	324	55	2025-12-22 23:42:06	2025-12-22 23:42:06
15709	92	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15710	324	244	100	2025-12-22 23:42:06	2025-12-22 23:42:06
15711	244	324	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15714	324	233	100	2025-12-22 23:42:06	2025-12-22 23:42:06
15715	233	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15716	324	266	100	2025-12-22 23:42:06	2025-12-22 23:42:06
15717	266	324	88	2025-12-22 23:42:06	2025-12-22 23:42:06
15718	324	105	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15719	105	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15720	324	106	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15721	324	107	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15722	324	108	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15723	108	324	66	2025-12-22 23:42:06	2025-12-22 23:42:06
15724	324	109	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15725	324	110	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15726	324	111	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15727	111	324	44	2025-12-22 23:42:06	2025-12-22 23:42:06
15728	324	112	77	2025-12-22 23:42:06	2025-12-22 23:42:06
15729	112	324	66	2025-12-22 23:42:07	2025-12-22 23:42:07
15730	324	116	77	2025-12-22 23:42:07	2025-12-22 23:42:07
15731	116	324	44	2025-12-22 23:42:07	2025-12-22 23:42:07
15732	324	118	77	2025-12-22 23:42:07	2025-12-22 23:42:07
15733	118	324	44	2025-12-22 23:42:07	2025-12-22 23:42:07
15734	324	121	77	2025-12-22 23:42:07	2025-12-22 23:42:07
15735	121	324	44	2025-12-22 23:42:07	2025-12-22 23:42:07
15737	144	324	55	2025-12-22 23:42:07	2025-12-22 23:42:07
15739	146	324	44	2025-12-22 23:42:07	2025-12-22 23:42:07
15740	324	267	77	2025-12-22 23:42:07	2025-12-22 23:42:07
15741	267	324	66	2025-12-22 23:42:07	2025-12-22 23:42:07
15743	150	324	55	2025-12-22 23:42:07	2025-12-22 23:42:07
15745	324	53	77	2025-12-22 23:42:07	2025-12-22 23:42:07
15747	324	227	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15748	227	324	77	2025-12-22 23:42:07	2025-12-22 23:42:07
15749	324	211	88	2025-12-22 23:42:07	2025-12-22 23:42:07
15750	324	234	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15751	234	324	66	2025-12-22 23:42:07	2025-12-22 23:42:07
15752	324	273	88	2025-12-22 23:42:07	2025-12-22 23:42:07
15753	273	324	55	2025-12-22 23:42:07	2025-12-22 23:42:07
15754	324	279	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15755	279	324	88	2025-12-22 23:42:07	2025-12-22 23:42:07
15756	324	277	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15757	277	324	66	2025-12-22 23:42:07	2025-12-22 23:42:07
15758	324	291	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15759	291	324	77	2025-12-22 23:42:07	2025-12-22 23:42:07
15761	246	324	77	2025-12-22 23:42:07	2025-12-22 23:42:07
15762	324	283	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15763	283	324	88	2025-12-22 23:42:07	2025-12-22 23:42:07
15764	324	286	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15765	286	324	88	2025-12-22 23:42:07	2025-12-22 23:42:07
15766	324	287	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15767	287	324	88	2025-12-22 23:42:07	2025-12-22 23:42:07
15768	324	288	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15769	288	324	66	2025-12-22 23:42:07	2025-12-22 23:42:07
15770	324	289	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15771	289	324	88	2025-12-22 23:42:07	2025-12-22 23:42:07
15772	324	294	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15773	294	324	77	2025-12-22 23:42:07	2025-12-22 23:42:07
15774	324	299	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15775	299	324	88	2025-12-22 23:42:07	2025-12-22 23:42:07
15776	324	229	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15777	229	324	88	2025-12-22 23:42:07	2025-12-22 23:42:07
15778	324	300	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15779	300	324	88	2025-12-22 23:42:07	2025-12-22 23:42:07
15691	324	80	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15693	324	81	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15694	324	82	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15696	324	83	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15698	324	84	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15700	324	87	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15702	324	89	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15704	324	90	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15706	324	91	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15712	324	260	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15713	324	216	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15736	324	144	66	2025-12-22 23:42:07	2025-12-22 23:42:10
15738	324	146	66	2025-12-22 23:42:07	2025-12-22 23:42:10
15742	324	150	66	2025-12-22 23:42:07	2025-12-22 23:42:10
15744	324	151	66	2025-12-22 23:42:07	2025-12-22 23:42:10
15746	324	219	88	2025-12-22 23:42:07	2025-12-22 23:42:10
15760	324	246	88	2025-12-22 23:42:07	2025-12-22 23:42:10
15780	324	303	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15781	303	324	88	2025-12-22 23:42:07	2025-12-22 23:42:07
15782	324	192	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15783	192	324	66	2025-12-22 23:42:07	2025-12-22 23:42:07
15784	324	311	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15785	311	324	66	2025-12-22 23:42:07	2025-12-22 23:42:07
15786	324	312	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15787	312	324	66	2025-12-22 23:42:07	2025-12-22 23:42:07
15788	324	316	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15789	316	324	77	2025-12-22 23:42:07	2025-12-22 23:42:07
15790	324	317	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15791	317	324	88	2025-12-22 23:42:07	2025-12-22 23:42:07
15792	324	319	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15793	319	324	77	2025-12-22 23:42:07	2025-12-22 23:42:07
15794	324	321	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15795	321	324	88	2025-12-22 23:42:07	2025-12-22 23:42:07
15796	324	318	100	2025-12-22 23:42:07	2025-12-22 23:42:07
15797	318	324	77	2025-12-22 23:42:07	2025-12-22 23:42:07
15605	324	174	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15632	324	73	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15676	324	171	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15708	324	92	66	2025-12-22 23:42:06	2025-12-22 23:42:09
15798	326	174	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15799	174	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15804	223	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15806	263	326	77	2025-12-24 07:19:51	2025-12-24 07:19:51
15808	268	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15810	55	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15812	57	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15813	326	59	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15814	59	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15815	326	60	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15816	60	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15817	326	61	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15818	61	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15821	326	65	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15822	65	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15824	72	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15826	73	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15827	326	126	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15828	126	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15830	127	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15831	326	166	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15832	166	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15834	74	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15835	326	77	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15836	77	326	66	2025-12-24 07:19:51	2025-12-24 07:19:51
15837	326	130	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15838	130	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15840	51	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15844	231	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15846	132	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15847	326	134	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15848	134	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15850	136	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15851	326	137	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15852	137	326	66	2025-12-24 07:19:51	2025-12-24 07:19:51
15853	326	138	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15854	138	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15856	224	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15858	168	326	100	2025-12-24 07:19:51	2025-12-24 07:19:51
15862	222	326	66	2025-12-24 07:19:51	2025-12-24 07:19:51
15864	232	326	66	2025-12-24 07:19:51	2025-12-24 07:19:51
15866	243	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15868	261	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15869	326	171	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15870	171	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15872	179	326	66	2025-12-24 07:19:51	2025-12-24 07:19:51
15874	94	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15876	95	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15877	326	96	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15878	96	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15879	326	98	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15880	98	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15802	193	326	77	2025-12-24 07:19:51	2025-12-29 08:03:32
15805	326	263	55	2025-12-24 07:19:51	2025-12-29 08:57:37
15807	326	268	55	2025-12-24 07:19:51	2025-12-29 08:57:37
15839	326	51	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15809	326	55	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15811	326	57	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15819	326	62	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15820	326	64	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15823	326	72	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15829	326	127	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15833	326	74	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15843	326	231	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15841	326	214	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15842	326	176	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15855	326	224	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15845	326	132	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15849	326	136	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15857	326	168	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15859	326	189	66	2025-12-24 07:19:51	2025-12-29 08:57:37
15860	189	326	55	2025-12-24 07:19:51	2025-12-29 08:03:32
15867	326	261	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15863	326	232	77	2025-12-24 07:19:51	2025-12-29 08:03:32
15865	326	243	66	2025-12-24 07:19:51	2025-12-29 08:03:32
15871	326	179	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15873	326	94	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15875	326	95	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15882	326	103	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15800	326	181	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15803	326	223	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15861	326	222	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15883	103	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15885	80	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15887	326	82	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15888	82	326	66	2025-12-24 07:19:51	2025-12-24 07:19:51
15889	326	83	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15890	83	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15891	326	84	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15892	84	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15894	87	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15896	89	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15897	326	90	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15898	90	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15899	326	91	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15900	91	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15902	92	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15904	244	326	77	2025-12-24 07:19:51	2025-12-24 07:19:51
15906	260	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15907	326	216	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15909	233	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15911	266	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15912	326	105	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15913	105	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15916	326	108	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15917	108	326	66	2025-12-24 07:19:51	2025-12-24 07:19:51
15920	326	111	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15921	111	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15922	326	112	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15923	112	326	66	2025-12-24 07:19:51	2025-12-24 07:19:51
15924	326	116	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15925	116	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15927	118	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15929	121	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15930	326	144	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15931	144	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15933	146	326	44	2025-12-24 07:19:51	2025-12-24 07:19:51
15934	326	267	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15935	267	326	66	2025-12-24 07:19:51	2025-12-24 07:19:51
15936	326	150	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15937	150	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15939	326	53	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15942	227	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15946	234	326	66	2025-12-24 07:19:51	2025-12-24 07:19:51
15948	273	326	55	2025-12-24 07:19:51	2025-12-24 07:19:51
15950	279	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15952	277	326	66	2025-12-24 07:19:51	2025-12-24 07:19:51
15954	291	326	77	2025-12-24 07:19:51	2025-12-24 07:19:51
15956	246	326	77	2025-12-24 07:19:51	2025-12-24 07:19:51
15958	283	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15960	286	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15962	287	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15964	288	326	77	2025-12-24 07:19:51	2025-12-24 07:19:51
15966	289	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15968	294	326	77	2025-12-24 07:19:51	2025-12-24 07:19:51
15970	299	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15972	229	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15974	300	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15976	303	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15978	192	326	77	2025-12-24 07:19:51	2025-12-24 07:19:51
15980	311	326	66	2025-12-24 07:19:51	2025-12-24 07:19:51
15982	312	326	77	2025-12-24 07:19:51	2025-12-24 07:19:51
15984	316	326	77	2025-12-24 07:19:51	2025-12-24 07:19:51
15986	317	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15988	319	326	77	2025-12-24 07:19:51	2025-12-24 07:19:51
15886	326	81	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15893	326	87	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15895	326	89	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15901	326	92	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15903	326	244	55	2025-12-24 07:19:51	2025-12-29 08:03:32
15943	326	211	55	2025-12-24 07:19:51	2025-12-29 08:59:46
15908	326	233	88	2025-12-24 07:19:51	2025-12-29 08:03:32
15940	326	219	55	2025-12-24 07:19:51	2025-12-29 08:57:37
15914	326	106	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15918	326	109	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15919	326	110	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15926	326	118	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15928	326	121	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15932	326	146	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15938	326	151	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15945	326	234	44	2025-12-24 07:19:51	2025-12-29 08:59:46
15941	326	227	77	2025-12-24 07:19:51	2025-12-29 08:03:32
15944	211	326	55	2025-12-24 07:19:51	2025-12-29 08:59:46
15967	326	294	44	2025-12-24 07:19:51	2025-12-29 08:59:46
15947	326	273	55	2025-12-24 07:19:51	2025-12-29 08:03:32
15951	326	277	55	2025-12-24 07:19:51	2025-12-29 08:57:37
15953	326	291	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15955	326	246	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15957	326	283	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15959	326	286	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15961	326	287	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15965	326	289	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15971	326	229	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15969	326	299	44	2025-12-24 07:19:51	2025-12-29 08:59:46
15973	326	300	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15981	326	312	66	2025-12-24 07:19:51	2025-12-29 08:57:37
15975	326	303	55	2025-12-24 07:19:51	2025-12-29 08:03:32
15977	326	192	77	2025-12-24 07:19:51	2025-12-29 08:03:32
15979	326	311	66	2025-12-24 07:19:51	2025-12-29 08:03:32
15983	326	316	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15985	326	317	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15989	326	321	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15987	326	319	77	2025-12-24 07:19:51	2025-12-29 08:03:32
15905	326	260	55	2025-12-24 07:19:51	2025-12-29 08:59:46
15910	326	266	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15949	326	279	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15990	321	326	88	2025-12-24 07:19:51	2025-12-24 07:19:51
15992	318	326	77	2025-12-24 07:19:51	2025-12-24 07:19:51
15825	326	73	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15993	176	326	44	2025-12-29 08:03:32	2025-12-29 08:03:32
15881	326	101	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15884	326	80	44	2025-12-24 07:19:51	2025-12-29 08:03:32
15915	326	107	44	2025-12-24 07:19:51	2025-12-29 08:03:32
16077	150	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
15801	326	193	55	2025-12-24 07:19:51	2025-12-29 08:57:37
15963	326	288	66	2025-12-24 07:19:51	2025-12-29 08:57:37
15991	326	318	44	2025-12-24 07:19:51	2025-12-29 08:57:37
15994	174	330	55	2025-12-29 12:12:58	2025-12-29 12:12:58
15995	330	181	44	2025-12-29 12:12:58	2025-12-29 12:12:58
15996	330	193	55	2025-12-29 12:12:58	2025-12-29 12:12:58
15997	193	330	77	2025-12-29 12:12:58	2025-12-29 12:12:58
15998	330	223	44	2025-12-29 12:12:58	2025-12-29 12:12:58
15999	223	330	55	2025-12-29 12:12:58	2025-12-29 12:12:58
16000	330	263	55	2025-12-29 12:12:58	2025-12-29 12:12:58
16001	263	330	77	2025-12-29 12:12:58	2025-12-29 12:12:58
16002	330	268	55	2025-12-29 12:12:58	2025-12-29 12:12:58
16003	268	330	88	2025-12-29 12:12:58	2025-12-29 12:12:58
16004	55	330	44	2025-12-29 12:12:58	2025-12-29 12:12:58
16005	57	330	44	2025-12-29 12:12:58	2025-12-29 12:12:58
16006	59	330	44	2025-12-29 12:12:58	2025-12-29 12:12:58
16007	60	330	44	2025-12-29 12:12:58	2025-12-29 12:12:58
16008	61	330	55	2025-12-29 12:12:58	2025-12-29 12:12:58
16009	65	330	44	2025-12-29 12:12:58	2025-12-29 12:12:58
16010	72	330	44	2025-12-29 12:12:58	2025-12-29 12:12:58
16011	73	330	55	2025-12-29 12:12:58	2025-12-29 12:12:58
16012	126	330	55	2025-12-29 12:12:58	2025-12-29 12:12:58
16013	127	330	55	2025-12-29 12:12:58	2025-12-29 12:12:58
16014	166	330	44	2025-12-29 12:12:58	2025-12-29 12:12:58
16015	74	330	55	2025-12-29 12:12:58	2025-12-29 12:12:58
16016	77	330	66	2025-12-29 12:12:58	2025-12-29 12:12:58
16017	130	330	55	2025-12-29 12:12:58	2025-12-29 12:12:58
16018	330	51	44	2025-12-29 12:12:58	2025-12-29 12:12:58
16019	51	330	88	2025-12-29 12:12:58	2025-12-29 12:12:58
16020	176	330	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16021	330	231	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16022	231	330	88	2025-12-29 12:12:59	2025-12-29 12:12:59
16023	132	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16024	134	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16025	136	330	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16026	137	330	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16027	138	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16028	330	224	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16029	224	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16030	330	168	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16031	168	330	100	2025-12-29 12:12:59	2025-12-29 12:12:59
16032	330	189	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16033	189	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16034	330	222	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16035	222	330	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16036	330	232	77	2025-12-29 12:12:59	2025-12-29 12:12:59
16037	232	330	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16038	330	243	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16039	243	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16040	330	261	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16041	261	330	88	2025-12-29 12:12:59	2025-12-29 12:12:59
16042	171	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16043	330	179	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16044	179	330	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16045	94	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16046	95	330	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16047	96	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16048	98	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16049	103	330	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16050	80	330	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16051	82	330	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16052	83	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16053	84	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16054	87	330	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16055	89	330	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16056	90	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16057	91	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16058	92	330	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16059	330	244	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16060	244	330	77	2025-12-29 12:12:59	2025-12-29 12:12:59
16061	330	260	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16062	260	330	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16063	330	233	88	2025-12-29 12:12:59	2025-12-29 12:12:59
16064	233	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16065	330	266	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16066	266	330	88	2025-12-29 12:12:59	2025-12-29 12:12:59
16067	105	330	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16068	108	330	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16069	111	330	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16070	112	330	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16071	116	330	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16072	118	330	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16073	121	330	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16074	144	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16075	146	330	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16076	267	330	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16078	330	219	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16079	330	227	77	2025-12-29 12:12:59	2025-12-29 12:12:59
16080	227	330	88	2025-12-29 12:12:59	2025-12-29 12:12:59
16081	330	211	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16082	211	330	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16083	330	234	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16084	234	330	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16085	330	273	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16086	273	330	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16087	330	279	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16088	279	330	88	2025-12-29 12:12:59	2025-12-29 12:12:59
16089	330	277	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16090	277	330	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16091	330	291	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16092	291	330	77	2025-12-29 12:12:59	2025-12-29 12:12:59
16093	330	246	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16094	246	330	77	2025-12-29 12:12:59	2025-12-29 12:12:59
16095	330	283	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16096	283	330	88	2025-12-29 12:12:59	2025-12-29 12:12:59
16097	330	286	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16098	286	330	88	2025-12-29 12:12:59	2025-12-29 12:12:59
16099	330	287	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16100	287	330	88	2025-12-29 12:12:59	2025-12-29 12:12:59
16101	330	288	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16102	288	330	77	2025-12-29 12:12:59	2025-12-29 12:12:59
16103	330	289	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16104	289	330	88	2025-12-29 12:12:59	2025-12-29 12:12:59
16105	330	294	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16106	294	330	77	2025-12-29 12:12:59	2025-12-29 12:12:59
16107	330	299	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16108	299	330	88	2025-12-29 12:12:59	2025-12-29 12:12:59
16109	330	229	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16110	229	330	88	2025-12-29 12:12:59	2025-12-29 12:12:59
16111	330	300	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16112	300	330	88	2025-12-29 12:12:59	2025-12-29 12:12:59
16113	330	303	55	2025-12-29 12:12:59	2025-12-29 12:12:59
16114	303	330	88	2025-12-29 12:12:59	2025-12-29 12:12:59
16115	330	192	77	2025-12-29 12:12:59	2025-12-29 12:12:59
16116	192	330	77	2025-12-29 12:12:59	2025-12-29 12:12:59
16117	330	311	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16118	311	330	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16119	330	312	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16120	312	330	77	2025-12-29 12:12:59	2025-12-29 12:12:59
16121	330	316	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16122	316	330	77	2025-12-29 12:12:59	2025-12-29 12:12:59
16123	330	317	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16124	317	330	88	2025-12-29 12:12:59	2025-12-29 12:12:59
16125	330	319	66	2025-12-29 12:12:59	2025-12-29 12:12:59
16126	319	330	77	2025-12-29 12:12:59	2025-12-29 12:12:59
16127	330	321	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16128	321	330	88	2025-12-29 12:12:59	2025-12-29 12:12:59
16129	330	318	44	2025-12-29 12:12:59	2025-12-29 12:12:59
16130	318	330	77	2025-12-29 12:12:59	2025-12-29 12:12:59
16131	54	331	44	2025-12-29 12:17:53	2025-12-29 12:17:53
16132	165	331	44	2025-12-29 12:17:53	2025-12-29 12:17:53
16134	197	331	88	2025-12-29 12:17:53	2025-12-29 12:17:53
16136	204	331	88	2025-12-29 12:17:53	2025-12-29 12:17:53
16138	212	331	88	2025-12-29 12:17:53	2025-12-29 12:17:53
16140	230	331	88	2025-12-29 12:17:53	2025-12-29 12:17:53
16142	235	331	88	2025-12-29 12:17:53	2025-12-29 12:17:53
16144	241	331	88	2025-12-29 12:17:53	2025-12-29 12:17:53
16148	247	331	77	2025-12-29 12:17:53	2025-12-29 12:17:53
16152	255	331	88	2025-12-29 12:17:53	2025-12-29 12:17:53
16153	56	331	44	2025-12-29 12:17:53	2025-12-29 12:17:53
16154	58	331	55	2025-12-29 12:17:53	2025-12-29 12:17:53
16155	63	331	55	2025-12-29 12:17:53	2025-12-29 12:17:53
16156	66	331	44	2025-12-29 12:17:53	2025-12-29 12:17:53
16157	67	331	44	2025-12-29 12:17:53	2025-12-29 12:17:53
16158	68	331	66	2025-12-29 12:17:53	2025-12-29 12:17:53
16159	69	331	66	2025-12-29 12:17:53	2025-12-29 12:17:53
16160	70	331	55	2025-12-29 12:17:53	2025-12-29 12:17:53
16161	71	331	44	2025-12-29 12:17:53	2025-12-29 12:17:53
16162	124	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16163	125	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16164	128	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16165	75	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16166	76	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16167	78	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16168	129	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16169	200	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16171	265	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16173	50	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16174	194	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16176	251	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16177	131	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16178	133	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16179	135	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16180	142	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16182	237	331	66	2025-12-29 12:17:54	2025-12-29 12:17:54
16184	258	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16186	242	331	66	2025-12-29 12:17:54	2025-12-29 12:17:54
16188	248	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16190	269	331	77	2025-12-29 12:17:54	2025-12-29 12:17:54
16191	177	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16193	209	331	77	2025-12-29 12:17:54	2025-12-29 12:17:54
16195	238	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16197	249	331	77	2025-12-29 12:17:54	2025-12-29 12:17:54
16135	331	204	88	2025-12-29 12:17:53	2025-12-29 13:18:38
16137	331	212	88	2025-12-29 12:17:53	2025-12-29 13:18:38
16139	331	230	88	2025-12-29 12:17:53	2025-12-29 13:18:38
16141	331	235	88	2025-12-29 12:17:53	2025-12-29 13:18:38
16143	331	241	88	2025-12-29 12:17:53	2025-12-29 13:18:38
16145	331	245	100	2025-12-29 12:17:53	2025-12-29 13:18:38
16146	245	331	66	2025-12-29 12:17:53	2025-12-29 13:18:38
16147	331	247	88	2025-12-29 12:17:53	2025-12-29 13:18:38
16149	331	250	100	2025-12-29 12:17:53	2025-12-29 13:18:38
16151	331	255	88	2025-12-29 12:17:53	2025-12-29 13:18:38
16170	331	265	77	2025-12-29 12:17:54	2025-12-29 13:18:38
16172	331	50	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16175	331	251	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16181	331	237	100	2025-12-29 12:17:54	2025-12-29 13:18:38
16183	331	258	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16185	331	242	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16187	331	248	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16189	331	269	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16192	331	209	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16194	331	238	77	2025-12-29 12:17:54	2025-12-29 13:18:38
16196	331	249	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16199	252	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16201	264	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16205	210	331	100	2025-12-29 12:17:54	2025-12-29 12:17:54
16209	196	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16210	97	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16211	99	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16212	79	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16213	85	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16214	86	331	66	2025-12-29 12:17:54	2025-12-29 12:17:54
16215	88	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16216	93	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16218	226	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16220	239	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16222	271	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16223	113	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16224	114	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16225	115	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16226	117	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16227	119	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16228	120	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16229	122	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16230	123	331	66	2025-12-29 12:17:54	2025-12-29 12:17:54
16231	145	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16232	143	331	66	2025-12-29 12:17:54	2025-12-29 12:17:54
16234	272	331	77	2025-12-29 12:17:54	2025-12-29 12:17:54
16235	139	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16236	140	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16237	141	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16238	147	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16239	149	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16240	152	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16241	153	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16242	173	331	55	2025-12-29 12:17:54	2025-12-29 12:17:54
16246	254	331	77	2025-12-29 12:17:54	2025-12-29 12:17:54
16248	262	331	77	2025-12-29 12:17:54	2025-12-29 12:17:54
16251	276	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16253	278	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16255	280	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16257	284	331	77	2025-12-29 12:17:54	2025-12-29 12:17:54
16259	290	331	77	2025-12-29 12:17:54	2025-12-29 12:17:54
16261	285	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16263	292	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16265	293	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16267	298	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16269	302	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16271	304	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16273	305	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16275	306	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16277	307	331	44	2025-12-29 12:17:54	2025-12-29 12:17:54
16279	310	331	77	2025-12-29 12:17:54	2025-12-29 12:17:54
16281	315	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16283	313	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16285	320	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16287	325	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16289	324	331	88	2025-12-29 12:17:54	2025-12-29 12:17:54
16294	331	54	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16295	331	165	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16133	331	197	88	2025-12-29 12:17:53	2025-12-29 13:18:38
16150	250	331	66	2025-12-29 12:17:53	2025-12-29 13:18:38
16296	331	56	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16297	331	58	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16298	331	63	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16299	331	66	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16300	331	67	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16301	331	68	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16302	331	69	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16200	331	264	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16202	331	270	100	2025-12-29 12:17:54	2025-12-29 13:18:38
16203	270	331	66	2025-12-29 12:17:54	2025-12-29 13:18:38
16204	331	210	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16206	331	191	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16207	191	331	66	2025-12-29 12:17:54	2025-12-29 13:18:38
16208	331	196	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16217	331	226	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16219	331	239	100	2025-12-29 12:17:54	2025-12-29 13:18:38
16233	331	272	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16243	331	240	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16244	240	331	55	2025-12-29 12:17:54	2025-12-29 13:18:38
16245	331	254	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16247	331	262	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16249	331	274	77	2025-12-29 12:17:54	2025-12-29 13:18:38
16250	331	276	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16252	331	278	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16254	331	280	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16256	331	284	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16258	331	290	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16260	331	285	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16262	331	292	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16264	331	293	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16266	331	298	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16268	331	302	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16270	331	304	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16272	331	305	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16276	331	307	66	2025-12-29 12:17:54	2025-12-29 13:18:38
16278	331	310	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16280	331	315	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16282	331	313	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16284	331	320	88	2025-12-29 12:17:54	2025-12-29 13:18:39
16286	331	325	88	2025-12-29 12:17:54	2025-12-29 13:18:39
16288	331	324	88	2025-12-29 12:17:54	2025-12-29 13:18:39
16290	331	326	88	2025-12-29 12:17:54	2025-12-29 13:18:39
16291	326	331	66	2025-12-29 12:17:54	2025-12-29 13:18:39
16292	331	330	100	2025-12-29 12:17:54	2025-12-29 13:18:39
16293	330	331	66	2025-12-29 12:17:54	2025-12-29 13:18:39
16303	331	70	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16304	331	71	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16305	331	124	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16306	331	125	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16307	331	128	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16308	331	75	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16309	331	76	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16310	331	78	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16311	331	129	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16312	331	200	77	2025-12-29 13:18:38	2025-12-29 13:18:38
16313	331	194	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16314	331	131	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16315	331	133	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16316	331	135	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16317	331	142	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16318	331	177	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16319	331	195	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16320	331	202	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16321	331	215	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16198	331	252	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16322	331	97	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16323	331	99	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16324	331	100	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16325	331	102	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16326	331	79	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16327	331	85	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16328	331	86	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16329	331	88	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16330	331	93	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16331	331	253	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16221	331	271	77	2025-12-29 12:17:54	2025-12-29 13:18:38
16332	331	104	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16333	331	113	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16334	331	114	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16335	331	115	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16336	331	117	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16337	331	119	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16338	331	120	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16339	331	122	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16340	331	123	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16341	331	145	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16342	331	143	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16343	331	139	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16344	331	140	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16345	331	141	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16346	331	147	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16347	331	148	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16348	331	149	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16349	331	152	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16350	331	153	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16351	331	173	66	2025-12-29 13:18:38	2025-12-29 13:18:38
16274	331	306	88	2025-12-29 12:17:54	2025-12-29 13:18:38
16352	332	54	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16353	54	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16354	332	165	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16355	165	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16356	332	197	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16357	197	332	88	2025-12-29 17:03:19	2025-12-29 17:03:19
16358	332	204	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16359	204	332	88	2025-12-29 17:03:19	2025-12-29 17:03:19
16360	332	212	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16361	212	332	88	2025-12-29 17:03:19	2025-12-29 17:03:19
16362	332	230	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16363	230	332	88	2025-12-29 17:03:19	2025-12-29 17:03:19
16364	332	235	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16365	235	332	88	2025-12-29 17:03:19	2025-12-29 17:03:19
16366	332	241	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16367	241	332	88	2025-12-29 17:03:19	2025-12-29 17:03:19
16368	332	245	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16369	245	332	66	2025-12-29 17:03:19	2025-12-29 17:03:19
16370	332	247	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16371	247	332	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16372	332	250	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16373	250	332	66	2025-12-29 17:03:19	2025-12-29 17:03:19
16374	332	255	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16375	255	332	88	2025-12-29 17:03:19	2025-12-29 17:03:19
16376	332	56	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16377	56	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16378	332	58	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16379	58	332	55	2025-12-29 17:03:19	2025-12-29 17:03:19
16380	332	63	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16381	63	332	55	2025-12-29 17:03:19	2025-12-29 17:03:19
16382	332	66	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16383	66	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16384	332	67	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16385	67	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16386	332	68	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16387	68	332	66	2025-12-29 17:03:19	2025-12-29 17:03:19
16388	332	69	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16389	69	332	66	2025-12-29 17:03:19	2025-12-29 17:03:19
16390	332	70	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16391	70	332	55	2025-12-29 17:03:19	2025-12-29 17:03:19
16392	332	71	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16393	71	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16394	332	124	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16395	124	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16396	332	125	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16397	125	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16398	332	128	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16399	128	332	55	2025-12-29 17:03:19	2025-12-29 17:03:19
16400	332	75	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16401	75	332	55	2025-12-29 17:03:19	2025-12-29 17:03:19
16402	332	76	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16403	76	332	55	2025-12-29 17:03:19	2025-12-29 17:03:19
16404	332	78	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16405	78	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16406	332	129	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16407	129	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16408	332	200	88	2025-12-29 17:03:19	2025-12-29 17:03:19
16409	200	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16410	332	265	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16411	332	50	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16412	332	194	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16413	332	251	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16414	251	332	88	2025-12-29 17:03:19	2025-12-29 17:03:19
16415	332	131	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16416	131	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16417	332	133	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16418	133	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16419	332	135	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16420	135	332	55	2025-12-29 17:03:19	2025-12-29 17:03:19
16421	332	142	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16422	142	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16423	332	237	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16424	237	332	66	2025-12-29 17:03:19	2025-12-29 17:03:19
16425	332	258	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16426	258	332	88	2025-12-29 17:03:19	2025-12-29 17:03:19
16427	332	242	88	2025-12-29 17:03:19	2025-12-29 17:03:19
16428	242	332	66	2025-12-29 17:03:19	2025-12-29 17:03:19
16429	332	248	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16430	248	332	55	2025-12-29 17:03:19	2025-12-29 17:03:19
16431	332	269	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16432	269	332	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16433	332	177	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16434	177	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16435	332	195	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16436	332	202	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16437	332	209	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16438	209	332	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16439	332	215	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16440	332	238	88	2025-12-29 17:03:19	2025-12-29 17:03:19
16441	238	332	55	2025-12-29 17:03:19	2025-12-29 17:03:19
16442	332	249	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16443	249	332	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16444	332	252	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16445	252	332	88	2025-12-29 17:03:19	2025-12-29 17:03:19
16446	332	264	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16447	264	332	55	2025-12-29 17:03:19	2025-12-29 17:03:19
16448	332	270	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16449	270	332	66	2025-12-29 17:03:19	2025-12-29 17:03:19
16450	332	210	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16451	210	332	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16452	332	191	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16453	191	332	66	2025-12-29 17:03:19	2025-12-29 17:03:19
16454	332	196	100	2025-12-29 17:03:19	2025-12-29 17:03:19
16455	196	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16456	332	97	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16457	97	332	55	2025-12-29 17:03:19	2025-12-29 17:03:19
16458	332	99	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16459	99	332	55	2025-12-29 17:03:19	2025-12-29 17:03:19
16460	332	100	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16461	332	102	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16462	332	79	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16463	79	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16464	332	85	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16465	85	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16466	332	86	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16467	86	332	66	2025-12-29 17:03:19	2025-12-29 17:03:19
16468	332	88	77	2025-12-29 17:03:19	2025-12-29 17:03:19
16469	88	332	44	2025-12-29 17:03:19	2025-12-29 17:03:19
16470	332	93	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16471	93	332	44	2025-12-29 17:03:20	2025-12-29 17:03:20
16472	332	253	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16473	332	226	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16474	226	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16475	332	239	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16476	239	332	55	2025-12-29 17:03:20	2025-12-29 17:03:20
16477	332	271	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16478	271	332	44	2025-12-29 17:03:20	2025-12-29 17:03:20
16479	332	104	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16480	332	113	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16481	113	332	55	2025-12-29 17:03:20	2025-12-29 17:03:20
16482	332	114	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16483	114	332	44	2025-12-29 17:03:20	2025-12-29 17:03:20
16484	332	115	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16485	115	332	44	2025-12-29 17:03:20	2025-12-29 17:03:20
16486	332	117	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16487	117	332	44	2025-12-29 17:03:20	2025-12-29 17:03:20
16488	332	119	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16489	119	332	55	2025-12-29 17:03:20	2025-12-29 17:03:20
16490	332	120	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16491	120	332	55	2025-12-29 17:03:20	2025-12-29 17:03:20
16492	332	122	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16493	122	332	44	2025-12-29 17:03:20	2025-12-29 17:03:20
16494	332	123	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16495	123	332	66	2025-12-29 17:03:20	2025-12-29 17:03:20
16496	332	145	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16497	145	332	55	2025-12-29 17:03:20	2025-12-29 17:03:20
16498	332	143	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16499	143	332	66	2025-12-29 17:03:20	2025-12-29 17:03:20
16500	332	272	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16501	272	332	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16502	332	139	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16503	139	332	44	2025-12-29 17:03:20	2025-12-29 17:03:20
16504	332	140	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16505	140	332	55	2025-12-29 17:03:20	2025-12-29 17:03:20
16506	332	141	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16507	141	332	55	2025-12-29 17:03:20	2025-12-29 17:03:20
16508	332	147	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16509	147	332	55	2025-12-29 17:03:20	2025-12-29 17:03:20
16510	332	148	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16511	332	149	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16512	149	332	44	2025-12-29 17:03:20	2025-12-29 17:03:20
16513	332	152	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16514	152	332	44	2025-12-29 17:03:20	2025-12-29 17:03:20
16515	332	153	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16516	153	332	44	2025-12-29 17:03:20	2025-12-29 17:03:20
16517	332	173	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16518	173	332	55	2025-12-29 17:03:20	2025-12-29 17:03:20
16519	332	240	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16520	240	332	55	2025-12-29 17:03:20	2025-12-29 17:03:20
16521	332	254	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16522	254	332	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16523	332	262	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16524	262	332	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16525	332	274	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16526	332	276	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16527	276	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16528	332	278	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16529	278	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16530	332	280	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16531	280	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16532	332	284	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16533	284	332	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16534	332	290	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16535	290	332	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16536	332	285	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16537	285	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16538	332	292	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16539	292	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16540	332	293	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16541	293	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16542	332	298	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16543	298	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16544	332	302	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16545	302	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16546	332	304	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16547	304	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16548	332	305	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16549	305	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16550	332	306	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16551	306	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16552	332	307	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16553	332	310	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16554	310	332	77	2025-12-29 17:03:20	2025-12-29 17:03:20
16555	332	315	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16556	315	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16557	332	313	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16558	313	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16559	332	320	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16560	320	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16561	332	325	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16562	325	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16563	332	324	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16564	324	332	88	2025-12-29 17:03:20	2025-12-29 17:03:20
16565	332	326	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16566	326	332	66	2025-12-29 17:03:20	2025-12-29 17:03:20
16567	332	330	100	2025-12-29 17:03:20	2025-12-29 17:03:20
16568	330	332	66	2025-12-29 17:03:20	2025-12-29 17:03:20
16569	333	174	66	2025-12-30 07:38:16	2025-12-30 07:38:16
16570	174	333	55	2025-12-30 07:38:16	2025-12-30 07:38:16
16571	333	181	66	2025-12-30 07:38:16	2025-12-30 07:38:16
16572	333	193	88	2025-12-30 07:38:16	2025-12-30 07:38:16
16573	193	333	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16574	333	223	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16575	223	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16576	333	263	100	2025-12-30 07:38:17	2025-12-30 07:38:17
16577	263	333	77	2025-12-30 07:38:17	2025-12-30 07:38:17
16578	333	268	100	2025-12-30 07:38:17	2025-12-30 07:38:17
16579	268	333	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16580	333	55	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16581	55	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16582	333	57	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16583	57	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16584	333	59	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16585	59	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16586	333	60	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16587	60	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16588	333	61	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16589	61	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16590	333	62	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16591	333	64	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16592	333	65	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16593	65	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16594	333	72	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16595	72	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16596	333	73	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16597	73	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16598	333	126	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16599	126	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16600	333	127	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16601	127	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16602	333	166	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16603	166	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16604	333	74	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16605	74	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16606	333	77	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16607	77	333	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16608	333	130	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16609	130	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16610	333	51	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16611	51	333	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16612	333	214	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16613	333	176	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16614	333	231	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16615	231	333	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16616	333	132	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16617	132	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16618	333	134	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16619	134	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16620	333	136	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16621	136	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16622	333	137	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16623	137	333	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16624	333	138	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16625	138	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16626	333	224	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16627	224	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16628	333	168	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16629	168	333	100	2025-12-30 07:38:17	2025-12-30 07:38:17
16630	333	189	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16631	189	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16632	333	222	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16633	222	333	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16634	333	232	100	2025-12-30 07:38:17	2025-12-30 07:38:17
16635	232	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16636	333	243	100	2025-12-30 07:38:17	2025-12-30 07:38:17
16637	243	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16638	333	261	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16639	261	333	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16640	333	171	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16641	171	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16642	333	179	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16643	179	333	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16644	333	94	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16645	94	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16646	333	95	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16647	95	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16648	333	96	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16649	96	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16650	333	98	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16651	98	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16652	333	101	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16653	333	103	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16654	103	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16655	333	80	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16656	80	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16657	333	81	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16658	333	82	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16659	82	333	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16660	333	83	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16661	83	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16662	333	84	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16663	84	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16664	333	87	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16665	87	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16666	333	89	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16667	89	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16668	333	90	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16669	90	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16670	333	91	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16671	91	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16672	333	92	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16673	92	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16674	333	244	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16675	244	333	77	2025-12-30 07:38:17	2025-12-30 07:38:17
16676	333	260	77	2025-12-30 07:38:17	2025-12-30 07:38:17
16677	333	216	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16678	333	233	100	2025-12-30 07:38:17	2025-12-30 07:38:17
16679	233	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16680	333	266	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16681	266	333	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16682	333	105	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16683	105	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16684	333	106	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16685	333	107	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16686	333	108	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16687	108	333	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16688	333	109	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16689	333	110	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16690	333	111	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16691	111	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16692	333	112	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16693	112	333	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16694	333	116	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16695	116	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16696	333	118	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16697	118	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16698	333	121	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16699	121	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16700	333	144	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16701	144	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16702	333	146	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16703	146	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16704	333	267	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16705	267	333	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16706	333	150	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16707	150	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16708	333	151	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16709	333	53	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16710	333	219	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16711	333	227	100	2025-12-30 07:38:17	2025-12-30 07:38:17
16712	227	333	77	2025-12-30 07:38:17	2025-12-30 07:38:17
16713	333	211	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16714	211	333	44	2025-12-30 07:38:17	2025-12-30 07:38:17
16715	333	234	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16716	234	333	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16717	333	273	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16718	273	333	55	2025-12-30 07:38:17	2025-12-30 07:38:17
16719	333	279	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16720	279	333	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16721	333	277	100	2025-12-30 07:38:17	2025-12-30 07:38:17
16722	277	333	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16723	333	291	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16724	291	333	77	2025-12-30 07:38:17	2025-12-30 07:38:17
16725	333	246	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16726	246	333	77	2025-12-30 07:38:17	2025-12-30 07:38:17
16727	333	283	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16728	283	333	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16729	333	286	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16730	286	333	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16731	333	287	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16732	287	333	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16733	333	288	100	2025-12-30 07:38:17	2025-12-30 07:38:17
16734	288	333	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16735	333	289	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16736	289	333	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16737	333	294	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16738	294	333	77	2025-12-30 07:38:17	2025-12-30 07:38:17
16739	333	299	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16740	299	333	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16741	333	229	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16742	229	333	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16743	333	300	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16744	300	333	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16745	333	303	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16746	303	333	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16747	333	192	100	2025-12-30 07:38:17	2025-12-30 07:38:17
16748	192	333	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16749	333	311	100	2025-12-30 07:38:17	2025-12-30 07:38:17
16750	311	333	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16751	333	312	100	2025-12-30 07:38:17	2025-12-30 07:38:17
16752	312	333	66	2025-12-30 07:38:17	2025-12-30 07:38:17
16753	333	316	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16754	316	333	77	2025-12-30 07:38:17	2025-12-30 07:38:17
16755	333	317	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16756	317	333	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16757	333	319	100	2025-12-30 07:38:17	2025-12-30 07:38:17
16758	319	333	77	2025-12-30 07:38:17	2025-12-30 07:38:17
16759	333	321	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16760	321	333	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16761	333	318	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16762	318	333	77	2025-12-30 07:38:17	2025-12-30 07:38:17
16763	333	331	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16764	331	333	100	2025-12-30 07:38:17	2025-12-30 07:38:17
16765	333	332	88	2025-12-30 07:38:17	2025-12-30 07:38:17
16766	332	333	100	2025-12-30 07:38:17	2025-12-30 07:38:17
16767	334	54	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16768	54	334	44	2025-12-30 09:27:09	2025-12-30 09:27:09
16769	334	165	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16770	165	334	44	2025-12-30 09:27:09	2025-12-30 09:27:09
16771	334	197	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16772	197	334	88	2025-12-30 09:27:09	2025-12-30 09:27:09
16773	334	204	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16774	204	334	88	2025-12-30 09:27:09	2025-12-30 09:27:09
16775	334	212	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16776	212	334	88	2025-12-30 09:27:09	2025-12-30 09:27:09
16777	334	230	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16778	230	334	88	2025-12-30 09:27:09	2025-12-30 09:27:09
16779	334	235	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16780	235	334	88	2025-12-30 09:27:09	2025-12-30 09:27:09
16781	334	241	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16782	241	334	88	2025-12-30 09:27:09	2025-12-30 09:27:09
16783	334	245	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16784	245	334	66	2025-12-30 09:27:09	2025-12-30 09:27:09
16785	334	247	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16786	247	334	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16787	334	250	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16788	250	334	66	2025-12-30 09:27:09	2025-12-30 09:27:09
16789	334	255	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16790	255	334	88	2025-12-30 09:27:09	2025-12-30 09:27:09
16791	334	56	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16792	56	334	44	2025-12-30 09:27:09	2025-12-30 09:27:09
16793	334	58	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16794	58	334	55	2025-12-30 09:27:09	2025-12-30 09:27:09
16795	334	63	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16796	63	334	55	2025-12-30 09:27:09	2025-12-30 09:27:09
16797	334	66	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16798	66	334	44	2025-12-30 09:27:09	2025-12-30 09:27:09
16799	334	67	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16800	67	334	44	2025-12-30 09:27:09	2025-12-30 09:27:09
16801	334	68	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16802	68	334	66	2025-12-30 09:27:09	2025-12-30 09:27:09
16803	334	69	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16804	69	334	66	2025-12-30 09:27:09	2025-12-30 09:27:09
16805	334	70	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16806	70	334	55	2025-12-30 09:27:09	2025-12-30 09:27:09
16807	334	71	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16808	71	334	44	2025-12-30 09:27:09	2025-12-30 09:27:09
16809	334	124	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16810	124	334	44	2025-12-30 09:27:09	2025-12-30 09:27:09
16811	334	125	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16812	125	334	44	2025-12-30 09:27:09	2025-12-30 09:27:09
16813	334	128	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16814	128	334	55	2025-12-30 09:27:09	2025-12-30 09:27:09
16815	334	75	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16816	75	334	55	2025-12-30 09:27:09	2025-12-30 09:27:09
16817	334	76	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16818	76	334	55	2025-12-30 09:27:09	2025-12-30 09:27:09
16819	334	78	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16820	78	334	44	2025-12-30 09:27:09	2025-12-30 09:27:09
16821	334	129	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16822	129	334	44	2025-12-30 09:27:09	2025-12-30 09:27:09
16823	334	200	88	2025-12-30 09:27:09	2025-12-30 09:27:09
16824	200	334	44	2025-12-30 09:27:09	2025-12-30 09:27:09
16825	334	265	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16826	334	50	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16827	334	194	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16828	334	251	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16829	251	334	88	2025-12-30 09:27:09	2025-12-30 09:27:09
16830	334	131	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16831	131	334	44	2025-12-30 09:27:09	2025-12-30 09:27:09
16832	334	133	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16833	133	334	44	2025-12-30 09:27:09	2025-12-30 09:27:09
16834	334	135	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16835	135	334	55	2025-12-30 09:27:09	2025-12-30 09:27:09
16836	334	142	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16837	142	334	44	2025-12-30 09:27:09	2025-12-30 09:27:09
16838	334	237	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16839	237	334	66	2025-12-30 09:27:09	2025-12-30 09:27:09
16840	334	258	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16841	258	334	88	2025-12-30 09:27:09	2025-12-30 09:27:09
16842	334	242	88	2025-12-30 09:27:09	2025-12-30 09:27:09
16843	242	334	66	2025-12-30 09:27:09	2025-12-30 09:27:09
16844	334	248	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16845	248	334	55	2025-12-30 09:27:09	2025-12-30 09:27:09
16846	334	269	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16847	269	334	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16848	334	177	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16849	177	334	44	2025-12-30 09:27:09	2025-12-30 09:27:09
16850	334	195	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16851	334	202	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16852	334	209	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16853	209	334	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16854	334	215	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16855	334	238	88	2025-12-30 09:27:09	2025-12-30 09:27:09
16856	238	334	55	2025-12-30 09:27:09	2025-12-30 09:27:09
16857	334	249	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16858	249	334	77	2025-12-30 09:27:09	2025-12-30 09:27:09
16859	334	252	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16860	252	334	88	2025-12-30 09:27:09	2025-12-30 09:27:09
16861	334	264	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16862	264	334	55	2025-12-30 09:27:09	2025-12-30 09:27:09
16863	334	270	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16864	270	334	66	2025-12-30 09:27:09	2025-12-30 09:27:09
16865	334	210	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16866	210	334	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16867	334	191	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16868	191	334	66	2025-12-30 09:27:09	2025-12-30 09:27:09
16869	334	196	100	2025-12-30 09:27:09	2025-12-30 09:27:09
16870	196	334	44	2025-12-30 09:27:09	2025-12-30 09:27:09
16871	334	97	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16872	97	334	55	2025-12-30 09:27:10	2025-12-30 09:27:10
16873	334	99	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16874	99	334	55	2025-12-30 09:27:10	2025-12-30 09:27:10
16875	334	100	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16876	334	102	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16877	334	79	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16878	79	334	44	2025-12-30 09:27:10	2025-12-30 09:27:10
16879	334	85	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16880	85	334	44	2025-12-30 09:27:10	2025-12-30 09:27:10
16881	334	86	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16882	86	334	66	2025-12-30 09:27:10	2025-12-30 09:27:10
16883	334	88	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16884	88	334	44	2025-12-30 09:27:10	2025-12-30 09:27:10
16885	334	93	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16886	93	334	44	2025-12-30 09:27:10	2025-12-30 09:27:10
16887	334	253	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16888	334	226	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16889	226	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16890	334	239	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16891	239	334	55	2025-12-30 09:27:10	2025-12-30 09:27:10
16892	334	271	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16893	271	334	44	2025-12-30 09:27:10	2025-12-30 09:27:10
16894	334	104	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16895	334	113	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16896	113	334	55	2025-12-30 09:27:10	2025-12-30 09:27:10
16897	334	114	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16898	114	334	44	2025-12-30 09:27:10	2025-12-30 09:27:10
16899	334	115	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16900	115	334	44	2025-12-30 09:27:10	2025-12-30 09:27:10
16901	334	117	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16902	117	334	44	2025-12-30 09:27:10	2025-12-30 09:27:10
16903	334	119	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16904	119	334	55	2025-12-30 09:27:10	2025-12-30 09:27:10
16905	334	120	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16906	120	334	55	2025-12-30 09:27:10	2025-12-30 09:27:10
16907	334	122	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16908	122	334	44	2025-12-30 09:27:10	2025-12-30 09:27:10
16909	334	123	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16910	123	334	66	2025-12-30 09:27:10	2025-12-30 09:27:10
16911	334	145	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16912	145	334	55	2025-12-30 09:27:10	2025-12-30 09:27:10
16913	334	143	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16914	143	334	66	2025-12-30 09:27:10	2025-12-30 09:27:10
16915	334	272	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16916	272	334	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16917	334	139	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16918	139	334	44	2025-12-30 09:27:10	2025-12-30 09:27:10
16919	334	140	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16920	140	334	55	2025-12-30 09:27:10	2025-12-30 09:27:10
16921	334	141	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16922	141	334	55	2025-12-30 09:27:10	2025-12-30 09:27:10
16923	334	147	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16924	147	334	55	2025-12-30 09:27:10	2025-12-30 09:27:10
16925	334	148	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16926	334	149	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16927	149	334	44	2025-12-30 09:27:10	2025-12-30 09:27:10
16928	334	152	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16929	152	334	44	2025-12-30 09:27:10	2025-12-30 09:27:10
16930	334	153	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16931	153	334	44	2025-12-30 09:27:10	2025-12-30 09:27:10
16932	334	173	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16933	173	334	55	2025-12-30 09:27:10	2025-12-30 09:27:10
16934	334	240	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16935	240	334	55	2025-12-30 09:27:10	2025-12-30 09:27:10
16936	334	254	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16937	254	334	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16938	334	262	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16939	262	334	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16940	334	274	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16941	334	276	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16942	276	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16943	334	278	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16944	278	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16945	334	280	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16946	280	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16947	334	284	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16948	284	334	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16949	334	290	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16950	290	334	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16951	334	285	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16952	285	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16953	334	292	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16954	292	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16955	334	293	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16956	293	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16957	334	298	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16958	298	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16959	334	302	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16960	302	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16961	334	304	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16962	304	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16963	334	305	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16964	305	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16965	334	306	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16966	306	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16967	334	307	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16968	334	310	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16969	310	334	77	2025-12-30 09:27:10	2025-12-30 09:27:10
16970	334	315	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16971	315	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16972	334	313	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16973	313	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16974	334	320	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16975	320	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16976	334	325	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16977	325	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16978	334	324	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16979	324	334	88	2025-12-30 09:27:10	2025-12-30 09:27:10
16980	334	326	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16981	326	334	66	2025-12-30 09:27:10	2025-12-30 09:27:10
16982	334	330	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16983	330	334	66	2025-12-30 09:27:10	2025-12-30 09:27:10
16984	334	333	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16985	333	334	100	2025-12-30 09:27:10	2025-12-30 09:27:10
16986	336	54	44	2025-12-31 06:49:20	2025-12-31 06:49:20
16987	54	336	44	2025-12-31 06:49:20	2025-12-31 06:49:20
16988	336	165	44	2025-12-31 06:49:20	2025-12-31 06:49:20
16989	165	336	44	2025-12-31 06:49:20	2025-12-31 06:49:20
16991	197	336	88	2025-12-31 06:49:20	2025-12-31 06:49:20
16993	204	336	88	2025-12-31 06:49:20	2025-12-31 06:49:20
16995	212	336	88	2025-12-31 06:49:20	2025-12-31 06:49:20
16997	230	336	88	2025-12-31 06:49:20	2025-12-31 06:49:20
16999	235	336	88	2025-12-31 06:49:20	2025-12-31 06:49:20
17001	241	336	88	2025-12-31 06:49:20	2025-12-31 06:49:20
17003	245	336	66	2025-12-31 06:49:20	2025-12-31 06:49:20
17005	247	336	77	2025-12-31 06:49:20	2025-12-31 06:49:20
17007	250	336	66	2025-12-31 06:49:20	2025-12-31 06:49:20
17009	255	336	88	2025-12-31 06:49:20	2025-12-31 06:49:20
17010	336	56	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17011	56	336	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17012	336	58	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17013	58	336	55	2025-12-31 06:49:20	2025-12-31 06:49:20
17014	336	63	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17015	63	336	55	2025-12-31 06:49:20	2025-12-31 06:49:20
17016	336	66	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17017	66	336	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17018	336	67	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17019	67	336	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17020	336	68	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17021	68	336	66	2025-12-31 06:49:20	2025-12-31 06:49:20
17022	336	69	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17023	69	336	66	2025-12-31 06:49:20	2025-12-31 06:49:20
17024	336	70	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17025	70	336	55	2025-12-31 06:49:20	2025-12-31 06:49:20
17026	336	71	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17027	71	336	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17028	336	124	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17029	124	336	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17030	336	125	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17031	125	336	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17032	336	128	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17033	128	336	55	2025-12-31 06:49:20	2025-12-31 06:49:20
17034	336	75	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17035	75	336	55	2025-12-31 06:49:20	2025-12-31 06:49:20
17036	336	76	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17037	76	336	55	2025-12-31 06:49:20	2025-12-31 06:49:20
17038	336	78	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17039	78	336	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17040	336	129	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17041	129	336	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17043	200	336	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17046	336	194	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17048	251	336	88	2025-12-31 06:49:20	2025-12-31 06:49:20
16992	336	204	55	2025-12-31 06:49:20	2025-12-31 06:49:41
16994	336	212	55	2025-12-31 06:49:20	2025-12-31 06:49:41
16996	336	230	55	2025-12-31 06:49:20	2025-12-31 06:49:41
16998	336	235	55	2025-12-31 06:49:20	2025-12-31 06:49:41
17000	336	241	55	2025-12-31 06:49:20	2025-12-31 06:49:41
17002	336	245	66	2025-12-31 06:49:20	2025-12-31 06:49:41
17004	336	247	55	2025-12-31 06:49:20	2025-12-31 06:49:41
17006	336	250	55	2025-12-31 06:49:20	2025-12-31 06:49:41
17008	336	255	55	2025-12-31 06:49:20	2025-12-31 06:49:41
17044	336	265	44	2025-12-31 06:49:20	2025-12-31 06:49:41
17045	336	50	55	2025-12-31 06:49:20	2025-12-31 06:49:41
17047	336	251	55	2025-12-31 06:49:20	2025-12-31 06:49:41
17049	336	131	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17050	131	336	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17051	336	133	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17052	133	336	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17053	336	135	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17054	135	336	55	2025-12-31 06:49:20	2025-12-31 06:49:20
17055	336	142	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17056	142	336	44	2025-12-31 06:49:20	2025-12-31 06:49:20
17058	237	336	77	2025-12-31 06:49:20	2025-12-31 06:49:20
17060	258	336	88	2025-12-31 06:49:20	2025-12-31 06:49:20
17062	242	336	66	2025-12-31 06:49:20	2025-12-31 06:49:20
17064	248	336	55	2025-12-31 06:49:20	2025-12-31 06:49:20
17066	269	336	77	2025-12-31 06:49:21	2025-12-31 06:49:21
17067	336	177	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17068	177	336	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17069	336	195	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17070	336	202	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17072	209	336	77	2025-12-31 06:49:21	2025-12-31 06:49:21
17073	336	215	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17075	238	336	66	2025-12-31 06:49:21	2025-12-31 06:49:21
17077	249	336	77	2025-12-31 06:49:21	2025-12-31 06:49:21
17079	252	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17081	264	336	66	2025-12-31 06:49:21	2025-12-31 06:49:21
17083	270	336	66	2025-12-31 06:49:21	2025-12-31 06:49:21
17085	210	336	100	2025-12-31 06:49:21	2025-12-31 06:49:21
17087	191	336	66	2025-12-31 06:49:21	2025-12-31 06:49:21
17089	196	336	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17090	336	97	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17091	97	336	55	2025-12-31 06:49:21	2025-12-31 06:49:21
17092	336	99	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17093	99	336	55	2025-12-31 06:49:21	2025-12-31 06:49:21
17094	336	100	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17095	336	102	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17096	336	79	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17097	79	336	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17098	336	85	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17099	85	336	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17100	336	86	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17101	86	336	66	2025-12-31 06:49:21	2025-12-31 06:49:21
17102	336	88	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17103	88	336	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17104	336	93	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17105	93	336	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17106	336	253	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17108	226	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17110	239	336	66	2025-12-31 06:49:21	2025-12-31 06:49:21
17111	336	271	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17112	271	336	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17113	336	104	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17114	336	113	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17115	113	336	55	2025-12-31 06:49:21	2025-12-31 06:49:21
17116	336	114	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17117	114	336	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17118	336	115	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17119	115	336	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17120	336	117	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17121	117	336	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17122	336	119	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17123	119	336	55	2025-12-31 06:49:21	2025-12-31 06:49:21
17124	336	120	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17125	120	336	55	2025-12-31 06:49:21	2025-12-31 06:49:21
17126	336	122	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17127	122	336	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17128	336	123	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17129	123	336	66	2025-12-31 06:49:21	2025-12-31 06:49:21
17130	336	145	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17131	145	336	55	2025-12-31 06:49:21	2025-12-31 06:49:21
17132	336	143	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17133	143	336	66	2025-12-31 06:49:21	2025-12-31 06:49:21
17135	272	336	77	2025-12-31 06:49:21	2025-12-31 06:49:21
17136	336	139	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17137	139	336	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17138	336	140	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17139	140	336	55	2025-12-31 06:49:21	2025-12-31 06:49:21
17140	336	141	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17141	141	336	55	2025-12-31 06:49:21	2025-12-31 06:49:21
17142	336	147	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17143	147	336	55	2025-12-31 06:49:21	2025-12-31 06:49:21
17144	336	148	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17145	336	149	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17146	149	336	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17147	336	152	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17148	152	336	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17149	336	153	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17150	153	336	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17151	336	173	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17152	173	336	55	2025-12-31 06:49:21	2025-12-31 06:49:21
17154	240	336	66	2025-12-31 06:49:21	2025-12-31 06:49:21
17059	336	258	55	2025-12-31 06:49:20	2025-12-31 06:49:41
17061	336	242	55	2025-12-31 06:49:20	2025-12-31 06:49:41
17063	336	248	66	2025-12-31 06:49:20	2025-12-31 06:49:41
17065	336	269	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17071	336	209	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17074	336	238	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17076	336	249	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17078	336	252	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17080	336	264	77	2025-12-31 06:49:21	2025-12-31 06:49:41
17084	336	210	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17086	336	191	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17088	336	196	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17107	336	226	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17109	336	239	88	2025-12-31 06:49:21	2025-12-31 06:49:41
17134	336	272	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17153	336	240	66	2025-12-31 06:49:21	2025-12-31 06:49:41
17155	336	254	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17156	254	336	77	2025-12-31 06:49:21	2025-12-31 06:49:21
17158	262	336	77	2025-12-31 06:49:21	2025-12-31 06:49:21
17160	274	336	44	2025-12-31 06:49:21	2025-12-31 06:49:21
17162	276	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17164	278	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17166	280	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17168	284	336	77	2025-12-31 06:49:21	2025-12-31 06:49:21
17170	290	336	77	2025-12-31 06:49:21	2025-12-31 06:49:21
17172	285	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17174	292	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17176	293	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17178	298	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17180	302	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17182	304	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17184	305	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17186	306	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17189	310	336	77	2025-12-31 06:49:21	2025-12-31 06:49:21
17191	315	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17193	313	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17195	320	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17197	325	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17199	324	336	88	2025-12-31 06:49:21	2025-12-31 06:49:21
17201	326	336	66	2025-12-31 06:49:21	2025-12-31 06:49:21
17203	330	336	66	2025-12-31 06:49:21	2025-12-31 06:49:21
17205	333	336	100	2025-12-31 06:49:21	2025-12-31 06:49:21
16990	336	197	55	2025-12-31 06:49:20	2025-12-31 06:49:41
17042	336	200	44	2025-12-31 06:49:20	2025-12-31 06:49:41
17057	336	237	88	2025-12-31 06:49:20	2025-12-31 06:49:41
17082	336	270	66	2025-12-31 06:49:21	2025-12-31 06:49:41
17157	336	262	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17159	336	274	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17161	336	276	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17163	336	278	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17165	336	280	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17167	336	284	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17169	336	290	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17171	336	285	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17173	336	292	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17175	336	293	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17177	336	298	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17179	336	302	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17181	336	304	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17183	336	305	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17185	336	306	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17187	336	307	44	2025-12-31 06:49:21	2025-12-31 06:49:41
17188	336	310	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17190	336	315	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17192	336	313	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17194	336	320	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17196	336	325	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17198	336	324	55	2025-12-31 06:49:21	2025-12-31 06:49:41
17200	336	326	77	2025-12-31 06:49:21	2025-12-31 06:49:41
17202	336	330	66	2025-12-31 06:49:21	2025-12-31 06:49:41
17204	336	333	66	2025-12-31 06:49:21	2025-12-31 06:49:41
17206	337	174	55	2025-12-31 07:08:55	2025-12-31 07:08:55
17207	174	337	55	2025-12-31 07:08:55	2025-12-31 07:08:55
17208	337	181	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17209	337	193	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17210	193	337	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17211	337	223	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17212	223	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17213	337	263	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17214	263	337	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17215	337	268	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17216	268	337	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17217	337	55	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17218	55	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17219	337	57	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17220	57	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17221	337	59	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17222	59	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17223	337	60	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17224	60	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17225	337	61	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17226	61	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17227	337	62	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17228	337	64	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17229	337	65	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17230	65	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17231	337	72	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17232	72	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17233	337	73	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17234	73	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17235	337	126	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17236	126	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17237	337	127	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17238	127	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17239	337	166	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17240	166	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17241	337	74	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17242	74	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17243	337	77	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17244	77	337	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17245	337	130	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17246	130	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17247	337	51	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17248	51	337	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17249	337	214	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17250	337	176	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17251	176	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17252	337	231	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17253	231	337	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17254	337	132	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17255	132	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17256	337	134	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17257	134	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17258	337	136	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17259	136	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17260	337	137	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17261	137	337	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17262	337	138	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17263	138	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17264	337	224	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17265	224	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17266	337	168	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17267	168	337	100	2025-12-31 07:08:56	2025-12-31 07:08:56
17268	337	189	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17269	189	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17270	337	222	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17271	222	337	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17272	337	232	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17273	232	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17274	337	243	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17275	243	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17276	337	261	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17277	261	337	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17278	337	171	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17279	171	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17280	337	179	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17281	179	337	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17282	337	94	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17283	94	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17284	337	95	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17285	95	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17286	337	96	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17287	96	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17288	337	98	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17289	98	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17290	337	101	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17291	337	103	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17292	103	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17293	337	80	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17294	80	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17295	337	81	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17296	337	82	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17297	82	337	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17298	337	83	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17299	83	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17300	337	84	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17301	84	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17302	337	87	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17303	87	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17304	337	89	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17305	89	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17306	337	90	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17307	90	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17308	337	91	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17309	91	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17310	337	92	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17311	92	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17312	337	244	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17313	244	337	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17314	337	260	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17315	337	216	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17316	337	233	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17317	233	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17318	337	266	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17319	266	337	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17320	337	105	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17321	105	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17322	337	106	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17323	337	107	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17324	337	108	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17325	108	337	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17326	337	109	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17327	337	110	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17328	337	111	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17329	111	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17330	337	112	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17331	112	337	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17332	337	116	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17333	116	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17334	337	118	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17335	118	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17336	337	121	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17337	121	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17338	337	144	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17339	144	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17340	337	146	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17341	146	337	44	2025-12-31 07:08:56	2025-12-31 07:08:56
17342	337	267	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17343	267	337	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17344	337	150	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17345	150	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17346	337	151	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17347	337	53	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17348	337	219	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17349	337	227	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17350	227	337	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17351	337	211	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17352	337	234	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17353	234	337	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17354	337	273	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17355	273	337	55	2025-12-31 07:08:56	2025-12-31 07:08:56
17356	337	279	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17357	279	337	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17358	337	277	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17359	277	337	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17360	337	291	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17361	291	337	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17362	337	246	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17363	246	337	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17364	337	283	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17365	283	337	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17366	337	286	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17367	286	337	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17368	337	287	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17369	287	337	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17370	337	288	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17371	288	337	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17372	337	289	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17373	289	337	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17374	337	294	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17375	294	337	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17376	337	299	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17377	299	337	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17378	337	229	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17379	229	337	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17380	337	300	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17381	300	337	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17382	337	303	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17383	303	337	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17384	337	192	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17385	192	337	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17386	337	311	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17387	311	337	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17388	337	312	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17389	312	337	66	2025-12-31 07:08:56	2025-12-31 07:08:56
17390	337	316	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17391	316	337	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17392	337	317	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17393	317	337	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17394	337	319	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17395	319	337	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17396	337	321	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17397	321	337	88	2025-12-31 07:08:56	2025-12-31 07:08:56
17398	337	318	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17399	318	337	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17400	337	331	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17401	331	337	100	2025-12-31 07:08:56	2025-12-31 07:08:56
17402	337	332	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17403	332	337	100	2025-12-31 07:08:56	2025-12-31 07:08:56
17404	337	334	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17405	334	337	100	2025-12-31 07:08:56	2025-12-31 07:08:56
17406	337	336	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17407	336	337	77	2025-12-31 07:08:56	2025-12-31 07:08:56
17408	339	54	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17409	54	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17410	339	165	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17411	165	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17412	339	197	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17413	197	339	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17414	339	204	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17415	204	339	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17416	339	212	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17417	212	339	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17418	339	230	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17419	230	339	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17420	339	235	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17421	235	339	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17422	339	241	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17423	241	339	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17424	339	245	100	2026-01-01 06:33:48	2026-01-01 06:33:48
17425	245	339	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17426	339	247	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17427	247	339	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17428	339	250	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17429	250	339	66	2026-01-01 06:33:48	2026-01-01 06:33:48
17430	339	255	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17431	255	339	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17432	339	56	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17433	56	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17434	339	58	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17435	58	339	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17436	339	63	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17437	63	339	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17438	339	66	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17439	66	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17440	339	67	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17441	67	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17442	339	68	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17443	68	339	66	2026-01-01 06:33:48	2026-01-01 06:33:48
17444	339	69	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17445	69	339	66	2026-01-01 06:33:48	2026-01-01 06:33:48
17446	339	70	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17447	70	339	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17448	339	71	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17449	71	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17450	339	124	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17451	124	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17452	339	125	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17453	125	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17454	339	128	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17455	128	339	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17456	339	75	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17457	75	339	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17458	339	76	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17459	76	339	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17460	339	78	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17461	78	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17462	339	129	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17463	129	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17464	339	200	66	2026-01-01 06:33:48	2026-01-01 06:33:48
17465	200	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17466	339	265	66	2026-01-01 06:33:48	2026-01-01 06:33:48
17467	339	50	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17468	50	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17469	339	194	66	2026-01-01 06:33:48	2026-01-01 06:33:48
17470	194	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17471	339	251	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17472	251	339	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17473	339	131	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17474	131	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17475	339	133	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17476	133	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17477	339	135	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17478	135	339	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17479	339	142	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17480	142	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17481	339	237	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17482	237	339	66	2026-01-01 06:33:48	2026-01-01 06:33:48
17483	339	258	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17484	258	339	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17485	339	242	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17486	242	339	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17487	339	248	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17488	248	339	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17489	339	269	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17490	269	339	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17491	339	177	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17492	177	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17493	339	195	66	2026-01-01 06:33:48	2026-01-01 06:33:48
17494	339	202	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17495	339	209	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17496	209	339	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17497	339	215	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17498	339	238	66	2026-01-01 06:33:48	2026-01-01 06:33:48
17499	238	339	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17500	339	249	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17501	249	339	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17502	339	252	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17503	252	339	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17504	339	264	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17505	264	339	66	2026-01-01 06:33:48	2026-01-01 06:33:48
17506	339	270	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17507	270	339	66	2026-01-01 06:33:48	2026-01-01 06:33:48
17508	339	210	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17509	210	339	100	2026-01-01 06:33:48	2026-01-01 06:33:48
17510	339	191	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17511	191	339	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17512	339	196	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17513	196	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17514	339	97	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17515	97	339	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17516	339	99	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17517	99	339	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17518	339	100	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17519	339	102	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17520	339	79	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17521	79	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17522	339	85	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17523	85	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17524	339	86	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17525	86	339	66	2026-01-01 06:33:48	2026-01-01 06:33:48
17526	339	88	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17527	88	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17528	339	93	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17529	93	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17530	339	253	66	2026-01-01 06:33:48	2026-01-01 06:33:48
17531	253	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17532	339	226	77	2026-01-01 06:33:48	2026-01-01 06:33:48
17533	226	339	88	2026-01-01 06:33:48	2026-01-01 06:33:48
17534	339	239	100	2026-01-01 06:33:48	2026-01-01 06:33:48
17535	239	339	66	2026-01-01 06:33:48	2026-01-01 06:33:48
17536	339	271	66	2026-01-01 06:33:48	2026-01-01 06:33:48
17537	271	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17538	339	104	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17539	339	113	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17540	113	339	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17541	339	114	55	2026-01-01 06:33:48	2026-01-01 06:33:48
17542	114	339	44	2026-01-01 06:33:48	2026-01-01 06:33:48
17543	339	115	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17544	115	339	44	2026-01-01 06:33:49	2026-01-01 06:33:49
17545	339	117	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17546	117	339	44	2026-01-01 06:33:49	2026-01-01 06:33:49
17547	339	119	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17548	119	339	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17549	339	120	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17550	120	339	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17551	339	122	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17552	122	339	44	2026-01-01 06:33:49	2026-01-01 06:33:49
17553	339	123	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17554	123	339	66	2026-01-01 06:33:49	2026-01-01 06:33:49
17555	339	145	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17556	145	339	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17557	339	143	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17558	143	339	66	2026-01-01 06:33:49	2026-01-01 06:33:49
17559	339	272	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17560	272	339	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17561	339	139	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17562	139	339	44	2026-01-01 06:33:49	2026-01-01 06:33:49
17563	339	140	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17564	140	339	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17565	339	141	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17566	141	339	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17567	339	147	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17568	147	339	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17569	339	148	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17570	339	149	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17571	149	339	44	2026-01-01 06:33:49	2026-01-01 06:33:49
17572	339	152	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17573	152	339	44	2026-01-01 06:33:49	2026-01-01 06:33:49
17574	339	153	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17575	153	339	44	2026-01-01 06:33:49	2026-01-01 06:33:49
17576	339	173	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17577	173	339	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17578	339	240	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17579	240	339	66	2026-01-01 06:33:49	2026-01-01 06:33:49
17580	339	254	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17581	254	339	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17582	339	262	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17583	262	339	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17584	339	274	66	2026-01-01 06:33:49	2026-01-01 06:33:49
17585	339	276	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17586	276	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17587	339	278	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17588	278	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17589	339	280	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17590	280	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17591	339	284	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17592	284	339	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17593	339	290	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17594	290	339	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17595	339	285	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17596	285	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17597	339	292	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17598	292	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17599	339	293	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17600	293	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17601	339	298	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17602	298	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17603	339	302	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17604	302	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17605	339	304	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17606	304	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17607	339	305	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17608	305	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17609	339	306	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17610	306	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17611	339	307	55	2026-01-01 06:33:49	2026-01-01 06:33:49
17612	339	310	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17613	310	339	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17614	339	315	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17615	315	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17616	339	313	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17617	313	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17618	339	320	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17619	320	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17620	339	325	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17621	325	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17622	339	324	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17623	324	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17624	339	326	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17625	326	339	66	2026-01-01 06:33:49	2026-01-01 06:33:49
17626	339	330	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17627	330	339	66	2026-01-01 06:33:49	2026-01-01 06:33:49
17628	339	333	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17629	333	339	100	2026-01-01 06:33:49	2026-01-01 06:33:49
17630	339	337	77	2026-01-01 06:33:49	2026-01-01 06:33:49
17631	337	339	88	2026-01-01 06:33:49	2026-01-01 06:33:49
17633	174	341	55	2026-01-06 15:39:00	2026-01-06 15:39:00
17634	341	181	77	2026-01-06 15:39:00	2026-01-06 15:39:00
17635	341	193	100	2026-01-06 15:39:00	2026-01-06 15:39:00
17636	193	341	66	2026-01-06 15:39:00	2026-01-06 15:39:00
17637	341	223	100	2026-01-06 15:39:00	2026-01-06 15:39:00
17638	223	341	55	2026-01-06 15:39:00	2026-01-06 15:39:00
17639	341	263	100	2026-01-06 15:39:00	2026-01-06 15:39:00
17640	263	341	77	2026-01-06 15:39:00	2026-01-06 15:39:00
17641	341	268	100	2026-01-06 15:39:00	2026-01-06 15:39:00
17642	268	341	88	2026-01-06 15:39:00	2026-01-06 15:39:00
17644	55	341	44	2026-01-06 15:39:00	2026-01-06 15:39:00
17646	57	341	44	2026-01-06 15:39:00	2026-01-06 15:39:00
17648	59	341	44	2026-01-06 15:39:00	2026-01-06 15:39:00
17650	60	341	44	2026-01-06 15:39:00	2026-01-06 15:39:00
17652	61	341	55	2026-01-06 15:39:00	2026-01-06 15:39:00
17656	65	341	44	2026-01-06 15:39:00	2026-01-06 15:39:00
17658	72	341	44	2026-01-06 15:39:00	2026-01-06 15:39:00
17660	73	341	55	2026-01-06 15:39:00	2026-01-06 15:39:00
17661	341	126	77	2026-01-06 15:39:00	2026-01-06 15:39:00
17662	126	341	55	2026-01-06 15:39:00	2026-01-06 15:39:00
17663	341	127	77	2026-01-06 15:39:00	2026-01-06 15:39:00
17664	127	341	55	2026-01-06 15:39:00	2026-01-06 15:39:00
17665	341	166	77	2026-01-06 15:39:00	2026-01-06 15:39:00
17666	166	341	44	2026-01-06 15:39:00	2026-01-06 15:39:00
17668	74	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17670	77	341	66	2026-01-06 15:39:01	2026-01-06 15:39:01
17671	341	130	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17672	130	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17673	341	51	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17674	51	341	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17675	341	214	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17677	341	231	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17678	231	341	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17679	341	132	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17680	132	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17681	341	134	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17682	134	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17683	341	136	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17684	136	341	44	2026-01-06 15:39:01	2026-01-06 15:39:01
17685	341	137	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17643	341	55	66	2026-01-06 15:39:00	2026-01-06 15:59:40
17645	341	57	66	2026-01-06 15:39:00	2026-01-06 15:59:40
17647	341	59	66	2026-01-06 15:39:00	2026-01-06 15:59:40
17649	341	60	66	2026-01-06 15:39:00	2026-01-06 15:59:40
17651	341	61	66	2026-01-06 15:39:00	2026-01-06 15:59:40
17653	341	62	66	2026-01-06 15:39:00	2026-01-06 15:59:40
17654	341	64	66	2026-01-06 15:39:00	2026-01-06 15:59:40
17655	341	65	66	2026-01-06 15:39:00	2026-01-06 15:59:40
17657	341	72	66	2026-01-06 15:39:00	2026-01-06 15:59:40
17667	341	74	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17669	341	77	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17676	341	176	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17686	137	341	66	2026-01-06 15:39:01	2026-01-06 15:39:01
17687	341	138	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17688	138	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17689	341	224	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17690	224	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17692	168	341	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17693	341	189	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17694	189	341	44	2026-01-06 15:39:01	2026-01-06 15:39:01
17695	341	222	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17696	222	341	66	2026-01-06 15:39:01	2026-01-06 15:39:01
17697	341	232	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17698	232	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17700	243	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17701	341	261	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17702	261	341	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17704	171	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17705	341	179	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17706	179	341	66	2026-01-06 15:39:01	2026-01-06 15:39:01
17707	341	94	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17708	94	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17709	341	95	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17710	95	341	44	2026-01-06 15:39:01	2026-01-06 15:39:01
17711	341	96	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17712	96	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17713	341	98	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17714	98	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17715	341	101	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17716	341	103	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17717	103	341	44	2026-01-06 15:39:01	2026-01-06 15:39:01
17719	80	341	44	2026-01-06 15:39:01	2026-01-06 15:39:01
17722	82	341	66	2026-01-06 15:39:01	2026-01-06 15:39:01
17724	83	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17726	84	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17728	87	341	44	2026-01-06 15:39:01	2026-01-06 15:39:01
17730	89	341	44	2026-01-06 15:39:01	2026-01-06 15:39:01
17732	90	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17734	91	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17736	92	341	44	2026-01-06 15:39:01	2026-01-06 15:39:01
17737	341	244	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17738	244	341	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17741	341	233	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17742	233	341	44	2026-01-06 15:39:01	2026-01-06 15:39:01
17743	341	266	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17744	266	341	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17745	341	105	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17746	105	341	44	2026-01-06 15:39:01	2026-01-06 15:39:01
17747	341	106	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17748	341	107	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17749	341	108	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17750	108	341	66	2026-01-06 15:39:01	2026-01-06 15:39:01
17751	341	109	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17752	341	110	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17753	341	111	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17754	111	341	44	2026-01-06 15:39:01	2026-01-06 15:39:01
17755	341	112	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17756	112	341	66	2026-01-06 15:39:01	2026-01-06 15:39:01
17757	341	116	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17758	116	341	44	2026-01-06 15:39:01	2026-01-06 15:39:01
17759	341	118	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17760	118	341	44	2026-01-06 15:39:01	2026-01-06 15:39:01
17761	341	121	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17762	121	341	44	2026-01-06 15:39:01	2026-01-06 15:39:01
17764	144	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17766	146	341	44	2026-01-06 15:39:01	2026-01-06 15:39:01
17767	341	267	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17768	267	341	66	2026-01-06 15:39:01	2026-01-06 15:39:01
17770	150	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17772	341	53	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17774	341	227	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17775	227	341	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17776	341	211	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17777	341	234	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17778	234	341	66	2026-01-06 15:39:01	2026-01-06 15:39:01
17779	341	273	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17780	273	341	55	2026-01-06 15:39:01	2026-01-06 15:39:01
17781	341	279	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17782	279	341	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17783	341	277	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17784	277	341	66	2026-01-06 15:39:01	2026-01-06 15:39:01
17785	341	291	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17786	291	341	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17788	246	341	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17789	341	283	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17790	283	341	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17791	341	286	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17792	286	341	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17699	341	243	88	2026-01-06 15:39:01	2026-01-06 15:59:40
17703	341	171	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17718	341	80	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17720	341	81	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17721	341	82	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17723	341	83	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17725	341	84	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17727	341	87	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17729	341	89	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17733	341	91	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17735	341	92	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17739	341	260	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17740	341	216	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17763	341	144	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17765	341	146	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17769	341	150	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17771	341	151	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17773	341	219	88	2026-01-06 15:39:01	2026-01-06 15:59:40
17787	341	246	88	2026-01-06 15:39:01	2026-01-06 15:59:40
17793	341	287	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17794	287	341	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17795	341	288	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17796	288	341	66	2026-01-06 15:39:01	2026-01-06 15:39:01
17797	341	289	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17798	289	341	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17799	341	294	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17800	294	341	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17801	341	299	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17802	299	341	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17803	341	229	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17804	229	341	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17805	341	300	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17806	300	341	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17807	341	303	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17808	303	341	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17809	341	192	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17810	192	341	66	2026-01-06 15:39:01	2026-01-06 15:39:01
17811	341	311	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17812	311	341	66	2026-01-06 15:39:01	2026-01-06 15:39:01
17813	341	312	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17814	312	341	66	2026-01-06 15:39:01	2026-01-06 15:39:01
17815	341	316	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17816	316	341	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17817	341	317	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17818	317	341	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17819	341	319	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17820	319	341	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17821	341	321	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17822	321	341	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17823	341	318	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17824	318	341	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17826	331	341	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17828	332	341	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17830	334	341	100	2026-01-06 15:39:01	2026-01-06 15:39:01
17832	336	341	77	2026-01-06 15:39:01	2026-01-06 15:39:01
17834	339	341	88	2026-01-06 15:39:01	2026-01-06 15:39:01
17632	341	174	66	2026-01-06 15:39:00	2026-01-06 15:59:40
17659	341	73	66	2026-01-06 15:39:00	2026-01-06 15:59:40
17691	341	168	88	2026-01-06 15:39:01	2026-01-06 15:59:40
17731	341	90	66	2026-01-06 15:39:01	2026-01-06 15:59:40
17825	341	331	88	2026-01-06 15:39:01	2026-01-06 15:59:40
17827	341	332	88	2026-01-06 15:39:01	2026-01-06 15:59:40
17829	341	334	88	2026-01-06 15:39:01	2026-01-06 15:59:40
17831	341	336	88	2026-01-06 15:39:01	2026-01-06 15:59:40
17833	341	339	88	2026-01-06 15:39:01	2026-01-06 15:59:40
17835	343	174	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17836	174	343	55	2026-01-06 16:40:19	2026-01-06 16:40:19
17837	343	181	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17838	343	193	100	2026-01-06 16:40:19	2026-01-06 16:40:19
17839	193	343	66	2026-01-06 16:40:19	2026-01-06 16:40:19
17840	343	223	100	2026-01-06 16:40:19	2026-01-06 16:40:19
17841	223	343	55	2026-01-06 16:40:19	2026-01-06 16:40:19
17842	343	263	100	2026-01-06 16:40:19	2026-01-06 16:40:19
17843	263	343	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17844	343	268	100	2026-01-06 16:40:19	2026-01-06 16:40:19
17845	268	343	88	2026-01-06 16:40:19	2026-01-06 16:40:19
17846	343	55	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17847	55	343	44	2026-01-06 16:40:19	2026-01-06 16:40:19
17848	343	57	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17849	57	343	44	2026-01-06 16:40:19	2026-01-06 16:40:19
17850	343	59	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17851	59	343	44	2026-01-06 16:40:19	2026-01-06 16:40:19
17852	343	60	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17853	60	343	44	2026-01-06 16:40:19	2026-01-06 16:40:19
17854	343	61	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17855	61	343	55	2026-01-06 16:40:19	2026-01-06 16:40:19
17856	343	62	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17857	343	64	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17858	343	65	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17859	65	343	44	2026-01-06 16:40:19	2026-01-06 16:40:19
17860	343	72	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17861	72	343	44	2026-01-06 16:40:19	2026-01-06 16:40:19
17862	343	73	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17863	73	343	55	2026-01-06 16:40:19	2026-01-06 16:40:19
17864	343	126	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17865	126	343	55	2026-01-06 16:40:19	2026-01-06 16:40:19
17866	343	127	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17867	127	343	55	2026-01-06 16:40:19	2026-01-06 16:40:19
17868	343	166	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17869	166	343	44	2026-01-06 16:40:19	2026-01-06 16:40:19
17870	343	74	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17871	74	343	55	2026-01-06 16:40:19	2026-01-06 16:40:19
17872	343	77	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17873	77	343	66	2026-01-06 16:40:19	2026-01-06 16:40:19
17874	343	130	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17875	130	343	55	2026-01-06 16:40:19	2026-01-06 16:40:19
17876	343	51	100	2026-01-06 16:40:19	2026-01-06 16:40:19
17877	51	343	88	2026-01-06 16:40:19	2026-01-06 16:40:19
17878	343	214	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17879	343	176	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17880	343	231	100	2026-01-06 16:40:19	2026-01-06 16:40:19
17881	231	343	88	2026-01-06 16:40:19	2026-01-06 16:40:19
17882	343	132	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17883	132	343	55	2026-01-06 16:40:19	2026-01-06 16:40:19
17884	343	134	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17885	134	343	55	2026-01-06 16:40:19	2026-01-06 16:40:19
17886	343	136	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17887	136	343	44	2026-01-06 16:40:19	2026-01-06 16:40:19
17888	343	137	77	2026-01-06 16:40:19	2026-01-06 16:40:19
17889	137	343	66	2026-01-06 16:40:20	2026-01-06 16:40:20
17890	343	138	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17891	138	343	55	2026-01-06 16:40:20	2026-01-06 16:40:20
17892	343	224	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17893	224	343	55	2026-01-06 16:40:20	2026-01-06 16:40:20
17894	343	168	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17895	168	343	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17896	343	189	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17897	189	343	44	2026-01-06 16:40:20	2026-01-06 16:40:20
17898	343	222	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17899	222	343	66	2026-01-06 16:40:20	2026-01-06 16:40:20
17900	343	232	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17901	232	343	55	2026-01-06 16:40:20	2026-01-06 16:40:20
17902	343	243	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17903	243	343	55	2026-01-06 16:40:20	2026-01-06 16:40:20
17904	343	261	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17905	261	343	88	2026-01-06 16:40:20	2026-01-06 16:40:20
17906	343	171	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17907	171	343	55	2026-01-06 16:40:20	2026-01-06 16:40:20
17908	343	179	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17909	179	343	66	2026-01-06 16:40:20	2026-01-06 16:40:20
17910	343	94	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17911	94	343	55	2026-01-06 16:40:20	2026-01-06 16:40:20
17912	343	95	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17913	95	343	44	2026-01-06 16:40:20	2026-01-06 16:40:20
17914	343	96	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17915	96	343	55	2026-01-06 16:40:20	2026-01-06 16:40:20
17916	343	98	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17917	98	343	55	2026-01-06 16:40:20	2026-01-06 16:40:20
17918	343	101	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17919	343	103	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17920	103	343	44	2026-01-06 16:40:20	2026-01-06 16:40:20
17921	343	80	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17922	80	343	44	2026-01-06 16:40:20	2026-01-06 16:40:20
17923	343	81	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17924	343	82	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17925	82	343	66	2026-01-06 16:40:20	2026-01-06 16:40:20
17926	343	83	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17927	83	343	55	2026-01-06 16:40:20	2026-01-06 16:40:20
17928	343	84	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17929	84	343	55	2026-01-06 16:40:20	2026-01-06 16:40:20
17930	343	87	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17931	87	343	44	2026-01-06 16:40:20	2026-01-06 16:40:20
17932	343	89	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17933	89	343	44	2026-01-06 16:40:20	2026-01-06 16:40:20
17934	343	90	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17935	90	343	55	2026-01-06 16:40:20	2026-01-06 16:40:20
17936	343	91	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17937	91	343	55	2026-01-06 16:40:20	2026-01-06 16:40:20
17938	343	92	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17939	92	343	44	2026-01-06 16:40:20	2026-01-06 16:40:20
17940	343	244	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17941	244	343	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17942	343	260	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17943	343	216	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17944	343	233	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17945	233	343	44	2026-01-06 16:40:20	2026-01-06 16:40:20
17946	343	266	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17947	266	343	88	2026-01-06 16:40:20	2026-01-06 16:40:20
17948	343	105	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17949	105	343	44	2026-01-06 16:40:20	2026-01-06 16:40:20
17950	343	106	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17951	343	107	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17952	343	108	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17953	108	343	66	2026-01-06 16:40:20	2026-01-06 16:40:20
17954	343	109	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17955	343	110	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17956	343	111	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17957	111	343	44	2026-01-06 16:40:20	2026-01-06 16:40:20
17958	343	112	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17959	112	343	66	2026-01-06 16:40:20	2026-01-06 16:40:20
17960	343	116	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17961	116	343	44	2026-01-06 16:40:20	2026-01-06 16:40:20
17962	343	118	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17963	118	343	44	2026-01-06 16:40:20	2026-01-06 16:40:20
17964	343	121	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17965	121	343	44	2026-01-06 16:40:20	2026-01-06 16:40:20
17966	343	144	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17967	144	343	55	2026-01-06 16:40:20	2026-01-06 16:40:20
17968	343	146	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17969	146	343	44	2026-01-06 16:40:20	2026-01-06 16:40:20
17970	343	267	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17971	267	343	66	2026-01-06 16:40:20	2026-01-06 16:40:20
17972	343	150	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17973	150	343	55	2026-01-06 16:40:20	2026-01-06 16:40:20
17974	343	151	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17975	343	53	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17976	343	219	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17977	343	227	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17978	227	343	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17979	343	211	88	2026-01-06 16:40:20	2026-01-06 16:40:20
17980	343	234	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17981	234	343	66	2026-01-06 16:40:20	2026-01-06 16:40:20
17982	343	273	88	2026-01-06 16:40:20	2026-01-06 16:40:20
17983	273	343	55	2026-01-06 16:40:20	2026-01-06 16:40:20
17984	343	279	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17985	279	343	88	2026-01-06 16:40:20	2026-01-06 16:40:20
17986	343	277	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17987	277	343	66	2026-01-06 16:40:20	2026-01-06 16:40:20
17988	343	291	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17989	291	343	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17990	343	246	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17991	246	343	77	2026-01-06 16:40:20	2026-01-06 16:40:20
17992	343	283	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17993	283	343	88	2026-01-06 16:40:20	2026-01-06 16:40:20
17994	343	286	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17995	286	343	88	2026-01-06 16:40:20	2026-01-06 16:40:20
17996	343	287	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17997	287	343	88	2026-01-06 16:40:20	2026-01-06 16:40:20
17998	343	288	100	2026-01-06 16:40:20	2026-01-06 16:40:20
17999	288	343	66	2026-01-06 16:40:20	2026-01-06 16:40:20
18000	343	289	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18001	289	343	88	2026-01-06 16:40:20	2026-01-06 16:40:20
18002	343	294	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18003	294	343	77	2026-01-06 16:40:20	2026-01-06 16:40:20
18004	343	299	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18005	299	343	88	2026-01-06 16:40:20	2026-01-06 16:40:20
18006	343	229	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18007	229	343	88	2026-01-06 16:40:20	2026-01-06 16:40:20
18008	343	300	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18009	300	343	88	2026-01-06 16:40:20	2026-01-06 16:40:20
18010	343	303	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18011	303	343	88	2026-01-06 16:40:20	2026-01-06 16:40:20
18012	343	192	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18013	192	343	66	2026-01-06 16:40:20	2026-01-06 16:40:20
18014	343	311	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18015	311	343	66	2026-01-06 16:40:20	2026-01-06 16:40:20
18016	343	312	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18017	312	343	66	2026-01-06 16:40:20	2026-01-06 16:40:20
18018	343	316	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18019	316	343	77	2026-01-06 16:40:20	2026-01-06 16:40:20
18020	343	317	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18021	317	343	88	2026-01-06 16:40:20	2026-01-06 16:40:20
18022	343	319	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18023	319	343	77	2026-01-06 16:40:20	2026-01-06 16:40:20
18024	343	321	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18025	321	343	88	2026-01-06 16:40:20	2026-01-06 16:40:20
18026	343	318	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18027	318	343	77	2026-01-06 16:40:20	2026-01-06 16:40:20
18028	343	331	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18029	331	343	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18030	343	332	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18031	332	343	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18032	343	334	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18033	334	343	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18034	343	336	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18035	336	343	77	2026-01-06 16:40:20	2026-01-06 16:40:20
18036	343	339	100	2026-01-06 16:40:20	2026-01-06 16:40:20
18037	339	343	88	2026-01-06 16:40:20	2026-01-06 16:40:20
18038	340	54	77	2026-01-06 16:45:24	2026-01-06 16:45:24
18039	54	340	44	2026-01-06 16:45:24	2026-01-06 16:45:24
18040	340	165	77	2026-01-06 16:45:24	2026-01-06 16:45:24
18041	165	340	44	2026-01-06 16:45:24	2026-01-06 16:45:24
18042	340	197	100	2026-01-06 16:45:24	2026-01-06 16:45:24
18043	197	340	88	2026-01-06 16:45:24	2026-01-06 16:45:24
18044	340	204	100	2026-01-06 16:45:24	2026-01-06 16:45:24
18045	204	340	88	2026-01-06 16:45:24	2026-01-06 16:45:24
18046	340	212	100	2026-01-06 16:45:24	2026-01-06 16:45:24
18047	212	340	88	2026-01-06 16:45:24	2026-01-06 16:45:24
18048	340	230	100	2026-01-06 16:45:24	2026-01-06 16:45:24
18049	230	340	88	2026-01-06 16:45:24	2026-01-06 16:45:24
18050	340	235	100	2026-01-06 16:45:24	2026-01-06 16:45:24
18051	235	340	88	2026-01-06 16:45:24	2026-01-06 16:45:24
18052	340	241	100	2026-01-06 16:45:24	2026-01-06 16:45:24
18053	241	340	88	2026-01-06 16:45:24	2026-01-06 16:45:24
18054	340	245	100	2026-01-06 16:45:24	2026-01-06 16:45:24
18055	245	340	66	2026-01-06 16:45:24	2026-01-06 16:45:24
18056	340	247	100	2026-01-06 16:45:24	2026-01-06 16:45:24
18057	247	340	77	2026-01-06 16:45:24	2026-01-06 16:45:24
18058	340	250	100	2026-01-06 16:45:24	2026-01-06 16:45:24
18059	250	340	66	2026-01-06 16:45:24	2026-01-06 16:45:24
18060	340	255	100	2026-01-06 16:45:24	2026-01-06 16:45:24
18061	255	340	88	2026-01-06 16:45:24	2026-01-06 16:45:24
18062	340	56	77	2026-01-06 16:45:24	2026-01-06 16:45:24
18063	56	340	44	2026-01-06 16:45:24	2026-01-06 16:45:24
18064	340	58	77	2026-01-06 16:45:24	2026-01-06 16:45:24
18065	58	340	55	2026-01-06 16:45:24	2026-01-06 16:45:24
18066	340	63	77	2026-01-06 16:45:24	2026-01-06 16:45:24
18067	63	340	55	2026-01-06 16:45:24	2026-01-06 16:45:24
18068	340	66	77	2026-01-06 16:45:24	2026-01-06 16:45:24
18069	66	340	44	2026-01-06 16:45:24	2026-01-06 16:45:24
18070	340	67	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18071	67	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18072	340	68	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18073	68	340	66	2026-01-06 16:45:25	2026-01-06 16:45:25
18074	340	69	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18075	69	340	66	2026-01-06 16:45:25	2026-01-06 16:45:25
18076	340	70	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18077	70	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18078	340	71	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18079	71	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18080	340	124	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18081	124	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18082	340	125	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18083	125	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18084	340	128	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18085	128	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18086	340	75	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18087	75	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18088	340	76	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18089	76	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18090	340	78	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18091	78	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18092	340	129	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18093	129	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18094	340	200	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18095	200	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18096	340	265	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18097	340	50	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18098	340	194	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18099	340	251	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18100	251	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18101	340	131	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18102	131	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18103	340	133	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18104	133	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18105	340	135	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18106	135	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18107	340	142	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18108	142	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18109	340	237	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18110	237	340	66	2026-01-06 16:45:25	2026-01-06 16:45:25
18111	340	258	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18112	258	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18113	340	242	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18114	242	340	66	2026-01-06 16:45:25	2026-01-06 16:45:25
18115	340	248	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18116	248	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18117	340	269	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18118	269	340	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18119	340	177	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18120	177	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18121	340	195	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18122	340	202	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18123	340	209	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18124	209	340	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18125	340	215	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18126	340	238	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18127	238	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18128	340	249	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18129	249	340	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18130	340	252	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18131	252	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18132	340	264	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18133	264	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18134	340	270	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18135	270	340	66	2026-01-06 16:45:25	2026-01-06 16:45:25
18136	340	210	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18137	210	340	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18138	340	191	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18139	191	340	66	2026-01-06 16:45:25	2026-01-06 16:45:25
18140	340	196	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18141	196	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18142	340	97	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18143	97	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18144	340	99	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18145	99	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18146	340	100	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18147	340	102	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18148	340	79	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18149	79	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18150	340	85	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18151	85	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18152	340	86	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18153	86	340	66	2026-01-06 16:45:25	2026-01-06 16:45:25
18154	340	88	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18155	88	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18156	340	93	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18157	93	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18158	340	253	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18159	340	226	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18160	226	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18161	340	239	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18162	239	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18163	340	271	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18164	271	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18165	340	104	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18166	340	113	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18167	113	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18168	340	114	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18169	114	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18170	340	115	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18171	115	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18172	340	117	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18173	117	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18174	340	119	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18175	119	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18176	340	120	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18177	120	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18178	340	122	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18179	122	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18180	340	123	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18181	123	340	66	2026-01-06 16:45:25	2026-01-06 16:45:25
18182	340	145	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18183	145	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18184	340	143	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18185	143	340	66	2026-01-06 16:45:25	2026-01-06 16:45:25
18186	340	272	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18187	272	340	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18188	340	139	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18189	139	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18190	340	140	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18191	140	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18192	340	141	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18193	141	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18194	340	147	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18195	147	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18196	340	148	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18197	340	149	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18198	149	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18199	340	152	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18200	152	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18201	340	153	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18202	153	340	44	2026-01-06 16:45:25	2026-01-06 16:45:25
18203	340	173	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18204	173	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18205	340	240	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18206	240	340	55	2026-01-06 16:45:25	2026-01-06 16:45:25
18207	340	254	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18208	254	340	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18209	340	262	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18210	262	340	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18211	340	274	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18212	340	276	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18213	276	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18214	340	278	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18215	278	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18216	340	280	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18217	280	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18218	340	284	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18219	284	340	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18220	340	290	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18221	290	340	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18222	340	285	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18223	285	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18224	340	292	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18225	292	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18226	340	293	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18227	293	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18228	340	298	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18229	298	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18230	340	302	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18231	302	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18232	340	304	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18233	304	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18234	340	305	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18235	305	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18236	340	306	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18237	306	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18238	340	307	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18239	340	310	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18240	310	340	77	2026-01-06 16:45:25	2026-01-06 16:45:25
18241	340	315	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18242	315	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18243	340	313	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18244	313	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18245	340	320	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18246	320	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18247	340	325	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18248	325	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18249	340	324	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18250	324	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18251	340	326	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18252	326	340	66	2026-01-06 16:45:25	2026-01-06 16:45:25
18253	340	330	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18254	330	340	66	2026-01-06 16:45:25	2026-01-06 16:45:25
18255	340	333	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18256	333	340	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18257	340	337	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18258	337	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18259	340	341	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18260	341	340	88	2026-01-06 16:45:25	2026-01-06 16:45:25
18261	340	343	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18262	343	340	100	2026-01-06 16:45:25	2026-01-06 16:45:25
18263	174	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18264	344	193	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18265	193	344	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18266	344	223	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18267	223	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18268	344	263	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18269	263	344	77	2026-01-08 08:14:27	2026-01-08 08:14:27
18270	344	268	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18271	268	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18272	55	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18273	57	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18274	59	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18275	60	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18276	61	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18277	65	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18278	72	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18279	73	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18280	126	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18281	127	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18282	166	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18283	74	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18284	77	344	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18285	130	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18286	344	51	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18287	51	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18288	344	176	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18289	176	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18290	344	231	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18291	231	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18292	132	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18293	134	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18294	136	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18295	137	344	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18296	138	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18297	344	224	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18298	224	344	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18299	344	168	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18300	168	344	100	2026-01-08 08:14:27	2026-01-08 08:14:27
18301	344	189	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18302	189	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18303	344	222	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18304	222	344	77	2026-01-08 08:14:27	2026-01-08 08:14:27
18305	344	232	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18306	232	344	77	2026-01-08 08:14:27	2026-01-08 08:14:27
18307	344	243	77	2026-01-08 08:14:27	2026-01-08 08:14:27
18308	243	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18309	344	261	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18310	261	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18311	171	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18312	344	179	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18313	179	344	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18314	94	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18315	95	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18316	96	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18317	98	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18318	103	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18319	80	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18320	82	344	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18321	83	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18322	84	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18323	87	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18324	89	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18325	90	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18326	91	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18327	92	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18328	344	244	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18329	244	344	77	2026-01-08 08:14:27	2026-01-08 08:14:27
18330	344	260	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18331	260	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18332	344	233	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18333	233	344	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18334	344	266	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18335	266	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18336	105	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18337	108	344	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18338	111	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18339	112	344	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18340	116	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18341	118	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18342	121	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18343	144	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18344	146	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18345	267	344	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18346	150	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18347	344	219	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18348	219	344	44	2026-01-08 08:14:27	2026-01-08 08:14:27
18349	344	227	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18350	227	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18351	344	211	77	2026-01-08 08:14:27	2026-01-08 08:14:27
18352	211	344	77	2026-01-08 08:14:27	2026-01-08 08:14:27
18353	344	234	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18354	234	344	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18355	344	273	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18356	273	344	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18357	344	279	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18358	279	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18359	344	277	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18360	277	344	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18361	344	291	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18362	291	344	77	2026-01-08 08:14:27	2026-01-08 08:14:27
18363	344	246	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18364	246	344	77	2026-01-08 08:14:27	2026-01-08 08:14:27
18365	344	283	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18366	283	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18367	344	286	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18368	286	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18369	344	287	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18370	287	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18371	344	288	77	2026-01-08 08:14:27	2026-01-08 08:14:27
18372	288	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18373	344	289	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18374	289	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18375	344	294	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18376	294	344	77	2026-01-08 08:14:27	2026-01-08 08:14:27
18377	344	299	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18378	299	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18379	344	229	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18380	229	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18381	344	300	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18382	300	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18383	344	303	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18384	303	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18385	344	192	100	2026-01-08 08:14:27	2026-01-08 08:14:27
18386	192	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18387	344	311	77	2026-01-08 08:14:27	2026-01-08 08:14:27
18388	311	344	66	2026-01-08 08:14:27	2026-01-08 08:14:27
18389	344	312	77	2026-01-08 08:14:27	2026-01-08 08:14:27
18390	312	344	77	2026-01-08 08:14:27	2026-01-08 08:14:27
18391	344	316	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18392	316	344	77	2026-01-08 08:14:27	2026-01-08 08:14:27
18393	344	317	55	2026-01-08 08:14:27	2026-01-08 08:14:27
18394	317	344	88	2026-01-08 08:14:27	2026-01-08 08:14:27
18395	344	319	77	2026-01-08 08:14:27	2026-01-08 08:14:27
18396	319	344	77	2026-01-08 08:14:28	2026-01-08 08:14:28
18397	344	321	55	2026-01-08 08:14:28	2026-01-08 08:14:28
18398	321	344	88	2026-01-08 08:14:28	2026-01-08 08:14:28
18399	344	318	55	2026-01-08 08:14:28	2026-01-08 08:14:28
18400	318	344	88	2026-01-08 08:14:28	2026-01-08 08:14:28
18401	344	331	66	2026-01-08 08:14:28	2026-01-08 08:14:28
18402	331	344	100	2026-01-08 08:14:28	2026-01-08 08:14:28
18403	344	332	55	2026-01-08 08:14:28	2026-01-08 08:14:28
18404	332	344	100	2026-01-08 08:14:28	2026-01-08 08:14:28
18405	344	334	55	2026-01-08 08:14:28	2026-01-08 08:14:28
18406	334	344	100	2026-01-08 08:14:28	2026-01-08 08:14:28
18407	344	336	66	2026-01-08 08:14:28	2026-01-08 08:14:28
18408	336	344	77	2026-01-08 08:14:28	2026-01-08 08:14:28
18409	344	339	66	2026-01-08 08:14:28	2026-01-08 08:14:28
18410	339	344	88	2026-01-08 08:14:28	2026-01-08 08:14:28
18411	344	340	55	2026-01-08 08:14:28	2026-01-08 08:14:28
18412	340	344	100	2026-01-08 08:14:28	2026-01-08 08:14:28
\.


--
-- Data for Name: user_plans; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_plans (id, user_id, name, name_ar, type, price, currency, description, description_ar, status, payment_method, total_price, discount, promo_code, payment_id, created_at, updated_at, plan_id, expiry_date, duration, request_count) FROM stdin;
4	157	Premium	Premium	premium	100.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	100.00	50PERCENT	29	2025-05-26 11:02:18	2025-05-26 11:02:18	3	2025-08-26	quarterly	0
3	157	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	0	1	100.00	0.00	\N	28	2025-05-26 11:00:46	2025-05-26 11:02:18	2	2025-06-26	monthly	0
5	169	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	1	100.00	0.00	\N	30	2025-05-27 05:33:04	2025-05-27 05:33:04	2	2025-06-27	monthly	0
6	171	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	2	100.00	0.00	\N	31	2025-05-27 05:54:00	2025-05-27 05:54:00	2	2025-06-27	monthly	0
7	172	Free	مجاناً	basic	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	2	0.00	0.00	\N	\N	2025-05-27 06:50:44	2025-05-27 06:50:44	1	2025-06-27	monthly	0
8	173	Free	مجاناً	basic	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	1	0.00	0.00	\N	\N	2025-05-27 07:11:18	2025-05-27 07:11:18	1	2025-06-27	monthly	0
9	174	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-27 08:22:42	2025-05-27 08:22:42	1	2025-06-27	monthly	0
10	175	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	2	100.00	0.00	\N	32	2025-05-27 08:33:44	2025-05-27 08:33:44	2	2025-06-27	monthly	0
11	176	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	2	100.00	0.00	\N	33	2025-05-27 08:44:45	2025-05-27 08:44:45	2	2025-06-27	monthly	0
12	177	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-27 12:28:13	2025-05-27 12:28:13	1	2025-06-27	monthly	0
13	179	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	1	100.00	0.00	\N	34	2025-05-27 13:33:29	2025-05-27 13:33:29	2	2025-06-27	monthly	0
14	180	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-27 17:40:16	2025-05-27 17:40:16	1	2025-06-27	monthly	0
15	181	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-27 18:16:46	2025-05-27 18:16:46	1	2025-06-27	monthly	0
16	182	Basic	Basic	basic	60.00	AED	<p>Basic</p>	<p>Basic</p>	1	1	120.00	60.00	50off	35	2025-05-28 05:18:20	2025-05-28 05:18:20	4	2025-06-28	monthly	0
17	50	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-28 08:17:17	2025-05-28 08:17:17	1	2025-06-28	monthly	0
18	91	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-28 09:45:12	2025-05-28 09:45:12	1	2025-06-28	monthly	0
19	189	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-28 17:40:24	2025-05-28 17:40:24	1	2025-06-28	monthly	0
20	191	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-28 17:51:21	2025-05-28 17:51:21	1	2025-06-28	monthly	0
22	193	Standard	One month	basic	50.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	1	100.00	50.00	50off	36	2025-05-29 07:14:32	2025-05-29 07:14:32	2	2025-06-29	monthly	0
23	194	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	37	2025-05-29 08:09:25	2025-05-29 08:09:25	3	2025-08-29	quarterly	0
24	195	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	38	2025-05-29 08:23:09	2025-05-29 08:23:09	3	2025-08-29	quarterly	0
25	196	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	39	2025-05-29 08:37:03	2025-05-29 08:37:03	3	2025-08-29	quarterly	0
26	197	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	2	200.00	0.00	\N	40	2025-05-29 17:25:30	2025-05-29 17:25:30	3	2025-08-29	quarterly	0
27	198	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	2	200.00	0.00	\N	41	2025-05-29 17:29:40	2025-05-29 17:29:40	3	2025-08-29	quarterly	0
40	208	Premium	Premium	premium	100.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	100.00	50off	53	2025-05-30 14:19:15	2025-05-30 14:19:15	3	2025-08-30	quarterly	0
37	201	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	51	2025-05-30 11:37:03	2025-05-30 11:37:03	3	2025-08-30	quarterly	0
36	201	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	200.00	0.00	\N	50	2025-05-30 11:35:44	2025-05-30 11:37:03	3	2025-08-30	quarterly	0
35	201	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	200.00	0.00	\N	49	2025-05-30 11:35:24	2025-05-30 11:37:03	3	2025-08-30	quarterly	0
38	202	Premium	Premium	premium	100.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	100.00	50off	52	2025-05-30 12:30:24	2025-05-30 12:30:24	3	2025-08-30	quarterly	0
32	200	Premium	Premium	premium	100.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	100.00	50off	46	2025-05-30 11:25:07	2025-05-30 11:25:07	3	2025-08-30	quarterly	0
34	199	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	48	2025-05-30 11:28:35	2025-05-30 11:28:35	3	2025-08-30	quarterly	0
31	199	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	200.00	0.00	\N	45	2025-05-30 11:21:31	2025-05-30 11:28:35	3	2025-08-30	quarterly	0
30	199	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	200.00	0.00	\N	44	2025-05-30 11:19:58	2025-05-30 11:28:35	3	2025-08-30	quarterly	0
29	199	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	200.00	0.00	\N	43	2025-05-30 11:05:16	2025-05-30 11:28:35	3	2025-08-30	quarterly	0
28	199	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	2	200.00	0.00	\N	42	2025-05-30 10:52:26	2025-05-30 11:28:35	3	2025-08-30	quarterly	0
33	199	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	200.00	0.00	\N	47	2025-05-30 11:28:00	2025-05-30 11:28:35	3	2025-08-30	quarterly	0
41	204	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-31 06:13:43	2025-05-31 06:13:43	1	2025-07-01	monthly	0
39	204	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-05-30 13:53:16	2025-05-31 06:13:43	1	2025-06-30	monthly	0
42	51	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-31 06:24:49	2025-05-31 06:24:49	1	2025-07-01	monthly	0
43	209	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-05-31 09:08:53	2025-05-31 09:08:53	1	2025-07-01	monthly	0
45	211	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	2	200.00	0.00	\N	54	2025-05-31 16:43:19	2025-05-31 16:43:19	3	2025-08-31	quarterly	0
46	212	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-06-01 17:24:23	2025-06-01 17:24:23	1	2025-07-01	monthly	0
47	213	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	55	2025-06-03 03:07:35	2025-06-03 03:07:35	3	2025-09-03	quarterly	0
48	214	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	56	2025-06-03 03:22:21	2025-06-03 03:22:21	3	2025-09-03	quarterly	0
49	215	Premium	Premium	premium	100.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	100.00	50off	57	2025-06-03 05:22:38	2025-06-03 05:22:38	3	2025-09-03	quarterly	0
50	216	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	58	2025-06-03 08:34:59	2025-06-03 08:34:59	3	2025-09-03	quarterly	0
51	219	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	59	2025-06-04 06:49:44	2025-06-04 06:49:44	3	2025-09-04	quarterly	0
52	220	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	2	200.00	0.00	\N	60	2025-06-04 07:08:35	2025-06-04 07:08:35	3	2025-09-04	quarterly	0
53	221	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	61	2025-06-04 07:22:30	2025-06-04 07:22:30	3	2025-09-04	quarterly	0
54	222	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-06-04 07:39:20	2025-06-04 07:39:20	1	2025-07-04	monthly	0
55	223	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	62	2025-06-04 07:40:31	2025-06-04 07:40:31	3	2025-09-04	quarterly	0
56	224	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	2	200.00	0.00	\N	63	2025-06-04 07:57:51	2025-06-04 07:57:51	3	2025-09-04	quarterly	0
57	225	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	64	2025-06-04 08:23:25	2025-06-04 08:23:25	3	2025-09-04	quarterly	0
58	226	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-06-04 12:13:15	2025-06-04 12:13:15	1	2025-07-04	monthly	0
59	227	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-06-04 16:55:17	2025-06-04 16:55:17	1	2025-07-04	monthly	0
60	228	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	1	100.00	0.00	\N	65	2025-06-05 06:22:40	2025-06-05 06:22:40	2	2025-07-05	monthly	0
61	229	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	66	2025-06-05 06:26:13	2025-06-05 06:26:13	3	2025-09-05	quarterly	0
63	231	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	67	2025-06-05 07:46:34	2025-06-05 07:46:34	3	2025-09-05	quarterly	0
65	233	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	68	2025-06-05 08:55:23	2025-06-05 08:55:23	3	2025-09-05	quarterly	0
66	234	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	69	2025-06-05 09:04:38	2025-06-05 09:04:38	3	2025-09-05	quarterly	0
62	230	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-05 07:02:27	2025-06-11 08:10:43	1	2025-07-05	monthly	0
72	232	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	2	200.00	0.00	\N	70	2025-06-05 10:05:56	2025-06-05 10:05:56	3	2025-09-05	quarterly	0
71	232	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-05 09:55:31	2025-06-05 10:05:56	1	2025-07-05	monthly	0
70	232	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-05 09:55:24	2025-06-05 10:05:56	1	2025-07-05	monthly	0
69	232	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-05 09:41:15	2025-06-05 10:05:56	1	2025-07-05	monthly	0
68	232	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-05 09:40:48	2025-06-05 10:05:56	1	2025-07-05	monthly	0
67	232	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-05 09:40:43	2025-06-05 10:05:56	1	2025-07-05	monthly	0
64	232	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-05 08:07:00	2025-06-05 10:05:56	1	2025-07-05	monthly	0
92	230	Standard	One month	basic	180.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<p>Its one month plan</p>	1	2	180.00	0.00	\N	87	2025-06-11 08:10:43	2025-06-11 08:10:43	2	2025-09-11	quarterly	0
91	230	Basic	Basic	basic	120.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li><li>Limited cloud storage (5 GB)</li><li>Email support</li></ul>	<p>Bsic</p>	0	1	120.00	0.00	\N	86	2025-06-11 08:10:13	2025-06-11 08:10:43	4	2025-07-11	monthly	0
93	246	Premium	Premium	premium	175.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	175.00	50off	88	2025-06-11 09:56:59	2025-06-11 09:56:59	3	2025-09-11	quarterly	0
94	245	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	89	2025-06-11 10:08:51	2025-06-11 10:08:51	3	2025-09-11	quarterly	0
95	247	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-06-23 21:06:36	2025-06-23 21:06:36	1	2025-09-23	quarterly	0
77	235	Basic	Basic	basic	120.00	AED	<p>Basic</p>	<p>Basic</p>	1	2	120.00	0.00	\N	74	2025-06-05 11:03:24	2025-06-05 11:03:24	4	2025-07-05	monthly	0
76	235	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	0	2	100.00	0.00	\N	73	2025-06-05 11:02:19	2025-06-05 11:03:24	2	2025-07-05	monthly	0
75	235	Basic	Basic	basic	120.00	AED	<p>Basic</p>	<p>Basic</p>	0	2	120.00	0.00	\N	72	2025-06-05 10:58:41	2025-06-05 11:03:24	4	2025-07-05	monthly	0
74	235	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	0	2	100.00	0.00	\N	71	2025-06-05 10:58:23	2025-06-05 11:03:24	2	2025-07-05	monthly	0
73	235	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-05 10:30:40	2025-06-05 11:03:24	1	2025-07-05	monthly	0
80	237	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	77	2025-06-05 12:06:54	2025-06-05 12:06:54	3	2025-09-05	quarterly	0
79	237	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	200.00	0.00	\N	76	2025-06-05 12:06:08	2025-06-05 12:06:54	3	2025-09-05	quarterly	0
78	237	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	200.00	0.00	\N	75	2025-06-05 12:03:04	2025-06-05 12:06:54	3	2025-09-05	quarterly	0
81	238	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	78	2025-06-05 12:58:46	2025-06-05 12:58:46	3	2025-09-05	quarterly	0
82	239	Premium	Premium	premium	200.00	AED	<p>Premium</p>	<p>Premium</p>	1	1	200.00	0.00	\N	79	2025-06-06 03:38:52	2025-06-06 03:38:52	3	2025-09-06	quarterly	0
84	240	Basic	Basic	basic	120.00	AED	<p>Basic</p>	<p>Basic</p>	1	1	120.00	0.00	\N	80	2025-06-06 11:44:22	2025-06-06 11:44:22	4	2025-07-06	monthly	0
83	240	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-06 11:36:59	2025-06-06 11:44:22	1	2025-07-06	monthly	0
87	241	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-06-06 13:58:04	2025-06-06 13:58:04	1	2025-07-06	monthly	0
88	242	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	1	1	100.00	0.00	\N	83	2025-06-07 12:05:29	2025-06-07 12:05:29	2	2026-06-07	yearly	0
89	243	Premium	Premium	premium	175.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	175.00	50off	84	2025-06-09 09:15:38	2025-06-09 09:15:38	3	2025-09-09	quarterly	0
90	244	Premium	Premium	premium	175.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	175.00	50off	85	2025-06-10 09:21:00	2025-06-10 09:21:00	3	2025-09-10	quarterly	0
100	249	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	90	2025-06-28 13:07:44	2025-06-28 13:07:44	3	2025-09-28	quarterly	0
101	250	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-09 07:17:38	2025-07-09 07:17:38	1	2025-10-09	quarterly	0
102	251	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-09 10:44:49	2025-07-09 10:44:49	1	2025-10-09	quarterly	0
104	252	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-07-10 06:22:20	2025-07-11 10:22:15	1	2025-10-10	quarterly	0
105	253	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-10 14:48:47	2025-07-10 14:48:47	1	2025-10-10	quarterly	0
106	252	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	91	2025-07-11 10:22:15	2025-07-11 10:22:15	3	2025-10-11	quarterly	0
103	252	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-07-10 06:19:45	2025-07-11 10:22:15	1	2025-10-10	quarterly	0
107	254	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	92	2025-07-11 11:24:58	2025-07-11 11:24:58	3	2025-10-11	quarterly	0
108	255	Standard	One month	basic	180.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<p>Its one month plan</p>	1	1	180.00	0.00	\N	93	2025-07-11 11:45:05	2025-07-11 11:45:05	2	2025-10-11	quarterly	0
109	256	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-11 12:03:46	2025-07-11 12:03:46	1	2025-10-11	quarterly	0
110	257	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-11 13:38:08	2025-07-11 13:38:08	1	2025-10-11	quarterly	0
111	258	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	94	2025-07-11 14:47:04	2025-07-11 14:47:04	3	2025-10-11	quarterly	0
112	261	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-11 15:11:41	2025-07-11 15:11:41	1	2025-10-11	quarterly	0
114	262	Standard	One month	basic	180.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<p>Its one month plan</p>	1	1	180.00	0.00	\N	95	2025-07-12 05:31:41	2025-07-12 05:31:41	2	2025-10-12	quarterly	0
122	266	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-13 07:26:45	2025-07-13 07:26:45	1	2025-10-13	quarterly	0
117	263	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	96	2025-07-12 08:38:22	2025-07-12 08:38:22	3	2025-10-12	quarterly	0
116	263	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-07-12 08:30:06	2025-07-12 08:38:22	1	2025-10-12	quarterly	0
99	248	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-27 19:33:02	2025-09-23 12:51:34	1	2025-09-27	quarterly	0
86	192	Standard	One month	basic	100.00	AED	<p>Its one month plan</p>	<p>Its one month plan</p>	0	2	100.00	0.00	\N	82	2025-06-06 12:51:21	2025-11-15 11:20:02	2	2026-06-06	yearly	0
85	192	Basic	Basic	basic	120.00	AED	<p>Basic</p>	<p>Basic</p>	0	2	120.00	0.00	\N	81	2025-06-06 12:51:12	2025-11-15 11:20:02	4	2025-07-06	monthly	0
21	192	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-05-28 17:53:29	2025-11-15 11:20:02	1	2025-06-28	monthly	0
115	263	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-07-12 08:27:44	2025-07-12 08:38:22	1	2025-10-12	quarterly	0
119	265	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	1	3	0.00	0.00	\N	\N	2025-07-12 08:55:51	2025-07-12 08:55:51	1	2025-10-12	quarterly	0
121	264	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	99	2025-07-12 09:02:19	2025-07-12 09:02:19	3	2025-10-12	quarterly	0
120	264	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	0	1	350.00	0.00	\N	98	2025-07-12 09:00:36	2025-07-12 09:02:19	3	2025-10-12	quarterly	0
118	264	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	0	1	350.00	0.00	\N	97	2025-07-12 08:55:47	2025-07-12 09:02:19	3	2025-10-12	quarterly	0
126	268	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	103	2025-07-13 11:10:38	2025-07-13 11:10:38	3	2025-10-13	quarterly	0
125	267	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	4	350.00	0.00	\N	102	2025-07-13 08:07:13	2025-07-13 08:07:13	3	2025-10-13	quarterly	0
124	267	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	0	1	350.00	0.00	\N	101	2025-07-13 08:06:21	2025-07-13 08:07:13	3	2025-10-13	quarterly	0
123	267	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	0	1	350.00	0.00	\N	100	2025-07-13 07:57:37	2025-07-13 08:07:13	3	2025-10-13	quarterly	0
127	269	Standard	One month	basic	180.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<p>Its one month plan</p>	1	1	180.00	0.00	\N	104	2025-07-13 14:00:16	2025-07-13 14:00:16	2	2025-10-13	quarterly	0
129	270	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-07-13 15:25:06	2025-07-14 05:23:44	1	2025-10-13	quarterly	0
133	271	Standard	One month	basic	180.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<p>Its one month plan</p>	1	1	180.00	0.00	\N	107	2025-07-13 20:21:03	2025-07-13 20:21:03	2	2025-10-13	quarterly	0
134	272	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	4	350.00	0.00	\N	108	2025-07-13 21:03:28	2025-07-13 21:03:28	3	2025-10-13	quarterly	0
137	270	Premium	غالي	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	111	2025-07-14 05:23:44	2025-07-14 05:23:44	3	2025-10-14	quarterly	0
136	270	Premium	غالي	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	0	1	350.00	0.00	\N	110	2025-07-14 05:21:36	2025-07-14 05:23:44	3	2025-10-14	quarterly	0
135	270	غالي	غالي	premium	350.00	AED	<p>Premium</p>	<p>Premium</p>	0	1	350.00	0.00	\N	109	2025-07-14 05:20:39	2025-07-14 05:23:44	3	2025-10-14	quarterly	0
132	270	Premium	Premium	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	0	2	350.00	0.00	\N	106	2025-07-13 15:57:43	2025-07-14 05:23:44	3	2025-10-13	quarterly	0
131	270	Standard	One month	basic	180.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<p>Its one month plan</p>	0	1	180.00	0.00	\N	105	2025-07-13 15:34:47	2025-07-14 05:23:44	2	2025-10-13	quarterly	0
130	270	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-07-13 15:34:20	2025-07-14 05:23:44	1	2025-10-13	quarterly	0
128	270	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-07-13 15:22:47	2025-07-14 05:23:44	1	2025-10-13	quarterly	0
138	273	Premium	غالي	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	112	2025-07-16 07:19:40	2025-07-16 07:19:40	3	2025-10-16	quarterly	0
139	274	Premium	غالي	premium	350.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p>Premium</p>	1	1	350.00	0.00	\N	113	2025-07-16 07:34:53	2025-07-16 07:34:53	3	2025-10-16	quarterly	0
140	275	Premium	غالي	premium	340.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features</li></ul>	<p><strong>كل شيء في خطة Pro، بالإضافة إلى</strong></p><p>ملفات تعريف مستخدم غير محدودة</p><p>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</p><p>مدير حساب مخصص</p><p>وصول مبكر إلى الميزات الجديدة</p>	1	1	340.00	0.00	\N	114	2025-07-16 09:03:06	2025-07-16 09:03:06	3	2025-10-16	quarterly	0
159	291	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-09-04 18:28:01	2025-09-04 18:28:01	1	2025-10-04	monthly	0
141	276	غالي	غالي	premium	340.00	AED	<ul><li><strong>كل شيء في خطة Pro، بالإضافة إلى</strong></li><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة.</li></ul>	<ul><li><strong>كل شيء في خطة Pro، بالإضافة إلى</strong></li><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة.</li></ul>	1	1	340.00	0.00	\N	115	2025-07-16 15:12:51	2025-07-16 15:12:51	3	2026-07-16	yearly	0
142	277	Premium	غالي	premium	340.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features.</li></ul>	<ul><li><strong>كل شيء في خطة Pro، بالإضافة إلى</strong></li><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة.</li></ul>	1	1	340.00	0.00	\N	116	2025-07-17 07:58:34	2025-07-17 07:58:34	3	2026-07-17	yearly	0
152	284	مجاناً	مجاناً	free	0.00	AED	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-08-17 13:20:35	2025-08-17 13:20:35	1	2025-09-17	monthly	0
153	285	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-08-18 08:00:14	2025-08-18 08:00:14	1	2025-09-18	monthly	0
145	260	Premium	مميز	premium	500.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features..</li></ul>	<p>مميز</p>	1	1	500.00	0.00	\N	119	2025-07-17 09:26:11	2025-07-17 09:26:11	3	2026-07-17	yearly	0
144	260	Basic	الخطة الأساسية	basic	120.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li><li>Limited cloud storage (5 GB)</li><li>Email support.</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	0	1	120.00	0.00	\N	118	2025-07-17 09:26:05	2025-07-17 09:26:11	4	2025-10-17	quarterly	0
143	260	Standard	الخطة القياسية	basic	180.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	0	1	180.00	0.00	\N	117	2025-07-17 09:25:58	2025-07-17 09:26:11	2	2025-08-17	monthly	0
113	260	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-07-11 18:17:24	2025-07-17 09:26:11	1	2025-10-11	quarterly	0
146	278	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-07-19 08:28:07	2025-07-19 08:28:07	1	2025-08-19	monthly	0
147	279	Premium	مميز	premium	500.00	AED	<ul><li>Everything in Pro, plus:</li><li>Unlimited user profiles</li><li>500 GB to 1 TB cloud storage</li><li>Dedicated account manager</li><li>Early access to new features..</li></ul>	<p>مميز</p>	1	1	500.00	0.00	\N	120	2025-07-21 07:04:55	2025-07-21 07:04:55	3	2026-07-21	yearly	0
148	280	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-08-13 13:57:42	2025-08-13 13:57:42	1	2025-09-13	monthly	0
149	281	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-08-14 10:42:04	2025-08-14 10:42:04	1	2025-09-14	monthly	0
150	282	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-08-14 12:47:23	2025-08-14 12:47:23	1	2025-09-14	monthly	0
151	283	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-08-14 13:10:17	2025-08-14 13:10:17	1	2025-09-14	monthly	0
154	286	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-08-18 11:30:54	2025-08-18 11:30:54	1	2025-09-18	monthly	0
155	287	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-08-18 13:07:57	2025-08-18 13:07:57	1	2025-09-18	monthly	0
156	288	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-08-19 07:26:53	2025-08-19 07:26:53	1	2025-09-19	monthly	0
157	289	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-08-19 07:54:40	2025-08-19 07:54:40	1	2025-09-19	monthly	0
158	290	الخطة القياسية	الخطة القياسية	basic	180.00	AED	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	1	4	180.00	0.00	\N	121	2025-08-25 17:10:54	2025-08-25 17:10:54	2	2025-09-25	monthly	0
160	248	Standard	الخطة القياسية	basic	180.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	1	4	180.00	0.00	\N	122	2025-09-23 12:51:34	2025-09-23 12:51:34	2	2025-10-23	monthly	0
98	248	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-27 19:28:11	2025-09-23 12:51:34	1	2025-09-27	quarterly	0
97	248	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-27 19:22:12	2025-09-23 12:51:34	1	2025-09-27	quarterly	0
96	248	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-06-27 14:51:35	2025-09-23 12:51:34	1	2025-09-27	quarterly	0
162	292	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-09-23 17:43:29	2025-09-23 17:43:29	1	2025-10-23	monthly	0
161	292	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	0	3	0.00	0.00	\N	\N	2025-09-23 12:57:02	2025-09-23 17:43:29	1	2025-10-23	monthly	0
163	293	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-09-23 18:17:25	2025-09-23 18:17:25	1	2025-10-23	monthly	0
164	294	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-09-24 07:49:08	2025-09-24 07:49:08	1	2025-10-24	monthly	0
165	295	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-09-24 11:14:31	2025-09-24 11:14:31	1	2025-10-24	monthly	0
166	296	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-09-24 17:30:21	2025-09-24 17:30:21	1	2025-10-24	monthly	0
167	297	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-09-25 07:51:10	2025-09-25 07:51:10	1	2025-10-25	monthly	0
168	298	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-09-25 07:51:25	2025-09-25 07:51:25	1	2025-10-25	monthly	0
169	299	Standard	الخطة القياسية	basic	180.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	1	1	180.00	0.00	\N	123	2025-11-10 12:40:50	2025-11-10 12:40:50	2	2025-12-10	monthly	0
173	300	Standard	الخطة القياسية	basic	300.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	1	2	300.00	0.00	\N	126	2025-11-11 12:09:02	2025-11-11 12:09:02	2	2026-02-11	quarterly	4
170	300	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	0	3	0.00	0.00	\N	\N	2025-11-11 05:55:00	2025-11-11 12:09:02	1	2025-12-11	monthly	0
175	301	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-11-14 06:40:32	2025-11-14 06:40:32	1	2026-02-14	quarterly	4
174	301	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	0	3	0.00	0.00	\N	\N	2025-11-14 06:40:25	2025-11-14 06:40:32	1	2026-02-14	quarterly	4
177	302	Standard	الخطة القياسية	basic	300.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	1	2	300.00	0.00	\N	127	2025-11-14 08:20:35	2025-11-14 08:20:35	2	2026-02-14	quarterly	4
176	302	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	0	3	0.00	0.00	\N	\N	2025-11-14 07:46:38	2025-11-14 08:20:35	1	2026-02-14	quarterly	4
180	192	Standard	الخطة القياسية	basic	300.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	1	1	300.00	0.00	\N	129	2025-11-15 11:20:02	2025-11-15 11:20:02	2	2026-02-15	quarterly	4
181	304	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-11-17 05:13:08	2025-11-17 05:13:08	1	2026-02-17	quarterly	4
182	210	Standard	الخطة القياسية	basic	300.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	1	2	300.00	0.00	\N	130	2025-11-17 09:53:16	2025-11-17 09:53:16	2	2026-02-17	quarterly	4
44	210	Free	مجاناً	free	0.00	AED	<p>Free</p>	<p>مجاناً</p>	0	3	0.00	0.00	\N	\N	2025-05-31 15:03:09	2025-11-17 09:53:16	1	2025-07-01	monthly	0
183	305	Standard	الخطة القياسية	basic	300.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	1	2	300.00	0.00	\N	134	2025-11-17 14:07:08	2025-11-17 14:07:08	2	2026-02-17	quarterly	4
184	306	Standard	الخطة القياسية	basic	300.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	1	5	300.00	0.00	\N	135	2025-11-17 14:26:42	2025-11-17 14:26:42	2	2026-02-17	quarterly	4
185	303	Standard	الخطة القياسية	basic	300.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	1	1	300.00	0.00	\N	136	2025-11-17 15:17:21	2025-11-17 15:17:21	2	2026-02-17	quarterly	4
179	303	Standard	الخطة القياسية	basic	300.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	0	1	300.00	0.00	\N	128	2025-11-15 09:03:09	2025-11-17 15:17:21	2	2026-02-15	quarterly	4
178	303	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>1 user profile</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	0	3	0.00	0.00	\N	\N	2025-11-15 08:44:32	2025-11-17 15:17:21	1	2026-02-15	quarterly	4
187	307	Standard	الخطة القياسية	basic	300.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	1	1	300.00	0.00	\N	146	2025-11-18 06:45:16	2025-11-18 06:45:16	2	2026-02-18	quarterly	4
186	307	Standard	الخطة القياسية	basic	300.00	AED	<ul><li>Everything in Basic, plus:</li><li>Up to 3 user profiles</li><li>50 GB cloud storage</li><li>Priority customer support</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>سعة تخزين سحابية من 500 جيجابايت إلى 1 تيرابايت</li><li>مدير حساب مخصص</li><li>وصول مبكر إلى الميزات الجديدة</li></ul>	0	4	300.00	0.00	\N	142	2025-11-18 06:27:39	2025-11-18 06:45:16	2	2026-02-18	quarterly	4
188	310	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-11-18 09:22:34	2025-11-18 09:22:34	1	2026-02-18	quarterly	4
189	311	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-11-18 09:32:50	2025-11-18 09:32:50	1	2026-02-18	quarterly	4
190	309	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-11-18 10:14:29	2025-11-18 10:14:29	1	2026-02-18	quarterly	4
191	312	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-11-19 06:31:46	2025-11-19 06:31:46	1	2026-02-19	quarterly	4
192	313	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-11-24 11:13:53	2025-11-24 11:13:53	1	2026-02-24	quarterly	4
193	314	مجاناً	مجاناً	free	0.00	AED	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-11-27 18:19:35	2025-11-27 18:19:35	1	2026-02-27	quarterly	4
194	315	مجاناً	مجاناً	free	0.00	AED	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-11-27 18:25:35	2025-11-27 18:25:35	1	2026-02-27	quarterly	4
195	316	مجاناً	مجاناً	free	0.00	AED	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-11 15:47:26	2025-12-11 15:47:26	1	2026-03-11	quarterly	4
196	317	مجاناً	مجاناً	free	0.00	AED	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-11 15:58:44	2025-12-11 15:58:44	1	2026-03-11	quarterly	4
197	319	مجاناً	مجاناً	free	0.00	AED	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-15 17:14:02	2025-12-15 17:14:02	1	2026-03-15	quarterly	4
198	320	مجاناً	مجاناً	free	0.00	AED	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-15 17:20:58	2025-12-15 17:20:58	1	2026-03-15	quarterly	4
199	318	مجاناً	مجاناً	free	0.00	AED	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-15 17:34:40	2025-12-15 17:34:40	1	2026-03-15	quarterly	4
200	321	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-15 17:51:43	2025-12-15 17:51:43	1	2026-03-15	quarterly	4
201	322	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-22 15:58:14	2025-12-22 15:58:14	1	2026-03-22	quarterly	4
202	323	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-22 16:05:42	2025-12-22 16:05:42	1	2026-03-22	quarterly	4
203	324	مجاناً	مجاناً	free	0.00	AED	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-22 16:13:49	2025-12-22 16:13:49	1	2026-03-22	quarterly	4
204	325	مجاناً	مجاناً	free	0.00	AED	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-22 17:11:53	2025-12-22 17:11:53	1	2026-03-22	quarterly	4
205	326	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-23 13:38:54	2025-12-23 13:38:54	1	2026-03-23	quarterly	4
206	327	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-26 11:47:30	2025-12-26 11:47:30	1	2026-03-26	quarterly	4
207	328	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-26 12:21:48	2025-12-26 12:21:48	1	2026-03-26	quarterly	4
208	329	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-29 10:30:23	2025-12-29 10:30:23	1	2026-03-29	quarterly	4
209	330	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-29 12:08:52	2025-12-29 12:08:52	1	2026-03-29	quarterly	4
210	331	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-29 12:17:01	2025-12-29 12:17:01	1	2026-03-29	quarterly	4
211	332	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-29 16:57:57	2025-12-29 16:57:57	1	2026-03-29	quarterly	4
212	333	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-30 07:31:16	2025-12-30 07:31:16	1	2026-03-30	quarterly	4
213	334	مجاناً	مجاناً	free	0.00	AED	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-30 08:57:40	2025-12-30 08:57:40	1	2026-03-30	quarterly	4
214	335	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-30 10:15:06	2025-12-30 10:15:06	1	2026-03-30	quarterly	4
215	336	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-31 06:45:25	2025-12-31 06:45:25	1	2026-03-31	quarterly	4
216	337	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-31 07:07:33	2025-12-31 07:07:33	1	2026-03-31	quarterly	4
217	338	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2025-12-31 09:44:03	2025-12-31 09:44:03	1	2026-03-31	quarterly	4
218	339	مجاناً	مجاناً	free	0.00	AED	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2026-01-01 06:27:30	2026-01-01 06:27:30	1	2026-04-01	quarterly	4
219	340	مجاناً	مجاناً	free	0.00	AED	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2026-01-01 06:33:15	2026-01-01 06:33:15	1	2026-04-01	quarterly	4
220	341	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2026-01-06 15:31:33	2026-01-06 15:31:33	1	2026-04-06	quarterly	4
221	343	مجاناً	مجاناً	free	0.00	AED	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2026-01-06 16:22:59	2026-01-06 16:22:59	1	2026-04-06	quarterly	4
222	344	Free	مجاناً	free	0.00	AED	<ul><li>Access to standard content or features</li><li>3 months validity</li><li>4 Max request sent&nbsp;</li></ul>	<ul><li>ملفات تعريف مستخدم غير محدودة</li><li>مدير حساب مخصص</li></ul>	1	3	0.00	0.00	\N	\N	2026-01-08 08:11:18	2026-01-08 08:11:18	1	2026-04-08	quarterly	4
\.


--
-- Data for Name: user_preferences; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_preferences (id, user_id, sect_id, religion_practice, marital_status, education_id, profession_id, dress_code_id, smoking, created_at, updated_at, weight_all, height_all, from_height_cm, to_height_cm, from_height_ft, to_height_ft, from_weight_kg, from_weight_lbs, to_weight_kg, to_weight_lbs, prefrance_setup_completed, city_emirate_id) FROM stdin;
2	54	10	50	5	8	8	3	1	2025-05-23 10:22:02	2025-05-23 10:22:02	1	0	155	195	5.06	6.15	51	125	83	160	0	0
1	35	\N	50	\N	\N	\N	\N	1	2025-03-11 17:18:40	2025-03-11 17:18:40	1	1	\N	\N	\N	\N	\N	\N	\N	\N	0	0
105	165	3	50	1	1	1	1	0	2025-05-27 04:57:29	2025-05-27 04:57:29	\N	\N	175	\N	70	154	2	1	3	2	0	0
111	174	1	\N	\N	1	1	\N	\N	2025-05-27 08:26:33	2025-05-27 08:26:33	0	0	4.988912582397461	6.43196964263916	152.06	196.05	70.0	154.32	100.0	220.46	0	0
116	181	1	50	\N	1	1	\N	1	2025-05-27 18:20:05	2025-05-27 18:23:44	0	0	4.0	6.6872968673706055	121.92	203.83	70.0	154.32	100.0	220.46	0	0
121	193	2	50	\N	\N	3	\N	\N	2025-05-29 07:34:14	2025-05-29 07:35:04	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
125	197	\N	50	\N	\N	\N	\N	\N	2025-05-29 17:27:21	2025-05-29 17:27:21	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
128	204	\N	50	\N	\N	\N	\N	\N	2025-05-31 06:16:32	2025-05-31 06:16:32	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
133	212	\N	50	\N	\N	\N	\N	\N	2025-06-01 17:27:33	2025-06-01 17:27:33	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
138	223	2	50	\N	1	\N	\N	0	2025-06-04 07:44:17	2025-06-04 07:45:33	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
143	230	\N	50	\N	\N	\N	\N	\N	2025-06-05 07:04:13	2025-06-05 07:04:13	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
148	235	\N	50	\N	\N	\N	\N	\N	2025-06-05 10:31:01	2025-06-05 10:31:01	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
153	241	\N	0	\N	\N	\N	\N	1	2025-06-06 14:00:39	2025-06-06 14:32:11	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
158	245	\N	50	\N	\N	\N	\N	0	2025-06-11 10:12:55	2025-06-11 10:12:55	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
159	247	\N	48	\N	\N	\N	\N	1	2025-06-23 21:08:34	2025-06-27 15:31:56	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
162	250	\N	50	\N	\N	\N	\N	0	2025-07-09 07:19:00	2025-07-09 07:19:00	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
167	255	\N	50	\N	\N	\N	\N	\N	2025-07-11 12:55:50	2025-07-11 12:55:50	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
172	263	\N	62	\N	\N	\N	\N	0	2025-07-12 08:37:37	2025-07-12 08:37:54	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
177	268	\N	50	\N	\N	\N	\N	0	2025-07-13 11:11:44	2025-07-13 11:11:49	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
3	55	1	10	7	9	3	5	1	2025-05-23 10:22:03	2025-05-23 10:22:03	0	1	156	193	4.99	6.35	56	128	79	191	0	0
4	56	3	10	9	2	10	4	1	2025-05-23 10:22:03	2025-05-23 10:22:03	1	0	154	191	4.91	5.58	57	125	100	171	0	0
5	57	9	10	1	2	1	2	1	2025-05-23 10:22:03	2025-05-23 10:22:03	0	1	152	187	5.19	5.66	55	123	81	203	0	0
6	58	5	10	8	2	3	1	0	2025-05-23 10:22:04	2025-05-23 10:22:04	0	1	151	184	5.03	6.3	51	127	77	152	0	0
7	59	5	10	8	10	6	3	0	2025-05-23 10:22:04	2025-05-23 10:22:04	0	0	150	174	5.11	5.8	60	110	71	206	0	0
8	60	3	10	9	8	4	5	0	2025-05-23 10:22:04	2025-05-23 10:22:04	0	0	159	198	5.14	6.02	57	114	90	186	0	0
9	61	1	10	5	3	10	5	0	2025-05-23 10:22:05	2025-05-23 10:22:05	1	0	160	170	5.04	5.99	51	123	90	189	0	0
10	62	9	10	5	7	9	2	1	2025-05-23 10:22:05	2025-05-23 10:22:05	0	0	155	186	4.94	5.71	60	127	87	172	0	0
11	63	1	10	9	5	1	2	0	2025-05-23 10:22:05	2025-05-23 10:22:05	1	0	159	172	5.13	6.38	59	118	76	190	0	0
12	64	2	10	5	4	3	4	1	2025-05-23 10:22:06	2025-05-23 10:22:06	0	0	159	191	5.19	5.76	59	115	83	184	0	0
13	65	9	10	4	6	6	5	0	2025-05-23 10:22:06	2025-05-23 10:22:06	0	0	158	190	4.96	6.23	54	120	73	186	0	0
14	66	10	10	5	5	7	3	0	2025-05-23 10:22:06	2025-05-23 10:22:06	0	0	154	194	5.07	5.51	56	126	72	188	0	0
15	67	9	10	9	2	10	3	1	2025-05-23 10:22:07	2025-05-23 10:22:07	0	1	155	176	4.91	5.93	60	124	82	163	0	0
16	68	9	10	5	5	2	3	0	2025-05-23 10:22:07	2025-05-23 10:22:07	1	1	159	195	5.16	6.11	58	114	84	187	0	0
17	69	1	10	9	5	8	3	0	2025-05-23 10:22:07	2025-05-23 10:22:07	1	1	152	184	4.97	6.2	57	114	86	155	0	0
18	70	7	10	4	5	9	4	0	2025-05-23 10:22:07	2025-05-23 10:22:07	0	1	160	179	5	5.63	60	122	70	187	0	0
19	71	6	10	3	8	6	5	1	2025-05-23 10:22:08	2025-05-23 10:22:08	1	0	151	181	5.11	6.47	56	122	83	151	0	0
20	72	6	10	4	6	6	3	1	2025-05-23 10:22:08	2025-05-23 10:22:08	1	0	152	184	4.98	6.29	50	112	94	154	0	0
21	73	2	10	1	8	3	2	1	2025-05-23 10:22:08	2025-05-23 10:22:08	1	1	152	189	5.1	5.79	60	110	96	195	0	0
72	124	2	60	1	9	8	3	1	2025-05-23 10:22:23	2025-05-23 10:22:23	1	0	159	170	5.12	5.63	52	129	79	163	0	0
73	125	10	60	5	10	5	1	1	2025-05-23 10:22:24	2025-05-23 10:22:24	0	1	153	178	5.06	5.59	53	113	82	153	0	0
74	126	10	60	6	2	4	3	0	2025-05-23 10:22:24	2025-05-23 10:22:24	1	0	156	171	5	5.99	51	111	91	198	0	0
75	127	7	60	6	9	6	4	1	2025-05-23 10:22:24	2025-05-23 10:22:24	1	1	157	189	5.04	6.43	53	121	73	210	0	0
76	128	3	60	7	2	3	3	0	2025-05-23 10:22:24	2025-05-23 10:22:24	0	1	155	174	4.92	6.43	59	119	75	208	0	0
106	166	3	50	1	1	1	1	0	2025-05-27 05:03:18	2025-05-27 05:03:18	\N	\N	175	\N	70	154	2	1	3	2	0	0
22	74	2	30	3	10	5	2	1	2025-05-23 10:22:09	2025-05-23 10:22:09	1	1	151	186	4.99	6.38	57	122	95	215	0	0
23	75	4	30	10	4	5	4	0	2025-05-23 10:22:09	2025-05-23 10:22:09	1	0	152	178	4.99	5.63	59	128	100	198	0	0
24	76	4	30	10	10	8	4	0	2025-05-23 10:22:09	2025-05-23 10:22:09	1	0	152	196	4.98	6.02	60	128	99	177	0	0
25	77	10	30	9	10	9	4	0	2025-05-23 10:22:09	2025-05-23 10:22:09	1	1	155	184	5.13	6.43	51	115	71	161	0	0
26	78	2	30	5	6	7	2	0	2025-05-23 10:22:10	2025-05-23 10:22:10	0	0	151	172	5.09	6.19	50	110	98	164	0	0
77	129	7	60	5	2	8	3	0	2025-05-23 10:22:25	2025-05-23 10:22:25	0	0	157	178	5.14	5.62	53	114	98	175	0	0
78	130	3	60	2	1	10	3	0	2025-05-23 10:22:25	2025-05-23 10:22:25	0	1	155	181	4.96	5.94	55	111	71	180	0	0
126	200	2	66	\N	1	\N	\N	\N	2025-05-30 11:28:50	2025-05-30 11:29:50	0	0	4.6931843757629395	5.7272467613220215	143.05	174.57	\N	\N	\N	\N	0	0
129	51	\N	50	\N	\N	\N	\N	\N	2025-05-31 06:25:18	2025-05-31 06:25:18	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
134	214	1	50	\N	1	1	\N	1	2025-06-03 03:26:41	2025-06-04 04:18:01	0	0	152.4	182.88	5.0	6.0	60.0	132.28	100.05787658691406	220.59	0	0
112	176	2	\N	2	1	1	3	\N	2025-05-27 08:45:50	2025-05-27 17:37:13	0	0	140.0	160.0	4.59	5.25	70.0	154.32	100.0	220.46	0	0
173	265	\N	50	\N	\N	\N	\N	0	2025-07-12 08:56:43	2025-07-12 09:58:27	\N	\N	152.4	234.36	5.0	7.688909530639648	30.0	66.14	136.99871826171875	302.03	0	0
144	231	\N	50	\N	\N	\N	\N	\N	2025-06-05 07:55:47	2025-06-05 07:55:47	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
117	50	2	50	\N	1	1	\N	1	2025-05-28 08:20:55	2025-05-28 14:26:46	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
122	194	8	22	\N	1	\N	\N	\N	2025-05-29 08:26:09	2025-05-29 08:26:32	0	0	4.0	5.241692543029785	121.92	159.77	65.0	143.3	77.43901824951172	170.72	0	0
163	251	\N	50	\N	\N	\N	\N	\N	2025-07-09 10:45:09	2025-07-09 10:45:09	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
79	131	3	60	5	1	3	4	1	2025-05-23 10:22:25	2025-05-23 10:22:25	1	0	150	199	5.14	5.9	51	111	100	194	0	0
80	132	2	60	9	7	10	4	1	2025-05-23 10:22:26	2025-05-23 10:22:26	1	1	155	195	5.03	5.62	56	115	94	170	0	0
81	133	2	60	1	9	2	5	0	2025-05-23 10:22:26	2025-05-23 10:22:26	0	0	160	192	5.02	5.94	58	118	100	177	0	0
82	134	8	60	4	7	9	3	0	2025-05-23 10:22:26	2025-05-23 10:22:26	1	0	160	188	4.92	5.93	55	125	99	150	0	0
83	135	8	60	9	5	4	5	1	2025-05-23 10:22:26	2025-05-23 10:22:26	1	1	150	179	4.99	5.81	59	128	80	159	0	0
84	136	5	60	6	2	2	1	1	2025-05-23 10:22:27	2025-05-23 10:22:27	0	1	151	185	5.02	6.04	50	121	89	188	0	0
85	137	9	60	3	1	10	2	0	2025-05-23 10:22:27	2025-05-23 10:22:27	1	1	157	171	5.05	6.29	51	120	95	189	0	0
86	138	8	60	8	1	4	3	0	2025-05-23 10:22:27	2025-05-23 10:22:27	0	1	151	190	5.14	6.25	51	125	73	202	0	0
90	142	3	60	1	3	9	4	1	2025-05-23 10:22:29	2025-05-23 10:22:29	0	1	160	192	5	6.24	51	122	100	169	0	0
149	237	\N	64	\N	\N	\N	\N	0	2025-06-05 12:05:15	2025-06-05 12:30:16	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
139	224	1	50	\N	1	1	\N	0	2025-06-04 08:00:12	2025-07-10 21:12:00	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
168	258	\N	50	\N	\N	\N	\N	\N	2025-07-11 14:47:30	2025-07-11 14:47:30	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
154	242	\N	50	\N	\N	\N	\N	0	2025-06-07 12:10:39	2025-06-07 12:37:20	\N	\N	\N	\N	\N	\N	60.0	132.28	90.0	198.42	0	0
160	248	\N	50	\N	\N	\N	\N	1	2025-06-27 14:54:02	2025-06-27 19:22:40	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
178	269	\N	50	\N	\N	\N	\N	0	2025-07-13 14:01:14	2025-07-13 14:01:19	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
108	168	1	\N	\N	\N	\N	\N	\N	2025-05-27 05:16:34	2025-05-27 05:18:14	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
113	177	1	\N	\N	3	1	1	1	2025-05-27 12:51:45	2025-05-27 12:52:53	0	0	5.788780212402344	6.629944801330566	176.44	202.08	75.57901763916016	166.62	108.1091537475586	238.34	0	0
118	189	1	50	\N	\N	1	\N	1	2025-05-28 17:42:58	2025-05-28 17:43:10	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
123	195	2	50	\N	1	2	\N	\N	2025-05-29 08:29:33	2025-05-29 08:30:08	0	0	5.865484237670898	6.61549186706543	178.78	201.64	81.08710479736328	178.77	107.50120544433594	237	0	0
127	202	2	67	\N	1	\N	\N	\N	2025-05-30 12:33:43	2025-05-30 12:33:54	0	0	5.123824119567871	5.399822235107422	156.17	164.59	70.0	154.32	100.0	220.46	0	0
130	209	\N	50	\N	\N	\N	\N	\N	2025-05-31 09:09:46	2025-05-31 09:09:46	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
135	215	7	68	\N	1	1	\N	0	2025-06-03 05:39:44	2025-06-04 09:13:31	0	0	121.92	274.32	4.0	9.0	60.0	132.28	132.74972534179688	292.66	0	0
140	222	\N	50	\N	\N	\N	\N	0	2025-06-04 10:17:46	2025-06-04 10:18:08	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
145	232	\N	50	\N	\N	\N	\N	\N	2025-06-05 08:09:25	2025-06-05 08:09:25	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
150	238	\N	51	\N	\N	\N	\N	1	2025-06-05 14:30:37	2025-06-06 13:20:10	0	\N	\N	\N	\N	\N	60.0	132.28	90.0	198.42	0	0
155	243	\N	29	\N	\N	\N	\N	0	2025-06-09 09:23:26	2025-06-09 09:23:26	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
161	249	\N	50	\N	\N	\N	\N	\N	2025-06-28 13:19:21	2025-06-28 13:19:34	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
164	252	\N	50	\N	\N	\N	\N	\N	2025-07-10 06:23:57	2025-07-10 06:23:57	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
169	261	\N	50	\N	\N	\N	\N	\N	2025-07-11 15:13:13	2025-07-11 18:18:28	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
174	264	\N	50	\N	\N	\N	\N	0	2025-07-12 09:04:50	2025-07-12 09:05:20	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
179	270	\N	50	\N	\N	\N	\N	0	2025-07-13 16:14:55	2025-07-13 16:17:57	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
109	171	1	\N	\N	1	1	\N	\N	2025-05-27 05:58:03	2025-05-27 06:42:38	0	0	4.0	7.0	121.92	213.36	70.0	154.32	100.0	220.46	0	0
131	210	\N	0	\N	\N	\N	\N	\N	2025-05-31 15:04:08	2025-06-06 14:13:34	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
114	179	2	50	2	1	3	2	\N	2025-05-27 13:39:28	2025-05-28 10:05:22	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
119	191	\N	50	\N	\N	\N	\N	\N	2025-05-28 17:52:07	2025-05-28 17:52:07	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
124	196	\N	50	\N	1	3	\N	\N	2025-05-29 08:40:59	2025-05-29 08:41:14	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
42	94	3	50	5	2	5	4	1	2025-05-23 10:22:14	2025-05-23 10:22:14	1	1	159	174	4.95	5.65	53	112	72	161	0	0
43	95	2	50	1	5	8	4	1	2025-05-23 10:22:15	2025-05-23 10:22:15	1	0	158	170	5.07	6.3	53	123	84	191	0	0
44	96	9	50	2	4	9	3	0	2025-05-23 10:22:15	2025-05-23 10:22:15	0	1	160	182	4.99	6.12	58	118	93	196	0	0
45	97	9	50	1	6	7	1	0	2025-05-23 10:22:15	2025-05-23 10:22:15	1	0	150	188	5.05	6.04	52	112	91	192	0	0
46	98	10	50	1	1	2	5	0	2025-05-23 10:22:16	2025-05-23 10:22:16	0	1	151	175	5.18	5.88	58	119	73	152	0	0
47	99	3	50	3	8	3	3	1	2025-05-23 10:22:16	2025-05-23 10:22:16	1	1	151	197	4.95	6.1	60	124	84	174	0	0
48	100	1	50	8	5	5	2	1	2025-05-23 10:22:16	2025-05-23 10:22:16	0	0	157	194	5.19	6.45	52	126	78	178	0	0
49	101	5	50	8	6	3	5	1	2025-05-23 10:22:16	2025-05-23 10:22:16	0	0	155	180	5.18	5.78	57	123	96	189	0	0
50	102	7	50	3	3	7	3	1	2025-05-23 10:22:17	2025-05-23 10:22:17	0	0	157	194	5.18	5.63	57	113	78	189	0	0
51	103	1	50	10	4	3	2	1	2025-05-23 10:22:17	2025-05-23 10:22:17	0	1	159	171	5.15	5.55	57	125	88	209	0	0
27	79	6	30	1	1	6	3	1	2025-05-23 10:22:10	2025-05-23 10:22:10	0	1	160	173	4.94	5.84	51	120	92	208	0	0
28	80	6	30	5	10	7	5	1	2025-05-23 10:22:10	2025-05-23 10:22:10	1	0	155	187	4.99	6.21	50	112	81	177	0	0
29	81	8	30	3	10	4	4	1	2025-05-23 10:22:11	2025-05-23 10:22:11	0	0	160	192	5.05	6.31	56	121	82	215	0	0
30	82	5	30	8	6	9	1	0	2025-05-23 10:22:11	2025-05-23 10:22:11	1	1	152	180	4.93	5.99	50	126	73	154	0	0
31	83	3	30	1	7	2	4	0	2025-05-23 10:22:11	2025-05-23 10:22:11	1	0	159	194	5	6.45	52	122	85	187	0	0
32	84	7	30	3	5	5	1	0	2025-05-23 10:22:11	2025-05-23 10:22:11	0	1	159	173	4.96	5.72	51	110	73	183	0	0
33	85	10	30	10	3	3	1	0	2025-05-23 10:22:12	2025-05-23 10:22:12	0	0	153	190	4.99	5.5	59	116	94	201	0	0
34	86	1	30	2	5	3	4	0	2025-05-23 10:22:12	2025-05-23 10:22:12	1	1	152	172	4.98	6.15	57	115	89	158	0	0
35	87	5	30	2	5	10	3	1	2025-05-23 10:22:12	2025-05-23 10:22:12	0	1	159	175	5.16	5.81	56	125	87	158	0	0
36	88	10	30	1	5	3	3	0	2025-05-23 10:22:13	2025-05-23 10:22:13	0	0	151	186	5.09	6.13	52	123	75	184	0	0
37	89	7	30	9	8	7	5	1	2025-05-23 10:22:13	2025-05-23 10:22:13	0	1	151	178	4.92	6.49	54	129	77	201	0	0
38	90	8	30	3	8	10	5	0	2025-05-23 10:22:13	2025-05-23 10:22:13	0	1	154	179	5	5.52	52	128	86	185	0	0
39	91	7	30	2	7	1	4	0	2025-05-23 10:22:14	2025-05-23 10:22:14	0	1	154	194	4.99	5.61	53	110	80	162	0	0
40	92	1	30	3	8	3	4	1	2025-05-23 10:22:14	2025-05-23 10:22:14	1	0	154	182	5.16	6.42	55	125	96	193	0	0
41	93	8	30	7	1	8	4	0	2025-05-23 10:22:14	2025-05-23 10:22:14	0	0	156	194	5.18	5.84	58	120	88	171	0	0
156	244	\N	50	\N	\N	\N	\N	\N	2025-06-10 09:26:16	2025-06-10 09:26:16	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
165	253	\N	94	\N	\N	\N	\N	1	2025-07-10 15:13:35	2025-07-10 19:48:21	\N	\N	192.06	258.69	6.301264762878418	8.487353324890137	105.9485092163086	233.58	140.23036193847656	309.15	0	0
170	260	\N	98	\N	\N	\N	\N	1	2025-07-12 05:20:48	2025-07-12 08:54:22	0	0	121.92	274.32	4.0	9.0	30.0	66.14	180.0	396.83	0	0
136	216	7	32	\N	6	4	\N	0	2025-06-03 08:40:56	2025-06-03 16:34:24	0	0	121.92	274.32	4.0	9.0	30.0	66.14	180.0	396.83	0	0
141	226	\N	50	\N	\N	\N	\N	\N	2025-06-04 12:14:57	2025-06-04 12:14:57	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
146	233	\N	50	\N	\N	\N	\N	1	2025-06-05 09:00:49	2025-06-05 09:01:43	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
151	239	\N	0	\N	\N	\N	\N	1	2025-06-06 03:58:43	2025-06-06 04:01:26	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
175	266	\N	50	\N	\N	\N	\N	\N	2025-07-13 07:27:43	2025-07-13 07:27:47	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
180	271	\N	55	\N	\N	\N	\N	1	2025-07-13 20:30:10	2025-07-13 20:30:25	0	0	147.6	201.42	4.842367172241211	6.608401298522949	30.0	66.14	103.23847961425781	227.6	0	0
52	104	7	50	7	1	10	3	1	2025-05-23 10:22:17	2025-05-23 10:22:17	0	0	151	182	5	6.03	58	125	76	208	0	0
53	105	5	50	4	6	3	5	0	2025-05-23 10:22:18	2025-05-23 10:22:18	0	0	160	192	5.16	6.25	53	124	81	155	0	0
54	106	8	50	2	1	7	5	1	2025-05-23 10:22:18	2025-05-23 10:22:18	0	0	160	186	5.08	5.78	57	129	87	213	0	0
55	107	3	50	5	10	10	4	1	2025-05-23 10:22:18	2025-05-23 10:22:18	0	0	154	194	5.18	6.02	58	127	77	193	0	0
56	108	5	50	9	2	4	2	0	2025-05-23 10:22:19	2025-05-23 10:22:19	1	1	151	170	4.96	6.47	50	126	77	160	0	0
57	109	10	50	1	1	5	1	1	2025-05-23 10:22:19	2025-05-23 10:22:19	0	0	159	174	5.09	5.63	54	117	78	178	0	0
58	110	5	50	2	2	10	1	1	2025-05-23 10:22:19	2025-05-23 10:22:19	0	0	158	193	5.02	5.95	58	112	75	210	0	0
59	111	4	50	10	4	8	5	0	2025-05-23 10:22:19	2025-05-23 10:22:19	0	0	155	190	5.05	6.2	50	130	88	197	0	0
60	112	7	50	4	7	9	1	0	2025-05-23 10:22:20	2025-05-23 10:22:20	1	1	154	190	5.17	6.32	59	124	75	219	0	0
61	113	6	50	8	6	9	4	0	2025-05-23 10:22:20	2025-05-23 10:22:20	1	0	158	199	4.9	5.56	60	114	84	190	0	0
62	114	10	50	2	10	4	5	0	2025-05-23 10:22:20	2025-05-23 10:22:20	0	0	160	196	5.16	5.81	60	124	91	186	0	0
63	115	9	50	8	4	3	4	1	2025-05-23 10:22:21	2025-05-23 10:22:21	0	1	155	177	5.18	5.56	50	129	75	201	0	0
64	116	2	50	7	5	5	4	0	2025-05-23 10:22:21	2025-05-23 10:22:21	0	0	156	178	5.09	6.47	58	118	78	218	0	0
65	117	5	50	10	4	1	2	0	2025-05-23 10:22:21	2025-05-23 10:22:21	0	0	152	200	5.12	5.53	58	112	84	187	0	0
66	118	7	50	10	6	5	3	1	2025-05-23 10:22:21	2025-05-23 10:22:21	1	0	151	182	4.93	5.65	54	119	70	177	0	0
67	119	5	50	10	10	9	3	0	2025-05-23 10:22:22	2025-05-23 10:22:22	0	1	154	193	4.93	5.75	54	120	70	181	0	0
68	120	2	50	7	4	2	5	0	2025-05-23 10:22:22	2025-05-23 10:22:22	0	1	150	186	5	5.8	60	118	88	170	0	0
69	121	8	50	2	4	5	5	1	2025-05-23 10:22:22	2025-05-23 10:22:22	0	1	154	172	5.01	6.32	51	113	83	151	0	0
70	122	2	50	10	3	8	5	1	2025-05-23 10:22:23	2025-05-23 10:22:23	0	1	160	182	4.99	5.89	53	130	98	214	0	0
71	123	8	50	9	6	8	4	0	2025-05-23 10:22:23	2025-05-23 10:22:23	1	1	158	196	5.18	5.59	52	125	87	211	0	0
92	144	4	80	1	2	3	1	0	2025-05-23 10:22:29	2025-05-23 10:22:29	1	0	154	190	4.91	6.02	50	117	95	190	0	0
93	145	10	80	1	5	1	5	1	2025-05-23 10:22:29	2025-05-23 10:22:29	1	1	155	200	5.04	5.98	52	113	96	192	0	0
94	146	4	80	10	4	9	4	1	2025-05-23 10:22:30	2025-05-23 10:22:30	1	0	155	186	4.93	6.42	59	112	82	166	0	0
91	143	7	60	3	3	3	3	0	2025-05-23 10:22:29	2025-05-23 10:22:29	1	1	150	190	5.06	5.63	55	128	75	220	0	0
176	267	\N	60	\N	\N	\N	\N	0	2025-07-13 08:15:59	2025-07-13 08:33:03	0	0	185.38	225.97	6.082152843475342	7.41359806060791	53.79603576660156	118.6	140.6940460205078	310.18	0	0
181	272	\N	50	\N	\N	\N	\N	0	2025-07-13 21:05:50	2025-07-13 21:06:11	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
87	139	3	60	4	1	5	5	1	2025-05-23 10:22:28	2025-05-23 10:22:28	1	0	155	192	5.1	6.16	53	111	94	220	0	0
88	140	7	60	2	4	4	1	0	2025-05-23 10:22:28	2025-05-23 10:22:28	0	1	150	196	5.09	6.42	55	126	71	167	0	0
89	141	2	60	1	10	8	5	1	2025-05-23 10:22:28	2025-05-23 10:22:28	1	1	150	171	4.98	5.92	56	130	82	218	0	0
95	147	9	80	8	5	8	2	0	2025-05-23 10:22:30	2025-05-23 10:22:30	1	0	160	176	5.07	6.42	50	118	82	206	0	0
96	148	5	80	8	8	2	1	1	2025-05-23 10:22:30	2025-05-23 10:22:30	0	0	155	178	5.14	5.72	58	129	100	196	0	0
97	149	9	80	4	9	9	3	0	2025-05-23 10:22:31	2025-05-23 10:22:31	0	0	151	191	5.03	5.73	51	128	99	152	0	0
98	150	5	80	5	2	2	3	0	2025-05-23 10:22:31	2025-05-23 10:22:31	0	1	150	196	5.16	5.51	50	126	91	190	0	0
99	151	7	80	3	10	10	2	1	2025-05-23 10:22:31	2025-05-23 10:22:31	0	0	155	189	5.12	6.44	53	128	78	199	0	0
100	152	7	80	7	1	8	5	1	2025-05-23 10:22:32	2025-05-23 10:22:32	0	1	151	179	4.92	5.9	57	120	79	193	0	0
101	153	3	80	5	7	2	3	1	2025-05-23 10:22:32	2025-05-23 10:22:32	0	1	150	193	5.04	5.8	55	112	98	182	0	0
110	173	\N	\N	\N	1	1	\N	\N	2025-05-27 07:40:10	2025-05-27 07:40:10	0	0	140.0	200.0	4.59	6.56	140.0	63.5	200.0	90.72	0	0
115	53	1	50	\N	1	1	\N	0	2025-05-27 16:32:49	2025-05-27 16:32:49	\N	\N	175	\N	70	154	2	1	3	2	0	0
137	219	2	100	\N	2	1	\N	1	2025-06-04 07:24:03	2025-06-04 07:28:04	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
142	227	\N	50	\N	\N	\N	\N	\N	2025-06-04 17:28:07	2025-06-04 17:28:07	0	0	\N	\N	\N	\N	\N	\N	\N	\N	0	0
132	211	\N	50	\N	1	1	\N	\N	2025-05-31 16:48:23	2025-06-05 07:36:07	0	\N	\N	\N	\N	\N	60.0	132.28	90.0	198.42	0	0
147	234	\N	50	\N	\N	\N	\N	0	2025-06-05 09:10:35	2025-06-05 09:12:32	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
152	240	\N	50	\N	\N	\N	\N	0	2025-06-06 11:41:52	2025-06-06 11:42:13	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
166	254	\N	50	\N	\N	\N	\N	\N	2025-07-11 11:30:36	2025-07-11 11:30:56	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
171	262	\N	50	\N	\N	\N	\N	0	2025-07-12 05:37:03	2025-07-12 05:37:14	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
182	273	\N	57	\N	\N	\N	\N	0	2025-07-16 07:29:14	2025-07-16 07:29:26	\N	0	164.88	196.82	5.409348487854004	6.457507133483887	\N	\N	\N	\N	0	0
195	279	\N	50	\N	\N	\N	\N	\N	2025-09-04 12:44:35	2025-09-04 12:44:39	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
183	274	\N	62	\N	\N	\N	\N	\N	2025-07-16 07:37:56	2025-07-16 08:29:27	0	0	152.4	243.09	5.0	7.975344181060791	60.0	132.28	141.4366455078125	311.81	0	0
184	276	\N	50	\N	\N	\N	\N	\N	2025-07-16 15:13:59	2025-07-16 15:14:04	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
185	277	\N	50	\N	\N	\N	\N	\N	2025-07-17 08:04:32	2025-07-17 08:05:11	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
186	278	\N	50	\N	\N	\N	\N	\N	2025-07-19 08:28:34	2025-07-19 08:28:37	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
187	280	\N	50	\N	\N	\N	\N	\N	2025-08-13 14:46:29	2025-08-13 14:56:59	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
196	291	\N	50	\N	\N	\N	\N	\N	2025-09-04 18:30:54	2025-09-04 18:31:03	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
157	246	\N	25	\N	\N	\N	\N	\N	2025-06-11 10:11:39	2025-08-13 14:58:55	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
188	283	\N	50	\N	\N	\N	\N	\N	2025-08-14 13:31:36	2025-08-14 14:06:11	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
189	286	\N	50	\N	\N	\N	\N	0	2025-08-18 12:06:38	2025-08-18 12:07:03	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
190	287	\N	50	\N	\N	\N	\N	\N	2025-08-18 13:26:07	2025-08-18 13:26:09	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
191	288	\N	50	\N	\N	\N	\N	0	2025-08-19 07:31:22	2025-08-19 07:31:29	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
192	289	\N	50	\N	\N	\N	\N	\N	2025-08-19 07:57:30	2025-08-19 07:58:05	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
193	284	\N	50	\N	\N	\N	\N	0	2025-08-22 08:59:29	2025-08-22 08:59:40	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
194	290	\N	50	\N	\N	\N	\N	0	2025-08-25 17:33:48	2025-08-25 17:34:04	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
197	285	\N	50	\N	\N	\N	\N	\N	2025-09-16 20:31:45	2025-09-16 20:31:48	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
198	292	\N	50	\N	\N	\N	\N	\N	2025-09-23 19:14:39	2025-09-23 19:14:42	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
199	293	\N	50	\N	\N	\N	\N	\N	2025-09-23 20:13:13	2025-09-23 20:13:38	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
200	294	\N	50	\N	\N	\N	\N	0	2025-09-24 08:03:35	2025-09-24 08:03:48	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
201	298	\N	50	\N	\N	\N	\N	\N	2025-09-25 07:52:16	2025-09-25 07:52:29	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
202	299	\N	50	\N	\N	\N	\N	0	2025-11-10 12:43:32	2025-11-10 12:43:37	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
203	229	\N	50	\N	\N	\N	\N	\N	2025-11-10 13:02:37	2025-11-10 13:02:41	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
204	300	\N	50	\N	\N	\N	\N	\N	2025-11-11 06:22:02	2025-11-11 06:22:09	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
205	302	\N	50	\N	\N	\N	\N	\N	2025-11-14 07:50:14	2025-11-14 07:50:16	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
206	303	\N	50	\N	\N	\N	\N	0	2025-11-15 08:46:59	2025-11-15 08:47:08	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
207	304	\N	50	\N	\N	\N	\N	\N	2025-11-17 05:13:42	2025-11-17 05:13:43	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
208	305	\N	50	\N	\N	\N	\N	\N	2025-11-17 14:08:53	2025-11-17 14:08:55	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
209	306	\N	50	\N	\N	\N	\N	\N	2025-11-17 14:27:13	2025-11-17 14:27:14	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
120	192	\N	50	\N	\N	\N	\N	\N	2025-05-28 17:54:29	2025-11-17 15:32:35	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
210	307	\N	50	\N	\N	\N	\N	0	2025-11-18 06:29:11	2025-11-18 07:31:44	\N	\N	152.4	228.85	5.0	7.508105278015137	59.99999237060547	132.28	128.40426635742188	283.08	0	0
211	310	\N	50	\N	\N	\N	\N	0	2025-11-18 09:24:22	2025-11-18 09:24:26	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
212	311	\N	50	\N	\N	\N	\N	0	2025-11-18 09:36:15	2025-11-18 09:36:27	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
213	312	\N	50	\N	\N	\N	\N	0	2025-11-19 06:35:42	2025-11-19 06:36:27	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
215	315	\N	50	\N	\N	\N	\N	\N	2025-11-27 18:28:29	2025-11-27 18:28:43	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
216	316	\N	50	\N	\N	\N	\N	0	2025-12-11 15:57:21	2025-12-11 15:57:34	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
217	317	\N	50	\N	\N	\N	\N	\N	2025-12-11 16:40:02	2025-12-11 16:56:29	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
214	313	\N	50	\N	\N	\N	\N	\N	2025-11-24 11:20:10	2025-12-11 16:56:06	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
218	320	\N	50	\N	\N	\N	\N	\N	2025-12-15 17:26:01	2025-12-15 17:26:12	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
219	319	\N	50	\N	\N	\N	\N	1	2025-12-15 17:35:21	2025-12-15 17:35:42	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
220	321	\N	50	\N	\N	\N	\N	\N	2025-12-15 17:53:42	2025-12-15 17:54:25	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
221	318	\N	50	\N	\N	\N	\N	\N	2025-12-17 06:58:23	2025-12-17 07:00:27	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
222	325	\N	50	\N	\N	\N	\N	\N	2025-12-22 17:20:11	2025-12-22 17:21:37	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
223	324	\N	50	\N	\N	\N	\N	\N	2025-12-22 23:42:05	2025-12-22 23:42:08	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
224	326	\N	0	\N	\N	\N	\N	1	2025-12-24 07:19:50	2025-12-29 10:12:02	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	5
225	330	\N	\N	\N	\N	\N	\N	1	2025-12-29 12:12:58	2025-12-29 12:12:58	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	2
226	331	\N	\N	\N	\N	\N	\N	\N	2025-12-29 12:17:53	2025-12-29 13:18:37	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	1
227	332	\N	\N	\N	\N	\N	\N	0	2025-12-29 17:03:18	2025-12-29 17:03:18	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	3
228	333	\N	0	\N	\N	\N	\N	\N	2025-12-30 07:38:16	2025-12-30 07:41:28	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	2
229	334	\N	\N	\N	\N	\N	\N	\N	2025-12-30 09:27:08	2025-12-30 09:27:08	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	1
230	336	\N	0	\N	\N	\N	\N	0	2025-12-31 06:49:19	2025-12-31 06:49:40	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	1
231	337	\N	\N	\N	\N	\N	\N	0	2025-12-31 07:08:55	2025-12-31 07:08:55	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	1
232	339	\N	\N	\N	\N	\N	\N	\N	2026-01-01 06:33:47	2026-01-01 06:33:47	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	1
233	341	\N	50	\N	\N	\N	\N	\N	2026-01-06 15:39:00	2026-01-06 15:59:39	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
234	343	\N	\N	\N	\N	\N	\N	\N	2026-01-06 16:40:18	2026-01-06 16:40:18	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0
235	340	\N	\N	\N	\N	\N	\N	\N	2026-01-06 16:45:24	2026-01-06 16:45:24	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	1
236	344	\N	\N	\N	\N	\N	\N	0	2026-01-08 08:14:26	2026-01-08 08:14:26	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	1
\.


--
-- Data for Name: user_professions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_professions (id, user_id, profession_id, created_at, updated_at) FROM stdin;
3	227	1	\N	\N
4	227	2	\N	\N
8	211	1	\N	\N
9	232	1	\N	\N
10	232	2	\N	\N
11	233	1	\N	\N
12	233	2	\N	\N
13	234	1	\N	\N
14	237	1	\N	\N
15	237	3	\N	\N
16	237	2	\N	\N
17	237	4	\N	\N
18	237	5	\N	\N
19	239	1	\N	\N
20	239	2	\N	\N
25	242	1	\N	\N
26	242	2	\N	\N
27	243	3	\N	\N
28	244	1	\N	\N
29	244	3	\N	\N
31	245	1	\N	\N
32	250	1	\N	\N
39	260	1	\N	\N
40	265	1	\N	\N
41	270	1	\N	\N
42	271	1	\N	\N
43	273	3	\N	\N
44	273	4	\N	\N
45	273	5	\N	\N
46	274	1	\N	\N
48	294	1	\N	\N
49	299	1	\N	\N
50	303	1	\N	\N
51	303	3	\N	\N
52	192	1	\N	\N
53	192	2	\N	\N
54	310	3	\N	\N
55	311	3	\N	\N
56	311	1	\N	\N
59	319	3	\N	\N
61	326	2	\N	\N
62	326	3	\N	\N
63	330	1	\N	\N
64	331	1	\N	\N
65	336	2	\N	\N
66	337	3	\N	\N
67	339	1	\N	\N
68	344	1	\N	\N
69	344	3	\N	\N
\.


--
-- Data for Name: user_reports; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_reports (id, reporter_id, reported_user_id, reason, created_at, updated_at, report_type_id) FROM stdin;
1	192	51	reason	2025-05-31 13:37:12	2025-05-31 13:37:12	7
2	192	51	reason	2025-05-31 13:38:44	2025-05-31 13:38:44	7
3	192	51	reason	2025-05-31 13:38:59	2025-05-31 13:38:59	7
4	192	51	reason	2025-05-31 13:40:51	2025-05-31 13:40:51	7
5	192	51	reason	2025-05-31 13:45:23	2025-05-31 13:45:23	7
6	192	51	reason	2025-05-31 13:47:11	2025-05-31 13:47:11	7
7	53	55	reason	2025-05-31 13:54:47	2025-05-31 13:54:47	1
8	53	56	reason	2025-05-31 14:07:46	2025-05-31 14:07:46	1
9	192	51	reason	2025-05-31 14:07:47	2025-05-31 14:07:47	7
10	239	192	Bullying or harassment	2025-06-06 12:54:56	2025-06-06 12:54:56	4
11	244	264	I just don't like it	2025-07-12 09:59:50	2025-07-12 09:59:50	2
12	260	262	Soliciting	2025-07-18 17:11:58	2025-07-18 17:11:58	5
\.


--
-- Data for Name: user_requests; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_requests (id, sender_id, receiver_id, status, created_at, updated_at) FROM stdin;
1	48	35	0	2025-03-11 17:18:40	2025-03-11 17:18:40
2	35	48	0	2025-03-11 17:18:40	2025-03-11 17:18:40
4	192	196	0	2025-05-29 16:20:59	2025-05-29 16:20:59
7	50	176	0	2025-05-29 16:50:59	2025-05-29 16:50:59
8	50	174	0	2025-05-29 18:07:02	2025-05-29 18:07:02
9	197	181	0	2025-05-29 18:09:02	2025-05-29 18:09:02
11	197	179	1	2025-05-29 18:10:14	2025-05-29 18:23:35
13	50	179	0	2025-05-30 05:30:05	2025-05-30 05:30:05
49	233	215	1	2025-06-05 09:36:10	2025-06-05 09:36:16
90	245	244	1	2025-07-11 14:59:03	2025-07-11 15:01:53
10	197	193	1	2025-05-29 18:09:29	2025-05-30 10:33:55
150	265	211	1	2025-07-13 14:03:39	2025-07-13 14:08:56
117	260	258	0	2025-07-12 12:04:16	2025-07-12 12:04:16
151	268	100	0	2025-07-13 16:09:16	2025-07-13 16:09:16
152	268	237	0	2025-07-13 16:10:14	2025-07-13 16:10:14
22	193	194	0	2025-05-30 11:08:16	2025-05-30 11:08:16
94	253	216	0	2025-07-12 05:20:11	2025-07-12 05:20:11
24	210	179	0	2025-05-31 16:28:42	2025-05-31 16:28:42
60	243	215	1	2025-06-09 09:49:28	2025-06-09 09:50:19
61	242	243	1	2025-06-09 10:32:55	2025-06-09 10:33:40
28	214	155	0	2025-06-03 07:37:10	2025-06-03 07:37:10
63	244	215	1	2025-06-10 13:15:26	2025-06-10 13:15:33
31	219	215	1	2025-06-04 08:42:10	2025-06-04 08:57:04
64	230	244	1	2025-06-11 08:02:26	2025-06-11 08:02:40
65	230	243	0	2025-06-11 08:11:02	2025-06-11 08:11:02
33	222	215	1	2025-06-04 10:47:19	2025-06-04 10:54:19
125	264	267	0	2025-07-13 08:24:42	2025-07-13 08:24:42
34	197	216	0	2025-06-04 15:26:03	2025-06-04 15:26:03
67	245	246	1	2025-06-11 10:21:49	2025-06-11 10:21:56
68	247	234	0	2025-06-23 21:09:04	2025-06-23 21:09:04
69	247	53	0	2025-06-27 17:24:10	2025-06-27 17:24:10
70	249	224	0	2025-06-28 13:23:25	2025-06-28 13:23:25
155	271	268	1	2025-07-13 21:19:39	2025-07-13 21:20:02
39	230	229	0	2025-06-05 07:04:34	2025-06-05 07:04:34
40	230	223	0	2025-06-05 07:05:06	2025-06-05 07:05:06
41	230	179	0	2025-06-05 07:05:41	2025-06-05 07:05:41
72	252	224	1	2025-07-10 12:09:26	2025-07-10 12:09:47
42	230	219	1	2025-06-05 07:16:53	2025-06-05 07:22:04
44	215	225	0	2025-06-05 07:58:36	2025-06-05 07:58:36
127	267	262	0	2025-07-13 08:44:48	2025-07-13 08:44:48
75	216	249	0	2025-07-11 07:41:46	2025-07-11 07:41:46
129	264	263	0	2025-07-13 11:05:59	2025-07-13 11:05:59
79	245	216	1	2025-07-11 08:00:07	2025-07-11 08:00:14
80	253	246	0	2025-07-11 08:44:58	2025-07-11 08:44:58
81	254	216	1	2025-07-11 11:36:08	2025-07-11 11:36:25
134	264	268	0	2025-07-13 11:34:58	2025-07-13 11:34:58
85	224	255	1	2025-07-11 14:10:28	2025-07-11 14:11:13
99	258	216	0	2025-07-12 06:44:07	2025-07-12 06:44:07
100	262	216	0	2025-07-12 06:45:54	2025-07-12 06:45:54
89	193	255	1	2025-07-11 14:34:47	2025-07-11 14:35:40
139	197	266	0	2025-07-13 11:49:59	2025-07-13 11:49:59
140	197	260	0	2025-07-13 11:51:49	2025-07-13 11:51:49
146	197	243	0	2025-07-13 13:23:06	2025-07-13 13:23:06
201	210	154	0	2025-11-17 09:57:19	2025-11-17 09:57:19
188	303	194	0	2025-11-15 09:00:03	2025-11-15 09:00:03
189	303	196	0	2025-11-15 09:01:25	2025-11-15 09:01:25
160	277	274	1	2025-07-17 08:10:49	2025-07-17 08:10:54
161	246	280	0	2025-08-13 15:04:37	2025-08-13 15:04:37
162	246	125	0	2025-08-13 17:53:11	2025-08-13 17:53:11
163	246	204	0	2025-08-13 17:53:36	2025-08-13 17:53:36
164	276	268	0	2025-08-14 13:50:54	2025-08-14 13:50:54
165	276	51	0	2025-08-14 13:51:03	2025-08-14 13:51:03
190	303	195	0	2025-11-15 09:01:58	2025-11-15 09:01:58
170	290	214	0	2025-08-25 17:34:46	2025-08-25 17:34:46
171	291	54	0	2025-09-04 18:31:30	2025-09-04 18:31:30
172	300	194	0	2025-11-11 11:54:06	2025-11-11 11:54:06
173	300	165	0	2025-11-11 11:54:31	2025-11-11 11:54:31
174	300	85	0	2025-11-11 11:54:37	2025-11-11 11:54:37
175	300	50	0	2025-11-11 11:54:54	2025-11-11 11:54:54
176	300	56	0	2025-11-11 12:09:26	2025-11-11 12:09:26
177	300	206	0	2025-11-11 12:09:54	2025-11-11 12:09:54
178	300	235	0	2025-11-11 12:10:09	2025-11-11 12:10:09
179	300	79	0	2025-11-11 12:10:25	2025-11-11 12:10:25
180	299	79	0	2025-11-14 03:57:31	2025-11-14 03:57:31
181	294	194	0	2025-11-14 04:45:54	2025-11-14 04:45:54
182	302	234	0	2025-11-14 08:19:39	2025-11-14 08:19:39
183	289	79	0	2025-11-14 15:31:45	2025-11-14 15:31:45
184	289	194	0	2025-11-14 15:32:13	2025-11-14 15:32:13
185	289	50	0	2025-11-14 15:32:45	2025-11-14 15:32:45
186	289	202	0	2025-11-14 15:33:20	2025-11-14 15:33:20
192	192	50	0	2025-11-15 11:16:25	2025-11-15 11:16:25
193	192	237	0	2025-11-15 11:17:06	2025-11-15 11:17:06
194	192	264	0	2025-11-15 11:18:48	2025-11-15 11:18:48
195	192	165	0	2025-11-15 11:19:21	2025-11-15 11:19:21
196	304	267	1	2025-11-17 05:35:16	2025-11-17 05:36:53
197	210	234	0	2025-11-17 09:52:28	2025-11-17 09:52:28
198	210	185	0	2025-11-17 09:52:35	2025-11-17 09:52:35
199	210	214	0	2025-11-17 09:52:46	2025-11-17 09:52:46
200	210	51	0	2025-11-17 09:57:09	2025-11-17 09:57:09
202	210	52	0	2025-11-17 09:57:27	2025-11-17 09:57:27
203	210	55	0	2025-11-17 09:57:34	2025-11-17 09:57:34
191	303	264	1	2025-11-15 09:02:26	2025-11-17 15:08:18
218	320	181	0	2025-12-15 17:51:13	2025-12-15 17:51:13
210	307	234	0	2025-11-18 06:31:18	2025-11-18 06:31:18
211	307	185	0	2025-11-18 06:31:28	2025-11-18 06:31:28
212	307	214	0	2025-11-18 06:31:54	2025-11-18 06:31:54
213	307	180	0	2025-11-18 06:32:06	2025-11-18 06:32:06
214	311	310	1	2025-11-18 09:38:37	2025-11-18 09:38:44
215	294	310	1	2025-11-18 10:53:16	2025-11-18 10:53:23
216	312	155	0	2025-11-19 06:37:51	2025-11-19 06:37:51
217	315	214	0	2025-11-27 18:29:13	2025-11-27 18:29:13
220	320	321	1	2025-12-15 17:57:09	2025-12-15 17:58:05
5	192	194	1	2025-05-29 16:21:38	2025-12-29 10:37:21
222	333	332	1	2025-12-30 07:42:19	2025-12-30 07:42:28
224	336	337	1	2025-12-31 07:36:08	2025-12-31 07:36:18
225	336	333	1	2025-12-31 08:25:20	2025-12-31 08:27:39
228	276	336	1	2025-12-31 12:54:35	2025-12-31 12:54:43
229	341	299	0	2026-01-06 16:03:24	2026-01-06 16:03:24
\.


--
-- Data for Name: user_sects; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_sects (id, user_id, sect_id, created_at, updated_at) FROM stdin;
1	227	1	\N	\N
2	227	2	\N	\N
3	211	1	\N	\N
6	232	1	\N	\N
7	232	2	\N	\N
8	233	1	\N	\N
9	233	2	\N	\N
10	234	8	\N	\N
11	234	2	\N	\N
12	237	2	\N	\N
13	237	8	\N	\N
14	237	6	\N	\N
15	239	3	\N	\N
16	239	2	\N	\N
17	240	1	\N	\N
18	240	2	\N	\N
20	238	2	\N	\N
21	238	3	\N	\N
26	243	2	\N	\N
27	244	2	\N	\N
29	245	1	\N	\N
30	248	8	\N	\N
31	250	1	\N	\N
32	216	2	\N	\N
37	260	1	\N	\N
38	265	1	\N	\N
39	264	2	\N	\N
41	269	6	\N	\N
42	270	1	\N	\N
43	272	8	\N	\N
44	273	2	\N	\N
45	274	2	\N	\N
47	277	2	\N	\N
49	288	1	\N	\N
50	288	2	\N	\N
51	291	8	\N	\N
52	192	1	\N	\N
53	307	1	\N	\N
54	311	2	\N	\N
55	312	1	\N	\N
57	326	1	\N	\N
58	330	1	\N	\N
60	336	2	\N	\N
61	344	1	\N	\N
\.


--
-- Data for Name: user_sports; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_sports (id, user_id, sport_id, created_at, updated_at) FROM stdin;
1	35	1	2025-03-11 17:18:40	2025-03-11 17:18:40
7	157	4	\N	\N
8	173	2	\N	\N
9	173	6	\N	\N
10	173	3	\N	\N
11	173	4	\N	\N
14	177	1	\N	\N
15	177	4	\N	\N
16	177	5	\N	\N
17	177	2	\N	\N
18	179	2	\N	\N
20	176	4	\N	\N
21	181	6	\N	\N
22	181	2	\N	\N
23	50	2	\N	\N
24	50	5	\N	\N
25	179	4	\N	\N
26	50	3	\N	\N
27	50	6	\N	\N
28	189	3	\N	\N
29	189	6	\N	\N
30	191	2	\N	\N
32	192	3	\N	\N
33	193	2	\N	\N
34	193	6	\N	\N
35	194	4	\N	\N
36	194	5	\N	\N
37	194	2	\N	\N
38	195	1	\N	\N
39	195	4	\N	\N
40	195	5	\N	\N
41	195	6	\N	\N
42	196	4	\N	\N
43	196	2	\N	\N
44	197	2	\N	\N
45	197	3	\N	\N
46	197	4	\N	\N
47	200	2	\N	\N
48	200	4	\N	\N
49	200	5	\N	\N
50	202	4	\N	\N
51	202	5	\N	\N
52	204	4	\N	\N
53	204	1	\N	\N
54	209	2	\N	\N
55	209	3	\N	\N
58	212	2	\N	\N
59	212	6	\N	\N
62	216	2	\N	\N
63	53	1	\N	\N
64	53	3	\N	\N
66	211	3	\N	\N
70	216	3	\N	\N
71	216	6	\N	\N
72	214	1	\N	\N
73	214	4	\N	\N
74	214	5	\N	\N
75	214	6	\N	\N
76	219	1	\N	\N
77	219	2	\N	\N
78	219	4	\N	\N
79	219	5	\N	\N
80	223	1	\N	\N
81	223	2	\N	\N
82	223	3	\N	\N
83	224	2	\N	\N
84	224	5	\N	\N
86	215	3	\N	\N
87	222	2	\N	\N
88	222	1	\N	\N
89	222	5	\N	\N
90	215	1	\N	\N
91	215	6	\N	\N
92	229	2	\N	\N
93	229	5	\N	\N
94	230	1	\N	\N
95	230	2	\N	\N
96	230	6	\N	\N
97	231	1	\N	\N
98	231	4	\N	\N
99	232	2	\N	\N
100	232	5	\N	\N
101	233	2	\N	\N
102	233	5	\N	\N
103	234	2	\N	\N
104	234	5	\N	\N
105	237	2	\N	\N
106	237	6	\N	\N
107	237	4	\N	\N
108	237	5	\N	\N
109	238	1	\N	\N
110	238	4	\N	\N
111	239	1	\N	\N
112	239	5	\N	\N
113	192	1	\N	\N
114	240	1	\N	\N
115	240	4	\N	\N
116	240	6	\N	\N
117	241	6	\N	\N
118	241	3	\N	\N
119	242	4	\N	\N
120	242	6	\N	\N
121	243	2	\N	\N
122	243	6	\N	\N
123	246	4	\N	\N
124	246	5	\N	\N
125	245	2	\N	\N
126	245	1	\N	\N
127	247	5	\N	\N
128	247	3	\N	\N
129	249	3	\N	\N
130	249	6	\N	\N
131	249	4	\N	\N
132	249	1	\N	\N
133	253	1	\N	\N
134	253	2	\N	\N
135	254	2	\N	\N
136	254	5	\N	\N
137	254	4	\N	\N
138	262	2	\N	\N
139	262	5	\N	\N
140	263	6	\N	\N
141	264	6	\N	\N
143	264	2	\N	\N
144	264	5	\N	\N
145	267	6	\N	\N
146	268	2	\N	\N
147	268	5	\N	\N
148	269	2	\N	\N
149	269	6	\N	\N
150	270	2	\N	\N
151	270	6	\N	\N
152	271	2	\N	\N
153	271	5	\N	\N
154	272	3	\N	\N
155	272	6	\N	\N
156	272	5	\N	\N
157	273	2	\N	\N
158	273	6	\N	\N
159	274	4	\N	\N
160	274	2	\N	\N
161	276	1	\N	\N
162	276	4	\N	\N
163	283	2	\N	\N
164	286	3	\N	\N
165	286	6	\N	\N
166	287	2	\N	\N
167	287	5	\N	\N
168	288	2	\N	\N
169	288	5	\N	\N
170	279	2	\N	\N
171	284	2	\N	\N
172	284	5	\N	\N
173	290	1	\N	\N
174	290	2	\N	\N
175	291	2	\N	\N
176	291	1	\N	\N
177	293	1	\N	\N
178	293	2	\N	\N
179	293	4	\N	\N
180	293	3	\N	\N
181	293	6	\N	\N
182	293	5	\N	\N
183	294	2	\N	\N
184	294	5	\N	\N
185	300	5	\N	\N
186	300	1	\N	\N
187	303	5	\N	\N
190	310	5	\N	\N
191	310	6	\N	\N
192	311	2	\N	\N
193	312	2	\N	\N
194	313	4	\N	\N
195	315	5	\N	\N
196	316	2	\N	\N
197	320	1	\N	\N
198	320	2	\N	\N
199	320	3	\N	\N
200	320	5	\N	\N
201	320	4	\N	\N
202	320	6	\N	\N
203	319	3	\N	\N
204	318	2	\N	\N
205	318	3	\N	\N
206	303	1	\N	\N
207	326	3	\N	\N
208	326	6	\N	\N
209	330	4	\N	\N
212	331	4	\N	\N
213	331	1	\N	\N
214	339	1	\N	\N
215	341	5	\N	\N
216	341	4	\N	\N
217	343	5	\N	\N
218	344	2	\N	\N
219	344	5	\N	\N
\.


--
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.users (id, name, email, email_verified_at, password, remember_token, created_at, updated_at, first_name, last_name, dial_code, phone, country_id, emirates_id, status, deleted_at, role_id, gender, profile_image, dob, is_verified, user_device_type, user_device_token, user_phone_otp, user_email_otp, password_reset_code, password_reset_time, password_reset_otp, is_social, phone_verified, user_access_token, email_verified, deleted, nick_name, nationality_id, user_number, parent_approval, blur_image, is_image_blur, hide_on_search, not_show_over_aged, firebase_user_key, profile_setup_completed, parent_name, parent_email, preference_setup_completed, who_can_contact, whatsapp_number, temp_dial_code, temp_phone, temp_email, external_customer_id, is_mother_uae_national, is_pending_from_admin, birth_certificate, mothers_emirates_id, reject_reason, gardien_relation, gardien_phone_dial_code, gardien_phone_number, is_first_push_sent, active_request_count, skin_color) FROM stdin;
234	Neha sheikh	hibaejaz97+11@gmail.com	2025-06-09 08:38:54	$2y$12$/xHqF8PG1gRY8vqmw6e/nu7vL6Q2Ro/57PfJ9SsqTWEF1FhVIdb2W	\N	2025-06-05 09:02:52	2025-06-09 08:38:54	\N	\N	971	561970400	1	4	1	\N	2	Female	68415d9e37a75_1749114270.	1990-06-05	0	android	cLc0rEF4TwSoMh0Evig4so:APA91bF9UtY8SkbCABh1fIR-Eu57v6lzClUPwaKyMWFYykGMwc6CY-aX0Q1JwUOGdYiB77yZ6mnbP5xLL0vv2OZqQwwZaUsRwf41rs6gK-2BS1RxcNtAe1I	\N		\N	\N	\N	0	1	5a8325b656e47fc46720c32c05eb45f49be89e5a8a37087da2e0955495b2a65d	1	0	Neha	7	LQ000234	1	0	0	f	f	-ORzK2K9MCRgG2hsJmQF	1	Sheikh Sahab	hibaejaz97+12@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
185	Mudassar Zahid	mudasserzahid48+16@gmail.com	2025-05-28 09:59:03	$2y$12$c6wWNxUG4DYf2MysnTJxY.SJr1ayxlODH6K.dML3y2av3UL0N6Cxi	\N	2025-05-28 09:59:03	2025-05-28 10:00:32	\N	\N	+971	1633481268	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	adfd2d4d886fb6fd41dcefd64bcde8753139640511b026ebe9c8beaaff97e6e7	0	0	Mudassar	1	LQ000185	0	0	0	f	f	-ORLKBOCnsJ5E1rmrhF2	1	Zahid	mudasserzahid48+14@gmail.com	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
258	Jamie iso two	razahamid34+100@gmail.com__deleted_acount258	2025-07-12 12:01:51	$2y$12$7KdV3Ly2RLpCYbIiW2ampemt.Wrr/fdyHBP3hQCKCh3kR7BQU25UC	\N	2025-07-11 14:43:04	2025-07-12 12:04:38	\N	\N	971	435435435__deleted_acount258	\N	\N	0	\N	2	Male	687123b53c580_1752245173.	2007-07-11	0	ios		\N		\N	\N	\N	0	1		1	1	hamid	237	LQ000258	1	0	1	f	f	-OUtw94QD5Kep5lsNlw1	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
244	Sana Yousuf	hibaejaz97+14@gmail.com	2025-07-12 09:58:51	$2y$12$VzaOgxNbPNe0a6ASJQcCZumqXKSsQtlKEjaxTJoRYr/aTVOvGXdFe	\N	2025-06-10 09:19:28	2025-07-12 10:21:57	\N	\N	971	561998754	1	3	1	\N	2	Female	6847f8eaee039_1749547242.	1991-06-10	0	android		\N		\N	\N	\N	0	1		1	0	Sana	169	LQ000244	1	0	1	f	f	-OSO7nNjI-pWfSYevyFx	1	Yusuf Zai pathan	hibaejaz97+15@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
1	Admin User	admin@luqia.com	\N	$2y$12$EjTQCsXgWY10t7kO8q7x9eJfMH6KecjMmSAkA5faoxmjBuEX.7qja	\N	2024-12-05 15:22:16	2025-06-23 04:38:49	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	\N	\N	\N	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
214	Sara new	sara1@gmail.com	2025-06-04 04:04:42	$2y$12$xOsvatu.Ya8PL97h4bI.8ePf5MYy/LOfVmF/Ks9NqTAgcD3LmYJKS	\N	2025-06-03 03:21:26	2025-06-04 04:04:42	\N	\N	971	546161666	\N	\N	1	\N	2	Female	\N	2007-05-01	0	android	dXpXJDqmSqGvmc8ttVwGWt:APA91bETQkerkDE12KsLz3hPZM7WMzeG1OZnNy-rnMLm6drxEd-yfzNNzvh0YinV9Ae7x11DQvX-8DIbVJEuqhxV0Gn1-o_tVUjSp3wuGovNkh-S4FhQ5h0	\N			2025-06-03 03:29:27	0	0	1	7c454085faae36c4c92d04635ea33c67440abe7d7ba385b00205f62b4a4b76a6	1	0	Sara nick	237	LQ000214	1	0	0	f	f	-ORnniUNYT2QJO2U_NS6	1	Sara parents	anil@dxbusinessgroup.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
224	Ameera	razahamid34+6@gmail.com__deleted_acount224	2025-07-11 12:48:58	$2y$12$Eei.rlNx4QWatibrzQNkuOqV374fbKcef9HiG6uQJ1uByGF62xX2a	\N	2025-06-04 07:57:14	2025-07-11 14:15:21	\N	\N	971	376675757__deleted_acount224	1	1	0	\N	2	Female	683ffc759353c_1749023861.	2007-06-04	0	android		\N			2025-07-10 12:07:31	0	0	1		1	1	Ameera	237	LQ000224	1	0	1	f	f	-ORtwR8ctRIrYINYfP75	1	Hamid	razahamid34@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
85	Marcella Bailey	bauch.kirk@example.com	\N	$2y$12$0t/zHpn7Sw9qkwCmmiJNtuHP4KVxCbzFI.ers4.qrBj0c8O8UtunC	\N	2025-05-23 10:22:12	2025-05-23 10:22:12	\N	\N	+1	294924330	120	\N	1	\N	2	Male		1971-01-22	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Otis Block	\N	LQ888624	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
180	Femal	dx040@gmail.com	2025-05-27 17:39:44	$2y$12$upF6oPW2j3VlTvJATjoeuertGKgZF2TGAu/KOv0GE0akr2tIUaDpu	\N	2025-05-27 17:39:44	2025-05-27 17:40:05	\N	\N	971	646454554	\N	\N	1	\N	2	Female	6835f8f5a96fd_1748367605.	2007-05-27	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	687d6c50e8f71185590f80d12d005bf4fd84006a8e2cb850208480bde8a2714a	0	0	Femal	237	LQ000180	0	0	0	f	f	-ORHp1tt8K7yXLP09IFY	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
51	Mudassar Zahid	dx002@gmail.com	2025-05-31 14:21:43	$2y$12$W5GiiYpg55h3GtkqQ1T0MOk8yflhfRO4B1kQzvAafddBw8B0DMVfq	\N	2025-05-20 07:08:20	2025-05-31 14:21:43	\N	\N	971	35555556	1	1	1	\N	2	Female	\N	1994-05-25	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N			2025-05-31 06:24:02	0	0	1	869b8e9c9969760147502d6b0263729011f15ec209d2fd2b9931dad0b35d6eb1	1	0	Mudassar	\N	LQ000051	1	0	0	f	f	\N	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
197	Ameer Raza	ameer@dx.com	2025-07-13 11:43:48	$2y$12$IsimNhpqsq7psicYGY.ZRujNEKDzcj5M.YqPpAAuOcoA7kI9JbXmG	\N	2025-05-29 17:23:31	2025-07-13 13:29:55	\N	\N	971	354242277	1	1	1	\N	2	Male	6838987d3de9c_1748539517.	2007-05-29	0	android	eZ1xOLjaHkX0ndbZ4hnnV2:APA91bFsf2YF-Ugy1byH9RSF0k3AmtFyzxN4D9pyOjuSRiqZ8sWFZigFOroprx8vr_0Ya48ZHG4-d-9UItok2zFZJ05ZWb4iCnx82a9-NgWVzuXemyW3Ves	\N			2025-07-12 12:14:49	0	0	1	4b8f252d7487802ebd1c9607c8e1b697ef223c9fe52894b756bf27606e4aef36	1	0	Ameer	237	LQ000197	1	0	0	f	f	-ORS3VpdW3uUKeJwbyDY	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
186	Mudassar Zahid	mudasserzahid48+17@gmail.com	2025-05-28 10:05:54	$2y$12$Z8CGLZbBK3npbeokPRi8bOJi5q/temTeMU96GkbEs9wlJGKPxEd/e	\N	2025-05-28 10:03:47	2025-05-28 10:05:54	\N	\N	+971	1633481269	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	34c0f469511f3744560f41b27a26e45805fd4d8e45998cafd81b164a79a72ea4	1	0	Mudassar	1	LQ000186	0	0	0	f	f	\N	0	Zahid	mudasserzahid48+14@gmail.com	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
50	Mudassar Zahid	dx001@gmail.com	2025-05-31 06:18:16	$2y$12$pIfZtZG2gcl8lH4/dDlYC.xTHEAWb/dU7dvJeOiZnXE4nPnz3u5t.	\N	2025-05-20 07:06:44	2025-05-31 06:18:16	\N	\N	971	35555555	1	1	1	\N	2	Male	6830ba7920961_1748023929.	1994-05-25	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N	1111		2025-05-22 12:35:16	0	0	1	be470cb92b1aa9e5b871481880a33487fa7ff52ee0f28dd6e96104e4f965e490	1	0	Mudassar	1	LQ000050	1	0	0	f	f	\N	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
174	Iamges	images@gmail.com	2025-05-30 10:47:07	$2y$12$UiXSGzTGAzslKIp27TI.CO/EJLhcOJurczpL6qGMXjV1JKX6x.kFS	\N	2025-05-27 08:15:06	2025-05-30 10:47:07	\N	\N	971	342424242	\N	\N	1	\N	2	Female	683574a05187b_1748333728.	2007-05-27	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	e0b71a409786e521789b13fa5e9141f6960ae2ee0a555e958bcc67ff710df9d2	1	0	Test	237	LQ000174	0	0	0	f	f	-ORFnnoixH9MHgUEOAU0	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
204	New	hello@dx.com	2025-05-30 13:42:22	$2y$12$swuFhf9EtP8WaSiSxpRuKueTxLda9a3sfnHTczHaoNvLo02dOHH/.	\N	2025-05-30 13:37:10	2025-05-31 06:16:32	\N	\N	971	255555555	1	1	1	\N	2	Male	\N	2007-05-30	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	693ec84ad949f41664eeef179db267175029e1a40047dfa9fb1c111dd129e2cf	0	0	Hello	237	LQ000204	1	0	0	f	f	-ORWQU-xEUk49rbPUuf4	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
53	Mudassar Zahid	ashok@gmail.com	2025-05-22 06:30:08	$2y$12$7TlgyFvQyCdvLrLTVD93/u/wOM9qUPQVTVXkj7/aznYueA.bb2EIa	\N	2025-05-22 06:30:08	2025-05-22 06:30:08	\N	\N	+971	1633411271	1	\N	1	\N	2	Female	\N	1994-05-25	0	android	1231231			\N	\N	\N	0	1	d6bce21463de2634eab2f81a3e7a5bd9a391fe9cb20987fb3c3ce94b25805218	0	0	Mudassar	\N	LQ000053	0	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
193	Marry Christ	iftikhardxba@hotmail.com	2025-07-11 14:31:07	$2y$12$lC1jueuQ2jrA4JJkSFwSK.n4VPU7aBu7mJm9Xd5RpIk.cHa3ShdEa	\N	2025-05-29 07:13:26	2025-07-11 15:07:32	\N	\N	971	561669888	\N	\N	1	\N	2	Female	683809441e3e0_1748502852.	1996-08-28	0	android		\N		\N	\N	\N	0	1		1	0	Marry	237	LQ000193	1	0	0	f	f	-ORPss9nn7lm_X09dnPz	1	Christopher Columbus	hibadxba@hotmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
154	Hamid	dx003@gmail.com	2025-05-26 20:28:56	$2y$12$nkNnS.VEvzQmlqAT//8.AeyU.vcGfHH7RXxy.EF1Pwgfr3sGJ8/nW	\N	2025-05-23 13:54:05	2025-05-26 20:28:56	\N	\N	971	344156255	1	\N	1	\N	2	Female	\N	1996-05-23	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	2454fc86b60c08d678fba1c08432960e21a6ad597bf2d4e39beb445386680c6c	1	0	Raza	\N	LQ000154	0	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
52	Mudassar Zahid	mudasserzahid48+8@gmail.com	2025-05-22 05:30:36	$2y$12$7IdJmTEUww7KOKs2CQ4Q6OHLEfjRTiZFCMQWheuNx4eVHUorHH3iS	\N	2025-05-22 05:30:36	2025-05-22 05:40:50	\N	\N	+971	1633481271	1	\N	1	\N	2	Female	682eb8e1e0b72_1747892449.jpg	1994-05-25	0	android	1231231	1111		\N	\N	\N	0	1	7a39f43be5cae2e7445838cd402c4f84376560a9e9174baaaeb1e2237c07d13a	0	0	Mudassar	\N	LQ000052	0	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
164	Anil navus	anilnavis@gmail.com	2025-05-27 04:42:09	$2y$12$4yd61GBO10vcoeVu3h6st.KHuVz6NmFAtP370v1OM6KuozOZqsGsm	\N	2025-05-27 04:42:09	2025-05-27 04:42:09	\N	\N	971	564005096	\N	\N	1	\N	2	Male	\N	2005-04-28	0	android	eiOF59gkTGqfbdSZdrLNls:APA91bEx3h6giVdpTJIbE5Rh4U-nWXEYanmnY0K4hz3APy03-UbtCUozBFUtYBmadn67NibskHczSAgQ9_hJSbesCpPHqwfSir68XMTjohay9mCAnzAtzR0			\N	\N	\N	0	1	064fff7edac61012044b4dd8bb8c4a94004210f20a2d2ebdcbe70e8150b347b6	0	0	anol	237	LQ000164	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
54	Kaci Nolan	tkirlin@example.net	\N	$2y$12$GrFjbwyh7kI1wYcZ0emGQeb0MW7x24hWw1aAMsUYnMP2NY2wgbEGq	\N	2025-05-23 10:22:02	2025-05-23 10:22:02	\N	\N	+91	710687087	160	\N	1	\N	2	Male		1970-07-20	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Kianna Hahn	\N	LQ265109	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
55	Miss Dora Hyatt	cassin.paolo@example.org	\N	$2y$12$J5TxAJ5BEN7mFXKHJ6hmoevYdIaPH0oSZFBIBs2EW1.GtCga8RQiO	\N	2025-05-23 10:22:03	2025-05-23 10:22:03	\N	\N	+44	794397864	23	\N	1	\N	2	Female		1988-05-09	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Amie Trantow	\N	LQ953843	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
56	Jarod Lind	rdamore@example.net	\N	$2y$12$eWf0sY3jTO68vK2lIc1RIe3a8pQf82R2hzPaSM.TsH4t3rReLES6m	\N	2025-05-23 10:22:03	2025-05-23 10:22:03	\N	\N	+91	495843963	47	\N	1	\N	2	Male		1987-09-22	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Waylon Kerluke	\N	LQ281354	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
155	Hamid	dx005@gmail.com	2025-05-23 18:20:44	$2y$12$PT2RxQs7qJV7qMPBHTdaZ.tKH/FQbPYV.08TbWESUZ3dPOVcNf.Ci	\N	2025-05-23 18:20:44	2025-05-23 18:20:44	\N	\N	971	345454545	169	\N	1	\N	2	Male	\N	1996-01-12	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	c5d52829dc092bf9b2c73fc3ec4d1c5bbff46a0b63160e831558c7cc5d16a912	0	0	Raza	\N	LQ000155	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
198	Ameera Raza	ameera@dx.com	2025-05-31 16:40:58	$2y$12$zq2l4V9dHl6kNL8ed3UUSu9QLblWGr7Io95O00KyKzDGPBYDarcYW	\N	2025-05-29 17:28:49	2025-05-31 16:40:58	\N	\N	971	346464648	\N	\N	1	\N	2	Female	6838997c2db3b_1748539772.	2007-05-29	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	7553e43adf821f7b6c7c3b22b8949246c5c7e2b2e7fb7a207882904173b8f296	1	0	Ameera	237	LQ000198	0	0	0	f	f	-ORS4iY_24cyYTgvJxvK	0	Hamid Raza	razahamid34@gmail.com	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
187	Alina	alina@dx.com	2025-05-28 17:28:00	$2y$12$dYZtHGaJaRYwpsnAmtoHl.BhzNLNv/W9vJ5mWaUDoGCn.EBxwav/O	\N	2025-05-28 17:28:00	2025-05-28 17:28:05	\N	\N	92	346466464	\N	\N	1	\N	2	Female	\N	2007-05-28	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	d3b985ebaef2745f858ebe2f3a31d95c68e5800f06097100960e580edf2380bb	0	0	Alina	237	LQ000187	0	0	0	f	f	-ORMvwt_mYOM6_SryhyZ	0	Alina ali	ali@dx.com	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
181	FemaleTwo	hamidiqbalgoraya@gmail.com	2025-05-27 18:16:10	$2y$12$TFnoOLG0lFBPaSF4zxb7oe1NTvtDZQ0LRDk/1B8oNAl4ZC6h4F47q	\N	2025-05-27 18:16:10	2025-05-27 18:18:57	\N	\N	971	645457575	\N	\N	1	\N	2	Female	68360189b2a91_1748369801.	2007-05-27	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	dba4463c1ef772d702379e653b833c2b448a458bb53eb3ed2ba8beff2ada3476	0	0	Hi	237	LQ000181	1	0	0	f	f	-ORHxN_7tpZ69nXer0kA	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
165	Mudassar Zahid	mudasserzahid48+12@gmail.com	2025-05-28 06:06:59	$2y$12$ifvENHKbcoiR6bztZQdwp.TBIKtWzWuwOgCPI4P44OxhX9O0fFl4W	\N	2025-05-27 04:52:40	2025-05-28 06:06:59	\N	\N	+971	1633481264	\N	\N	1	\N	2	Male	\N	1994-05-25	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	4d99c51df924e40769bcb0ab80e637790986a69c1ebe3038e85669aaf5a1ef1c	1	0	Mudassar	1	LQ000165	1	0	0	f	f	-ORF4sAuEIVEekPnuuDL	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
175	Full	dx030@gmail.com	2025-05-27 08:31:31	$2y$12$sHDNPezBYw9l.HFBdJp4W.gSgrdk3qDFDnTGjVQwNFzGpA7196Tzi	\N	2025-05-27 08:31:31	2025-05-27 08:32:02	\N	\N	971	242424224	\N	\N	1	\N	2	Female	683578822ed3f_1748334722.	2007-05-27	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	04211fd8f966b0f35c3529b619eae808e60e98a0f48835cf8af72554c0b7cb72	0	0	Flow	237	LQ000175	0	0	0	f	f	-ORFrZWq-TLh611O7AV-	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
225	Simian kh	hibaejaz97+7@gmail.com	2025-06-04 08:24:54	$2y$12$09dV06dV2Lt9G90fHK8LBOUcKvbjZDoKFVA9VExcYTT5axzQLB7HC	\N	2025-06-04 08:22:58	2025-06-04 08:24:54	\N	\N	971	561669877	\N	\N	1	\N	2	Female	68400277edc47_1749025399.	2007-06-04	0	android	fB2uCsnRSpayYoJ7Ye2e4u:APA91bH20SpGtUI0RnKAbXjJ40LGSTmi5fus6bRmYw5y_-qvo46_LLSdIild4qQ_Fgky3LYdpJZ665megap5TXL8NU8VX4TgTk2NRA8_1l3ppXgFthN6qHE	\N		\N	\N	\N	0	1	9802d286226449ecf28a03943a570238ce77e9c9be4c042cd0c3a520895ee6ea	1	0	Simo	237	LQ000225	2	0	0	f	f	-ORu1K65cpxUo8hHTNGf	0	Khan	hibaejaz97+8@gmail.com	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
205	Mudassar Zahid	mudasserzahid48+22@gmail.com	2025-05-30 14:00:15	$2y$12$2yDjhshkkuwALCaTXuD6o.rxZqwBqJ6SuJ7a8U6taLpupYiTJn9au	\N	2025-05-30 14:00:15	2025-05-30 14:00:17	\N	\N	+971	1633481284	\N	\N	1	\N	2	Male	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	ae421555b9cd6ac403f2dc887bd4c90906c464c70dda956d87199bcc7c23b7bd	0	0	Mudassar	1	LQ000205	1	0	0	f	f	-ORWU_-Rn7Ahwm266ECq	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
79	Sydney Renner	heidenreich.jamarcus@example.com	\N	$2y$12$SKerZy/RLP6ogfSglEGRUeSk8Nlqhvu6QOHFZOsfMNwYntciAC1pq	\N	2025-05-23 10:22:10	2025-05-23 10:22:10	\N	\N	+1	225802165	179	\N	1	\N	2	Male		1997-07-01	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Lera Turner DVM	\N	LQ442157	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
215	Basic Sheikh	hibaejaz97+2@gmail.com	2025-06-10 13:08:47	$2y$12$JLRhAas02cC.Zn3xT3tc.eLoFzbom02W7rst2w5X8hNdgKadvN09e	\N	2025-06-03 05:21:54	2025-06-10 13:15:12	\N	\N	971	561998745	1	5	1	\N	2	Male	683e868a825a6_1748928138.	1995-06-30	0	android	dRn-fu7cRRuAjsH9S53AyT:APA91bHsREFjutiSZG-Jp9rLKq-lcyOWaq_aJAXCA0thfZKz5Wq_vuhclfBycfaI1EEwEWC_demluCxa3aaj7AxnL4-_ZtHlxHdMmGM-ZnxYhw44KvWZy4E	\N		\N	\N	\N	0	1	7c545f373e38f1780f500f18d5616dde1c914f2d83589b22fde1bea943e52a33	1	0	Basit	237	LQ000215	1	0	0	f	f	-ORoEI2HZ930ERb2IC9H	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
235	Notification	razahamid34+13@gmail.com	2025-06-05 10:30:24	$2y$12$.WCweMXi3o5c1ss.GD8rJugXiCPEaGjBj278XIRDlZ.5ioX9g3MYa	\N	2025-06-05 10:16:36	2025-06-05 10:31:01	\N	\N	971	344415624	\N	\N	1	\N	2	Male	\N	2007-06-05	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	9e63417c15656c43283c2525fac52063954160886a47013410ec44e22ba690f0	0	0	Test	237	LQ000235	1	0	0	f	f	-ORzd4WuRtBrijtL4vLU	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
259	Mudassar Zahid	sabeeh48+26@gmail.com	2025-07-11 15:06:09	$2y$12$itmF87r2Z0vA6RG5gSqaVu7wTbL51qlVWBjLbUK49javHB79HZ8zK	\N	2025-07-11 15:06:09	2025-07-11 15:06:14	\N	\N	+971	16331288	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	cf8343b1c3f04319df9852e72aaa14985cc001d12bdf094005629467fa93a8c1	0	0	Mudassar	1	LQ000259	1	0	0	f	f	-OUu0QyvIgCVnw1QVaKk	0	Sabeeh	sabeeh.shah+15@gmail.com	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
245	Wasi Ahmed	hibaejaz97+16@gmail.com	2025-07-13 02:12:09	$2y$12$u.lWFurLbQe28sqaWqyGau5ND2VIL94Nnj1IOXNSps7IlPhgBbXSS	\N	2025-06-11 09:55:14	2025-07-13 02:17:01	\N	\N	971	561997040	1	3	1	\N	2	Male	684955ab910f5_1749636523.	1993-06-11	0	android	ewV05derRc2r3bgbg5xFXR:APA91bG0vtR-oXWxFu_b5vAzC_iS2SCq7TWkipMq4UOn9wYdnJlv2X7-mcVsVXOw5lhGK8EyI5tCwocgQZvUgWbqvXc7TtLKgH2CwK7JQeN-uExNPLyLXjc	\N		\N	\N	\N	0	1	c7eb2b0290935162ac6769072d93ad50b1c5aace6a59164bbff87f1e7d127b86	1	0	Wasi	18	LQ000245	1	0	0	f	f	-OSTP_5Z_GqtAzLnYvFn	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
268	Mega Sharma	hibaejaz97+21@gmail.com	2025-07-14 04:45:27	$2y$12$r2G3/t559q6OrMxZUkbPJedsM0VZfd2Z3FN8P4Gih6.SW05c.Pfyi	\N	2025-07-13 11:10:11	2025-07-14 04:45:27	\N	\N	971	561660158	1	1	1	\N	2	Female	\N	1987-07-13	0	ios	eDG_yjDzQze5OO3Qiw5Qm6:APA91bFqKg9TCVOPBUXTiJieWprWr1xMJvN0GJzq92oi4Ij_1zLAKf8qZ9FwEgim2tPhVZxaKlqvNxdxolLb7bAh6bU_yciOb6yK8KjBiiJT7yjwAkIG7So	\N		\N	\N	\N	0	1	2b5b994afa68a61a346be524af4731c6a08cd0ff0c1ce61463200030283898f7	1	0	Mega	103	LQ000268	1	0	0	f	f	-OV2TatHxBeLG3MH9LCV	1	Sawed lhan	saed@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
206	Mudassar Zahid	mudasserzahid48+23@gmail.com	2025-05-30 14:02:36	$2y$12$LXF4f5u6.wCeDNvLKOGdMu0bCLmuGDYbWkVnEobvQQbMtotpets2a	\N	2025-05-30 14:02:36	2025-05-30 14:02:36	\N	\N	+971	1633481285	\N	\N	1	\N	2	Male	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	31284616d1ac0a2621f786c1b47d67650013bbfdd733e8cad56f82f0ba700025	0	0	Mudassar	1	LQ000206	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
156	Hamid	dx006@gmail.com	2025-05-23 18:24:04	$2y$12$4qcO/5vKkj2cV.hBwGuW2uBP8Bfbc0SWpEjGj.Lz9iCIHsMKnDtn2	\N	2025-05-23 18:24:04	2025-05-23 18:24:16	\N	\N	971	346576767	1	\N	1	\N	2	Female	6830bd509b1d0_1748024656.	1996-01-12	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	963cf269d3bbbd8972db0a932500c22065ff69b2dbddde2b431ae63cedbb1b9f	0	0	Raza	\N	LQ000156	0	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
188	Mudassar Zahid	mudasserzahid48+19@gmail.com	2025-05-28 17:36:48	$2y$12$r7vkVc02CqFqUKC55t0cCuT9JiZJeTJWSYgLR4/veVmg7h09JYRAa	\N	2025-05-28 17:36:48	2025-05-28 17:36:52	\N	\N	+971	1633481281	\N	\N	1	\N	2	Male	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	ee7ccb9bcd159bb0ea8bc36652f765135d477beb908973d88023e5ce9b4844db	0	0	Mudassar	1	LQ000188	1	0	0	f	f	-ORMxxbEMALcLmRFOUKB	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
166	Mudassar Zahid	asheok2s21@gmail.com	2025-05-27 05:03:03	$2y$12$eidUx5cBqfPz3nzxjJivoepIBGmVCuNv3OKqUGT0KGiZqV2Mg1kx2	\N	2025-05-27 05:03:03	2025-05-27 05:03:07	\N	\N	+971	123311410271	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	1231231			\N	\N	\N	0	1	fcfb7a50009b069c7b571af87a6e4e6531c64ec3385078cead134480652105d2	0	0	Mudassar	1	LQ000166	0	0	0	f	f	-ORF6qgAUVTNmiRwFfhg	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
182	Ariba Ahmed	ariba@gmail.com__deleted_acount182	2025-05-28 05:04:49	$2y$12$O4VqurqeSw6yqOPjdyev8uoFdeOTdOFSRbFwQIc8scOBw1NCUO2me	\N	2025-05-28 05:04:49	2025-05-28 06:44:27	\N	\N	971	561889674__deleted_acount182	\N	\N	0	\N	2	Female	68369bed734dd_1748409325.	2000-10-30	0	android				\N	\N	\N	0	1		0	1	Ariba	237	LQ000182	0	0	0	f	f	-ORKGqKNvAtJIOrBAtzq	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
176	HAMID	dx032@gmail.com	2025-05-28 09:52:26	$2y$12$0yhD51M/eSm28ebt64hts.Z0ApOLop1bjJAy9FwcazNbRwr6z.5dq	\N	2025-05-27 08:44:19	2025-05-28 09:52:26	\N	\N	971	346464646	\N	\N	1	\N	2	Female	68357b757cde5_1748335477.	2007-05-27	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	955789b1f0a175afb5f7ac498d17bf7a8a6b904482c93fd24e19d15c0bb75b98	1	0	raza	237	LQ000176	0	0	0	f	f	-ORFuUsgGt-0DaqP2sDD	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
226	Disease	razahamid34+10@gmail.com	2025-06-04 12:13:01	$2y$12$v5CZDmQ2jBd7KOuvhknBYuSsTSQauCd29voq4Kt9vOGvewfTADKwq	\N	2025-06-04 12:13:01	2025-06-04 12:14:57	\N	\N	971	245457575	\N	\N	1	\N	2	Male	\N	2007-06-04	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	5121ebcf9704967ea9442c535a6cf2c010ea7205883dfce92b99f0787e1b80b5	0	0	Test	237	LQ000226	1	0	0	f	f	-ORuqyzw9u0BGpZI5smA	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
195	Anil	navis@navis.com	2025-06-28 07:44:44	$2y$12$vVx86n6I0cB1S9u.I91DG.ysYu4h9Arv4N5k6HX4oo2aedr55ReFC	\N	2025-05-29 08:17:16	2025-06-28 08:11:01	\N	\N	971	466484694	\N	\N	1	\N	2	Male	\N	2005-04-14	0	android	flMmOvhkRgWVjzZTiS41c8:APA91bFef8lBRpvmOaQ0_MzJhjG09YSyM4TtbfYqS67k3erBLksFUP4M2zAbZ878TgfgeGdM_fuNYUspu1DP0fJ3psdUnbhbz2GRUQ_AEVveAooEiYVcxeQ	\N		\N	\N	\N	0	1	57ee28cc825036f0cb820bce8cb745e714402b2e1abadc9a6e509d8a9d5ed40a	1	0	Nahis	237	LQ000195	1	0	0	f	f	-ORQ6U6KWQ1SLLgcOQ4r	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
199	Female two	femaletwo@dx.com	2025-05-30 11:03:42	$2y$12$wrI9/pFVzI122mi8/vbBDO8/agclMIK/.uEUphc17jap0YlR9uGN.	\N	2025-05-30 10:52:09	2025-05-30 11:03:42	\N	\N	971	243434373	\N	\N	1	\N	2	Female	\N	2007-05-30	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	9eafa152177f83126315945689e55d5440c3515b0a7625265c3ec6cde1475e6e	1	0	Female	237	LQ000199	0	0	0	f	f	-ORVoWfKTrxzfw3XdN9S	0	Hamid	razahamid34@gmail.com	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
236	Mudassar Zahid	mudasserzahid48+26@gmail.com	2025-06-05 10:21:01	$2y$12$T5Mbe4fs.q3GPGRyWsa3vuWDjp9vURrsUfmTifG.H0Lk4z6bkOuMG	\N	2025-06-05 10:21:01	2025-06-05 10:21:06	\N	\N	+971	1633481288	\N	\N	1	\N	2	Male	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	5cab1c416c51b8ec5f89b8a6563b38249555a29ba788c8f3db6714d5a6e6162a	0	0	Mudassar	1	LQ000236	1	0	0	f	f	-ORzawEnuaa1U5Vfw4fw	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
247	Asad	asadnazir289@gmail.com	2025-07-04 19:35:50	$2y$12$jwiIX7QozTRTyj8snSBhSufb.r1ZbpJQ3BDtvNgf2IdcaLXrymiWu	\N	2025-06-23 21:05:53	2025-07-04 19:36:40	\N	\N	971	344156031	1	1	1	\N	2	Male	6859c1d6ee3c9_1750712790.	2007-06-24	0	android	cBEeU5drQ7-a2NQAotWASp:APA91bGAaippZcniJOtecVCBuiF6gUUB9mifn__uExHkttBYdlw4yJBDqUM4tjpaiixR2flQLzGsABcvG-fk0y_Vmav_MsnsP2OhbI1gcuADB6aNzGvlKlU	\N		bbf1645a2c3fbadd3effdaaa0d1f32c70b45ff4137a85f382b8dededcc1b0e54	2025-06-27 18:37:28	1111	0	1	503192ae147a17e60c6da59d9d8bba8707ecdfc68ee1f15c879b76a39135fb89	1	0	Nazir	237	LQ000247	1	0	1	f	f	-OTTb9FE1FowDNflF3Cm	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
250	Hamid	razahamid341@gmail.com	2025-07-09 07:16:57	$2y$12$HyYmF.7oJoLqaH2GIwFoe.nWeZvL6pSIauAR62533Z42U6JQcYYM.	\N	2025-07-09 07:16:57	2025-07-09 07:19:00	\N	\N	971	344156555	1	1	1	\N	2	Male	686e178b755e0_1752045451.	1996-07-09	0	android	cjg0vSR5R1KAygtxOOKT77:APA91bGRLVR6JDLA7r1GPYDafp0Vfq1dFQNbbaj7emPL5vt1x8gQ2yoC-f55WlEl99Sy_DcGEGO2QhE7JVEFjHaaxzWDIBZiBV9VHYVQOXOrd75mTUS5TU8			\N	\N	\N	0	1	0397bc17836c7ccbfea8aabc846a6182e9a7ee6a00f01b3c21b3f5427f10e426	0	0	HamidRaza	237	LQ000250	1	0	1	f	f	-OUi1rKfIxo_50wPK1w7	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
157	Hamid	dx009@gmail.com	2025-05-23 21:35:48	$2y$12$wSPY6GDwfiED45fRBhmw5utyL0ozNksj0g3G/u5DfxW5DDQepzS9m	\N	2025-05-23 21:35:48	2025-05-23 21:36:52	\N	\N	971	366557575	1	\N	1	\N	2	Female	6830ea74090f9_1748036212.	2025-05-24	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	37934dc921d5b1f42c9cb2107db38459a41bf657733d42092812382fc8af2b79	0	0	Raza	\N	LQ000157	0	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
183	Ria	ria@gmail.com	2025-05-28 06:14:20	$2y$12$RdKjqP7O9OmxFMaNiPogeuOkC.VunjlYOVXkkq03nsvv98M3Wx8j6	\N	2025-05-28 06:09:29	2025-05-28 06:14:20	\N	\N	971	523243164	\N	\N	1	\N	2	Female	\N	2006-02-01	0	android	eKafLVQKSs-Ep03v7lRMdP:APA91bH8yp1Gy_jCX1erp2QarhW3uOsjuGegBJ8r0TP0G8lYzH3eFCTU7dk-oKGA1t1kCP33b3OBj3xVheyUW2eCVa-kLQq5SSUVNlcu9-NJhRK2FNWPd9s	\N		\N	\N	\N	0	1	ec0523becd61c3f1bbde65a877f041597dae7acdfc29b60b227ae7e7021f36fd	1	0	Ria	237	LQ000183	0	0	0	f	f	-ORKVddWTS06oVFjEySR	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
251	Hamif	hamid001@gmail.com__deleted_acount251	2025-07-11 14:28:08	$2y$12$5pxPlgwdnFDp5WQa8nC2gONbYZ5qw2r8VG60eLyQSmzOYMOXurMry	\N	2025-07-09 10:44:36	2025-07-11 14:28:22	\N	\N	971	344664676__deleted_acount251	\N	\N	0	\N	2	Male	\N	1996-07-09	0	android		\N		\N	\N	\N	0	1		1	1	HamidRaza	237	LQ000251	1	0	1	f	f	-OUimODZkBcm44fWczQ1	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
177	Anil Anil	anil@anil.com	2025-05-27 12:23:10	$2y$12$j9.ByNMTbY/1wmCAGZDHSuqXLfL5OcI.IY8VNES9Kad9rZQw2yyP6	\N	2025-05-27 12:23:10	2025-05-27 12:26:44	\N	\N	971	564005097	\N	\N	1	\N	2	Male	6835af847d92b_1748348804.	2003-11-25	0	android	e11RTznXQxecp6vWgW2qEo:APA91bHxImYTvSkU5e6uxPYCPKyTTZlZ8RNmlqFOLGlJgWGT2PRaDt2LjNyqpwlrNKWJnia04iyi0w6nxVYhCSqerp5F6xD3P-M9wt0YUeWk2LTqSIzseH8			\N	\N	\N	0	1	46be1f95dcc59a924d563eb0217a6bd78b8b71b16e1a4b9310f13393bbe7fc2e	0	0	Anilnav	237	LQ000177	1	0	0	f	f	-ORGg_ksF_UWo4mkzfWQ	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
200	Rohan Khan	hibaejaz97@gmail.com__deleted_acount200	2025-05-30 11:24:09	$2y$12$H2lfZzivDfCslXKnxhOfjOLgoj67R7dYSueJSUKud2T1XdR5GdXVS	\N	2025-05-30 11:24:09	2025-05-30 12:23:54	\N	\N	971	561668577__deleted_acount200	1	3	0	\N	2	Male	68399577cee07_1748604279.	1990-05-30	0	android				\N	\N	\N	0	1		0	1	Rohan	169	LQ000200	1	0	0	f	f	-ORVvqXdNk5n1JqRBVxs	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
196	Tuaib Ahmed	tuaib@gmail.cim	2025-05-30 10:35:36	$2y$12$8xaPrFmRxoFulzNyoRPTluOsbt6I.AU.P4dOdNUnP7gc2AerrwJIm	\N	2025-05-29 08:36:27	2025-05-30 10:35:36	\N	\N	971	561660899	\N	\N	1	\N	2	Male	68381ca50f920_1748507813.	1990-11-28	0	android	dJzmE0kbRsK2cm4lsg6Kqb:APA91bGOKg0RHQKon6IYdT_4LVydsWjtldnewhWO7uVRjnI_85gXmX7A000Mtkvoa2AJD_KXVnajfzi73gWI9XReTEI4Ynw1FNZfLoR70d-lVfIzOKGO5Qc	\N		\N	\N	\N	0	1	93a96d5be6f865f5f25615afaf764be984744962daf39747bd5ffbfa3f524218	1	0	Tuaib	237	LQ000196	1	0	0	f	f	-ORQAsFXBrlZtwe9Xile	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
189	New user	user@dx.com	2025-05-28 17:41:44	$2y$12$n9YvBNzkuHIUtRzF/jRjw.BgZi.XViVfZ0v/.2m6WGB5F1c/bWhoS	\N	2025-05-28 17:39:51	2025-05-28 17:43:10	\N	\N	971	243464664	\N	\N	1	\N	2	Female	\N	2007-05-28	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	a5085175e44904c01d5c1d5346fe91d12a427299d4ef39e95c3e9ab071641641	1	0	User	237	LQ000189	1	0	0	f	f	-ORMyeGvdOGVYMxjzdSq	1	Hamid	razahamid34@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
237	Ali Zahid	mudasserzahid48+30@gmail.com	2025-06-05 12:29:19	$2y$12$YPr7NItz3jpQrIk8Xo9pC.bvgdq4h8qtmxIcVaEQaStCTdRQGYPPa	\N	2025-06-05 12:01:21	2025-06-05 12:30:16	\N	\N	971	321546798	1	3	1	\N	2	Male	68418766411e4_1749124966.	2000-08-08	0	android	dFJjM7eGS0-WaAMWyPtlzm:APA91bFvdIQoJiLCimXKQ6y6d8ukVahcvbU72NSwZ7bx_yLg7erNMpRUeAAI_wSVoZ-vRPyc8qxfdeHcEs-GVMmVzuBPg1x3YKMjOTXG0dKIGJ3Y1wohefk	\N		\N	\N	\N	0	1	b39eb5a3a07f6c90288dcfaa95e993930dda859e114d78d2aeb477c81d022521	1	0	Ali	237	LQ000237	1	0	0	f	f	-ORzxtqkWaSuk-Q63vWV	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
207	Mudassar Zahid	mudasserzahid48+24@gmail.com	2025-05-30 14:05:10	$2y$12$i3MS4hG1xCA.7agtPC1c8eXvIlf8uhscWVCLHak4EwkD9rnlUTCg2	\N	2025-05-30 14:05:10	2025-05-30 14:05:10	\N	\N	+971	1633481286	\N	\N	1	\N	2	Male	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	9d9d6eb90d76c1b1ed93064ce39595d35bb16ec185e1bcf9431a1c0756133da8	0	0	Mudassar	1	LQ000207	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
217	Ashok Mehta	ashok211@gmail.com	2025-06-03 13:24:33	$2y$12$v8S6nQqeMJwzeiZlt/4qkORj1qi/UN5qjZGpXRuVP/ZPUPd5GWWXS	\N	2025-06-03 13:20:23	2025-06-03 13:24:33	\N	\N	+971	9839143430	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	asdfasdfasdfasd	\N		\N	\N	\N	0	1	dcb96635340e0120988785b01bc4508408037bdc97a2fd733b2dd0f3c5fcfa27	1	0	ashokmehta	1	LQ000217	0	0	0	f	f	-ORpwoAEBI5oaDcdeN5l	0	aa	ewe@gmail.c	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
227	Auto	razahamid34+11@gmail.com	2025-06-04 16:55:03	$2y$12$/zJnjGEKmetd//9t7N5zNOEPUiLvatyvuTf1k2tphDBQJQkbTYRLS	\N	2025-06-04 16:55:03	2025-06-05 06:23:44	\N	\N	971	345467667	\N	\N	1	\N	2	Female	\N	2007-06-04	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	a3778af7e31024657f0488a906ec9fd2e6f6e7e61945114454bfd10ffa54e587	0	0	Refresh	237	LQ000227	1	0	0	t	t	-ORvrXJ4svVRGYIuIyT1	1	Hamid	razahamid34@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
172	Hamid	dx022@gmail.com	2025-05-27 06:46:12	$2y$12$T/KNtMh7dVI/RFW9EcG5nusdhoQXYTeS8F5.RZxGHzTAPrpnbEk.2	\N	2025-05-27 06:46:12	2025-05-27 06:46:16	\N	\N	971	344454646	\N	\N	1	\N	2	Male	\N	2007-05-27	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	272007ad572d820328d8c9d65d1499a5726fce5e20773f8abbfa1b75b89ed0eb	0	0	Raza	237	LQ000172	1	0	0	f	f	-ORFUSaFD08rfeCWnUd1	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
208	Test	testdxb18@gmail.com	2025-05-30 14:18:33	$2y$12$BgFRo7OPwjveRcGBP5SdDui1C7USjF7TumsrLPwKGbOj8Ua8w77Mu	\N	2025-05-30 14:18:33	2025-05-30 14:18:36	\N	\N	971	561660788	\N	\N	1	\N	2	Male	\N	2007-03-07	0	android	dJzmE0kbRsK2cm4lsg6Kqb:APA91bGOKg0RHQKon6IYdT_4LVydsWjtldnewhWO7uVRjnI_85gXmX7A000Mtkvoa2AJD_KXVnajfzi73gWI9XReTEI4Ynw1FNZfLoR70d-lVfIzOKGO5Qc			\N	\N	\N	0	1	2bf39b1c68d951c2993654c40dbeeee30ffa22d286c035735ffafc1f7952df54	0	0	Trster	237	LQ000208	1	0	0	f	f	-ORWYlFGW2-VV0Q0lQBI	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
158	Kareem Ahmed	hibadxba@hotmail.com	2025-05-24 07:45:47	$2y$12$FY/QayN26pOxALKYGmOKwuvDCvEO1etAFVMpfYXgfGD73y7cp/lP6	\N	2025-05-24 07:45:47	2025-05-24 07:47:28	\N	\N	971	561669874	237	\N	1	\N	2	Male	6831799012913_1748072848.	1991-05-24	0	android	dnZlOiHvS0CsltfExb8pTg:APA91bFvf8-MHTJkyweiRJMCSDQffuez1QHTXplVIuhIUTRqC_KFuFyJl4Rw-XRRVfLi6moJRLmUOMOU23DJAxnQesPz2CPn4j6yK4pJAPTpFgjiEQsSAOU			\N	\N	\N	0	1	8316ebbd3fc03a093001507442b63adffe25fceb452d91faaa0e5d667f0e5ae5	0	0	Kareem	\N	LQ000158	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
190	Mudassar Zahid	mudasserzahid48+20@gmail.com	2025-05-28 17:43:31	$2y$12$7hW2VGojXq9vEhuccYx2ROW8lDbGs5Uv.UAcwbKnWIR67pBiShbMC	\N	2025-05-28 17:43:31	2025-05-28 17:43:35	\N	\N	+971	1633481282	\N	\N	1	\N	2	Male	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	931ef45ac1b99305a1d9a93707708d852eb7e57c60c356fab09c2982c43f5c04	0	0	Mudassar	1	LQ000190	1	0	0	f	f	-ORMzV4HMWBjVeEV9xLf	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
168	Ashok Mehta	ashokmehta1234y@gmail.com	2025-05-27 05:09:50	$2y$12$N1M0vs2AgwDF1ZNhjOQHteAUxG1/UJVejvilsCBs7pFbu9dyPHBn.	\N	2025-05-27 05:09:50	2025-05-27 05:09:54	\N	\N	+971	98133343434	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	1231231			\N	\N	\N	0	1	73a505e0d00336092696e0638faa99b5952f7eecea1288b49e8dcf7a788da5d1	0	0	ashokmehta	1	LQ000168	0	0	0	f	f	-ORF8P5BtmvnrVPxFukU	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
184	Ariba Ahmed	ariba@gmail.com	2025-05-28 06:48:05	$2y$12$DcY4Tkb13r7LCkhzpbeteurs5d/3xreOm59Ai.SlqbXuAaWG7XJ2e	\N	2025-05-28 06:47:16	2025-05-28 06:48:05	\N	\N	971	561660144	\N	\N	1	\N	2	Female	\N	2000-08-29	0	android	dLmseM_4RoK4qQSvabmirh:APA91bHLxQYEYc4kIUfLX0oqDZUY2AUTtmDU2jKMjIJDH0vxcVXBThVpcQWjjE0FhARqWhijFcbEGOu2eA1yY7MqmTn7c3gN2eSBn3AM_uhBsy4ohNZqn9k			\N	\N	\N	0	1	be57af2174ab142657222a4af2ff71ebb5b28e7c622bcc9ee59da96c262b93c9	0	0	Ariba	237	LQ000184	0	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
178	Mudassar Zahid	mudasserzahid48+15@gmail.com	2025-05-27 12:45:50	$2y$12$2yZUjixlGLPWqLOigkOX4OTZQPluGsXntFxSJ3067JYW8imJW0TNC	\N	2025-05-27 12:45:50	2025-05-27 12:47:00	\N	\N	+971	1633481267	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	94f6931e64b594e7fae18fea45ac982599a165b49b129037ee48ed3b6d03e6ba	0	0	Mudassar	1	LQ000178	1	0	0	f	f	-ORGllghLzSAjvF2ueIY	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
218	Mudassar Zahid	mudasserzahid48+25@gmail.com	2025-06-03 13:25:57	$2y$12$6rbaUhEiFMe6VKX6IL/TJOHIrkY/0/OGq1BfxMdWRfHa20jGyaZQy	\N	2025-06-03 13:25:31	2025-06-04 07:19:54	\N	\N	+971	163348128	237	\N	1	\N	2	Male	\N	1994-05-25	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	bc249b91f2baa0f0f8e74b8da4ae4ca5be59059d669d7effc3cb0b1a626dce2c	1	0	Mudassar	1	LQ000218	1	0	0	f	f	-ORpxzNCYRv2CzvrU-TH	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
201	Zoya Noor	zoya@gmail.com__deleted_acount201	2025-05-30 11:34:19	$2y$12$4QkR0spUSz3JBtocNHPEu.keKDa/ebiotdUYa9ZINyXZK1QRnVJ1u	\N	2025-05-30 11:34:19	2025-05-30 12:25:38	\N	\N	971	561660874__deleted_acount201	\N	\N	0	\N	2	Female	683997da172e3_1748604890.	2000-05-30	0	android				\N	\N	\N	0	1		0	1	Zoya	237	LQ000201	0	0	0	f	f	-ORVyALnB9LEluz8beEy	0	Malik Sufyan	ajeshkumarcd@gmail.com	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
252	Hamid Ios	hamidios001@gmail.com__deleted_acount252	2025-07-11 10:36:01	$2y$12$wqICoOeoUJcyIZ/1yr1GVOOFYn5NRkIMGtcx6PwItsAaRtavRwYQy	\N	2025-07-10 06:19:03	2025-07-11 11:42:26	\N	\N	971	453636636__deleted_acount252	1	1	0	\N	2	Male	686f5b76b4939_1752128374.	2007-07-10	0	ios		\N		\N	\N	\N	0	1		1	1	hamidios	237	LQ000252	1	0	1	f	f	-OUmzBuhK8iJlpXQvTA-	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
238	Salam	salam@gmail.com	2025-06-06 13:04:38	$2y$12$bwdKB18lu/dpkbuQvGaCfe8fnix53dyspOcxhL3L8EIpA3WFFImKS	\N	2025-06-05 12:56:26	2025-06-06 13:05:33	\N	\N	971	225555555	1	1	1	\N	2	Male	684194651513d_1749128293.	1971-06-05	0	android	eyUYNRLlRsSPTORv-6g8yN:APA91bE4bG4rf0sMVGQp8-nrc4vPaRtXaTzX1DZMpw2Wqptkil6GP2SGDoHFyCbV8HfpcD3xeZ6dbhT-FkoMTNtQtvzarlLl56JlVjZlseEmEJUwaza7SXA	\N		\N	\N	\N	0	1	1107159cbc381e39dd64bcf28c9a0caef6f6f32a2709e3b5e6a17b4db15da153	1	0	Salm	237	LQ000238	1	0	1	f	t	-OS-9VpHVPg5f60gU3Ez	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
249	Anil	g@g.com	2025-06-28 13:01:59	$2y$12$enCGL4mDr45zzw1TfYMfGeulY2t9KYIDFb/ecxqxghLwe/C5gto3S	\N	2025-06-28 13:01:59	2025-06-28 13:19:34	\N	\N	971	546646646	1	2	1	\N	2	Male	\N	2025-06-28	0	ios	fcm_token			\N	\N	\N	0	1	3f54675dd27e705a19871b4db29ce0ae3cbc9ac3912bfba5869766c31a061739	0	0	Navis	237	LQ000249	1	0	0	f	f	-OTqcLE4cNASGXisI-JN	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
261	Hamid Raza	razahamid34+103@gmail.com	2025-07-12 12:03:11	$2y$12$RY8qmuptZhLNli2irRUiWe6YU57kZ35vuHMThZmrd..Quc6FcPoP6	\N	2025-07-11 15:11:30	2025-07-12 12:03:33	\N	\N	971	345467676	1	1	1	\N	2	Female	\N	1990-07-11	0	android		\N		\N	\N	\N	0	1		1	0	Nick name	237	LQ000261	1	0	0	f	f	-OUu1eERzX2WKaQzlNnb	1	Parent	razahamid34+104@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
270	Hamid	razahamid34+25@gmail.com	2025-07-13 15:22:32	$2y$12$9dsUfprz11IwxWkp8AyoLe1Rjjlerj4o7ZRcQZBhu88p4xtS092ya	\N	2025-07-13 15:22:32	2025-07-14 05:49:23	\N	\N	971	376767697	1	1	1	\N	2	Male	\N	2007-07-13	0	android				\N	\N	\N	0	1		0	0	Raza	237	LQ000270	1	0	0	f	f	-OV3NMJOmOZCyl83Ua99	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
179	Mahi Arora	hibaejaz79@yahoo.com	2025-05-29 18:10:47	$2y$12$CZ0mZN3AGHmxKkbDC40FGek4l/xwjc64P2p0nfirNnVf9xgnkYzHq	\N	2025-05-27 13:24:56	2025-05-29 18:11:04	\N	\N	971	561663270	1	1	1	\N	2	Female	6835bf0b04ca1_1748352779.	1998-12-30	0	android	dzrZ6KvSTR2jgwrr-TW293:APA91bGuu3tx7Qbm1l88xE4CHgeJ83fdwpo5iTnGg4cdofmgeio2LrtMv80WACHCM0NxBOCvT1ffIFZkSNyg9p3scSAaDJ1EcOs5UkomOIMsA3Ij5KLmGXk	\N			2025-05-28 09:55:07	0	0	1	35c34898c426e68f71c7213823074a2306364b65021ce91b2eecefe7d6c8da8d	1	0	Mahi	237	LQ000179	1	0	1	f	f	-ORGuiPOTqfyg_7xep6C	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
269	Hamid Raza	razahamid34+141@gmail.com	2025-07-13 13:59:36	$2y$12$O7z5a72vea1D.9FjMyL4KuwA8lcJ8ZTvYHr3Eoevp/7YKCZ4dP7vK	\N	2025-07-13 13:59:36	2025-09-20 07:34:49	\N	\N	971	376767667	1	1	1	\N	2	Male	\N	2007-07-13	0	android				\N	\N	\N	0	1		0	0	Raza	237	LQ000269	1	0	0	f	f	-OV34Ng7NTXQZTRChr2A	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	2	\N	\N	ID not provided	\N	\N	\N	0	4	\N
228	Werda Farooq	hibaejaz97+8@gmail.com	2025-11-10 13:01:57	$2y$12$cWk7PeG5G9Na6ospt9vQ1eTkFJrjnV8Uc5jtne1b92mcc5hrYkQD2	\N	2025-06-05 06:21:47	2025-11-10 13:01:57	\N	\N	971	569788454	\N	\N	1	\N	2	Female	684137a7d9eb9_1749104551.	1995-06-05	0	android	daWfr6VJS9eKlGA4eW_ic2:APA91bE3wqaMEiVx9rQ4QdcIETWf8NLUmC0yhGPik9n-GvpgcxOb7QYF9aTG4-wPe1y3a4qwYaVL32QM21ZnjuPCSknN5Ckzaf2qFc3yK7gvJF5MmP6eSww	\N		\N	\N	\N	0	1	85a12f39e90a3c9761abfa43155aa5d22ffcd49cf09c70b76b9d9dd38db86df4	1	0	Werda	237	LQ000228	2	0	0	f	f	-ORykAj0dLjOIjxwCvCt	0	Farroq Ahmed	hibaejaz97+9@gmail.com	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
91	Vella Bradtke	ellsworth.klein@example.com	2025-05-28 09:45:04	$2y$12$x5cdfCEx/ii..ctJYLFwNO.wE6vryW.ov5KG/SwaWRt1rKLFnwNce	\N	2025-05-23 10:22:14	2025-05-28 09:45:04	\N	\N	+971	389534890	8	\N	1	\N	2	Female		1978-01-12	1	\N	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N	\N	\N	\N	\N	0	0	efe28249c10038ea7bc501f8a40d0e41aec1025bc72744c8cd926341a12ce152	1	0	Sarah Block	\N	LQ000091	0	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
169	Hamid	razahamd34@gmail.com	2025-05-27 05:15:33	$2y$12$KV2y/l5Ug1ikQiKt3.HrjOncienQdMu.VvMn2ob5SRr37KUQg0Hj6	\N	2025-05-27 05:15:33	2025-05-27 05:22:53	\N	\N	971	365255555	\N	\N	1	\N	2	Female	68354c2ccc538_1748323372.	2007-05-27	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	c36f493a3882db6d96644cb4097a5746b36249c0214c51d1917c8750569e3ccd	0	0	Raza	237	LQ000169	0	0	0	f	f	-ORF9hjhbgDburyt_yvE	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
253	Anil	ans@ans.com__deleted_acount253	2025-07-12 05:12:54	$2y$12$ZOGiuRwPRj3jWkiIot6hZuS/TOLBcm/zSTRIt4wA2B3dlykGFYge6	\N	2025-07-10 14:34:32	2025-07-12 05:28:09	\N	\N	971	546645668__deleted_acount253	1	1	0	\N	2	Male	686fd0a7137ba_1752158375.	2025-07-10	0	ios		\N		\N	\N	\N	0	1		1	1	Navis	237	LQ000253	1	0	1	f	f	-OUokb6idf6MqxvA0z3J	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
219	Sara Sara	sara2@gmail.com	2025-06-05 06:58:04	$2y$12$c8RQVGVGwvbAlWuKJs3sUeM0SVi.PtHxH5HDKV4hFd1RNdjLEO/kS	\N	2025-06-04 06:45:50	2025-06-05 06:58:04	\N	\N	971	568568666	1	1	1	\N	2	Female	683fec4a28159_1749019722.	2007-03-07	0	android	esn0ZJA8SOW3IZDC-EFCop:APA91bGKqg_0Thb0Ld7bOnvI97_WMAKDnzje9nZocuOaz9crTuD-Z8bU49ZSOrX0-h5FFYJu38TcXL5rW3mECJ-xG-vQnKCOSKMegNsuqacfhYxdYYjvayg	\N		\N	\N	\N	0	1	d5c3e79073f3474fb12744222f7d8bc0733f799b7381650fcc98eccea6d3799c	1	0	Sara New	237	LQ000219	1	0	1	f	f	-ORtg5Kzy7quynXk25tg	1	Sara mother	anil@dxbusinessgroup.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
209	Marital status	razahamid34+1@gmail.com	2025-05-31 09:08:40	$2y$12$UuiZD.hPHkl5QyNW3GH7z.l8GN/ipGg3uC7nf9cBMGwSVpXjqCKJe	\N	2025-05-31 09:08:40	2025-05-31 09:09:46	\N	\N	971	345427575	1	1	1	\N	2	Male	\N	2007-05-31	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	fda5e9e0feb6cd628c0c76bbeab7cb702aa52af4be5922e98c02dd6a9280092b	0	0	Check	237	LQ000209	1	0	0	f	f	-OR_aQdUOJyCPBP5Ym83	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
191	Gender dress	dress@dx.com	2025-05-28 17:51:05	$2y$12$W8xk3Qw/G1F1yxX46Ushxu6WfesQQTbKR20YsOuHUQkqfxWHoHtbG	\N	2025-05-28 17:51:05	2025-05-28 17:52:07	\N	\N	971	346464676	\N	\N	1	\N	2	Male	\N	2007-05-28	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	19daebf028a169027212e5d8f0fadb46be4c9e5491c7d741eb071d6f69945722	0	0	Male	237	LQ000191	1	0	0	f	f	-ORN0DrzcId-ZSrbheRm	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
239	Salman	salman@gmail.com	2025-06-06 12:19:31	$2y$12$cncIdavhG6Bo47828vluRevkCYBCdSaMPo7lsjUYOj7NHH8/SOAmq	\N	2025-06-06 03:32:30	2025-06-06 12:19:31	\N	\N	971	987654321	1	1	1	\N	2	Male	68428eca8fc78_1749192394.	2006-04-04	0	android	eyUYNRLlRsSPTORv-6g8yN:APA91bE4bG4rf0sMVGQp8-nrc4vPaRtXaTzX1DZMpw2Wqptkil6GP2SGDoHFyCbV8HfpcD3xeZ6dbhT-FkoMTNtQtvzarlLl56JlVjZlseEmEJUwaza7SXA	\N		\N	\N	\N	0	1	d464ef6a9f605b5d39c3d52fcf5b984abe80aae946dbad70d75e4f24444ef8f4	1	0	Khan	237	LQ000239	1	0	1	f	t	-OS2I0mA5gPAnBh0_obI	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
271	Hunain	abc@abc.com	2025-07-13 20:16:01	$2y$12$DwiL3Ckj3AIYznraCGsDLe.4J0t09D7Uk8CphDzfF6oUXu0GV5vey	\N	2025-07-13 20:16:01	2025-07-13 21:18:54	\N	\N	971	545646642	1	1	1	\N	2	Male	687414a761f46_1752437927.	1992-07-13	0	ios	e3rUQ9EzvEV_v4Z9fN3Bki:APA91bEqX3kxtHGeCxUQW86uxuFlnsqOSxnrZ9zl7lgoT-5dgNjGtOn2ON9BvydzROqX1xH0XY4rU_CU7o39pB8zM9HY547lQy6rbvHCzCF5J6OcGkxZ68c			\N	\N	\N	0	1	1f0866a36fde2ffbd87f4e8475d58b0f0416b5fc17ca9df565e6f9a77755f5ef	0	0	Ahmed	5	LQ000271	1	0	1	f	f	-OV4QXWV-y5-uXJZo6b7	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
170	Mudassar Zahid	dx1001@gmail.com	2025-05-27 05:42:18	$2y$12$u/Q2oMdRfBVpAuhBSccf5upavr5WY/uBCvQThu7CbSou9gpvf639u	\N	2025-05-27 05:42:18	2025-05-27 05:42:22	\N	\N	+971	55555555	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	1231231			\N	\N	\N	0	1	fd348f3d209c35e9fbbdc986bc096a26fb9c6c7713b52828fd5eeda60291e750	0	0	Mudassar	1	LQ000170	0	0	0	f	f	-ORFFpkfDtePNBDc2k8N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
230	Ram	ajeshkumarcd@gmail.com	2025-06-11 08:00:51	$2y$12$14ocbV0yJriaJTg9qL0ld.mKv0Ecj40N83R9IJNkvOQ17M8ptEbba	\N	2025-06-05 07:01:06	2025-06-11 08:00:51	\N	\N	971	505041860	1	1	1	\N	2	Male	684140fe039bd_1749106942.	1987-06-18	0	android	fn_nBrA9TdW_zjiV_XxZgJ:APA91bG1RaECCOsT9xWJ1tcYgf6STS7Ie7qtt1w1_u24d0A_gIRuZ7ospQfstZbhXn6k8XbyfGZgII1Ya1zQds3kmLSviZNvpO04QADFcZU-snSXSYQ7kVo	\N			2025-06-11 08:00:07	0	0	1	b6f96ff5a34759c17cd281e7417f5e7893e16bca2c11dfa55a2fdd90e26709b0	1	0	Ramkumar	237	LQ000230	1	0	1	t	t	-ORytAki6siBSr2HxyMm	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
203	Mudassar Zahid	mudasserzahid48+21@gmail.com	2025-05-30 12:31:18	$2y$12$7xROyzyyIWZy4l98Vu/fSOLtl1AjALhQpl.ShWV/1/tIcJiJNtSWm	\N	2025-05-30 12:31:18	2025-05-30 12:31:21	\N	\N	+971	1633481283	\N	\N	1	\N	2	Male	\N	1994-05-25	0	android	asdfasdfasd			\N	\N	\N	0	1	057bb71ce386081ecbe63228570bb12380057422193ea108a63a8fc2fa4f8632	0	0	Mudassar	1	LQ000203	1	0	0	f	f	-ORWACztEsaMPDJvFCiE	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
78	Leora Gibson	rlindgren@example.org	\N	$2y$12$.W2x6c7.emNefSGbN5CjyeCBa3y9Gr155mE4/jHU7Mx4BUQYw.8rO	\N	2025-05-23 10:22:10	2025-05-23 10:22:10	\N	\N	+44	553946877	10	\N	1	\N	2	Male		1976-06-28	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Jeramie Wisoky IV	\N	LQ349652	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
192	Gender dres	female@dx.com	2025-12-30 09:32:49	$2y$12$xfLh9zGbTkvsbrpD0GE2seONtQUIBovNs1wx.zjuRLg3n1dn.4lAu	\N	2025-05-28 17:53:13	2025-12-30 14:35:58	\N	\N	971	346646499	\N	\N	1	\N	2	Female	68419a5d79ad0_1749129821.	2007-05-28	0	android		\N			2025-11-14 18:29:06	0	0	1		1	0	Female	237	LQ000192	1	0	0	f	f	-ORN0iJ78NapMPNFSrZg	1	Hamid	razahamid34@gmail.com	1	3	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	1	3	#C4946E
202	Rohan Khan	hibaejaz97+1@gmail.com	2026-01-08 09:16:28	$2y$12$K9ilKwVq/GNhssfx.cOZVO0qwnjXee9TyD0eSvdX.SAUteoenZiRS	\N	2025-05-30 12:28:12	2026-01-08 12:41:03	\N	\N	971	563224788	1	3	1	\N	2	Male	6839a48da6645_1748608141.	1990-06-20	0	android		\N		\N	\N	\N	0	1		1	0	Rohan	169	LQ000202	1	0	0	f	f	-ORW9VdCNPyGppIKv3fU	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	1	4	\N
220	Female	razahamid34+4@gmail.com	2025-06-04 07:07:31	$2y$12$8uEEWIpnG3zZvJhdAi7HJO83c6GaC.cn13hXQAAioCz0QbM/vaP6y	\N	2025-06-04 07:07:31	2025-06-04 07:09:48	\N	\N	971	346454545	\N	\N	1	\N	2	Female	683ff0cd3dc80_1749020877.	2007-06-04	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	89ad097d3fb70900fcae15a3c582eb33708385c08ec790fed4c05d5ccede2f82	0	0	Reject	237	LQ000220	2	0	1	f	f	-ORtl2ow53h8XyqIBegm	0	Hamid	razahamid34@gmail.com	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
254	Azad	azad@azad.com	2025-07-11 11:23:07	$2y$12$NEcigfbE/5mazs//IFjW2uGomG6VnW9in4Ts7rNh5qDFTHMWoMI5G	\N	2025-07-11 11:23:07	2025-07-11 11:51:56	\N	\N	971	546466489	1	1	1	\N	2	Male	6870f44567dcd_1752233029.	1985-07-11	0	ios	fcm_token			\N	\N	\N	0	1	2c3d97396aa7fd6611943473b24633ef8d6ebb9b94a7a0355723d6eaf0f96a82	0	0	Azad	237	LQ000254	1	0	1	f	f	-OUtDNxcRnSjXKDzQsqv	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
240	Abdulla	abdu@gmail.com	2025-06-06 11:35:23	$2y$12$JWwJrojegP4t14mDN5wix.zTLoyxpi/puXM5/tclrc04Fw9.gUWia	\N	2025-06-06 11:35:23	2025-06-06 12:02:20	\N	\N	971	562852369	1	1	1	\N	2	Male	6842d2c1c24c5_1749209793.	2006-06-01	0	android	fyFw4bu8TzOcTlzWIheNtP:APA91bHGjnC0jW5DRfXS0IcgJSSbfQ_D_F6-nI0C2P3tnp-HwqyRQAQ9nFoNztzUZxoT_ZcvebupkJenTfp54XYsoofeXq1GIQHKuXcmlUF2OnBWsTEIQCI			\N	\N	\N	0	1	43505bdd555236c730415cdb2cdf89471b07d9bc1995d2c4aa2b3f7ab2906f08	0	0	Abdulla Nick	237	LQ000240	1	0	1	f	f	-OS40YHI0UIliljc607s	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
263	Parveen Khan	hibaejaz97+17@gmail.com	2025-07-13 11:02:20	$2y$12$7kz73YWL4cT6/1pX1dWoR.JscMM5nvIWgPmkaZPBiJ5rDiMeVMIHe	\N	2025-07-12 08:26:56	2025-07-13 11:07:26	\N	\N	971	561663258	1	3	1	\N	2	Female	68721c7bc5fdd_1752308859.	1990-07-12	0	ios		\N		\N	\N	\N	0	1		1	0	Parveen	169	LQ000263	1	0	0	t	f	-OUxjdsT4c7B3LExtG68	1	Khan Sahab	hibaejaz97+18@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
171	Hamid	dx020@g.comail.com	2025-05-28 09:54:07	$2y$12$o2EHiK8XrACLEt9S4u7Hr.CwBd8ZyqVXMF9bRSDR4vHMwfCP7IQPu	\N	2025-05-27 05:53:43	2025-05-28 09:54:07	\N	\N	971	355555555	\N	\N	1	\N	2	Female	\N	2007-05-27	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	9585e5b905e7cdfb0eb5e99665e60d4ce2c46a4fa9376529c81fb526c36d1056	1	0	Raza	237	LQ000171	0	0	0	f	f	-ORFIRwouYH9MwJGZBBA	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
161	Mudassar Zahid	asheok221@gmail.com	2025-05-26 09:53:26	$2y$12$GX.kmifuGUJHRtt1PUJlMu72QYeJHbvukAD.fN1rgTviR1KOhA726	\N	2025-05-26 09:53:26	2025-05-26 09:53:27	\N	\N	+971	163311410271	\N	\N	1	\N	2	Female	\N	1994-05-25	0	android	1231231			\N	\N	\N	0	1	fd48e6c0d55c4c598413fd07478428268a43aae6a0de944e649252ae597651a0	0	0	Mudassar	1	LQ000161	0	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
241	Ali	ali@ali.com	2025-06-06 14:34:47	$2y$12$wCNQOfjo5qr4NFwY45Fk7eEshz7Cs3aWX7.U4tVWeLkQe747f2vbm	\N	2025-06-06 13:57:11	2025-06-06 14:34:47	\N	\N	971	456434864	1	1	1	\N	2	Male	6842f3e4ab6a8_1749218276.	2006-07-03	0	android	e8JRgsP8SnWDsNK1DTSpp-:APA91bHQcV5aVcIhooV_H0i4vhffwceaR9MFTLBioWWFfhplmwzIHOSluUo5Qea1d3-WbXwgDKHAReD7yaZJlLsivlnzGgOAQvsKrkm9g87hcuPH4tXkwQA	\N		\N	\N	\N	0	1	3feb6126b58919698d3d79d1eae69823956a3703ca05211fe9362155f160fcec	1	0	Ali ali	237	LQ000241	1	0	1	f	f	-OS4X-NVe5iJmFw9fCQg	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
211	DX HAMID	dx101@gmail.com	2025-07-13 14:02:49	$2y$12$Ug1tyBSQHEFZh4.tcXlvIu6GsqmW86uCX4L5Zw3id.qI9U2Fwn0ma	\N	2025-05-31 16:42:24	2025-07-13 15:20:35	\N	\N	971	346457557	1	1	1	\N	2	Female	683b319f9eca2_1748709791.	2007-05-31	0	android		\N			2025-07-12 12:07:45	0	0	1		1	0	Dx	237	LQ000211	1	0	1	f	f	-ORbDH7ww3D756BqV4vY	1	Hamid	razahamid34@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
255	Hamid	hamidios001@gmail.com__deleted_acount255	2025-07-11 11:54:10	$2y$12$FwNP4LmgujCyb6uUKHoH5uKQ1Rysx2MlgDHyasmXBirtuirQpvUdu	\N	2025-07-11 11:44:15	2025-07-11 14:39:29	\N	\N	971	343422223__deleted_acount255	\N	\N	0	\N	2	Male	6870f93587eec_1752234293.	2007-07-11	0	ios		\N		\N	\N	\N	0	1		1	1	Razahamid	237	LQ000255	1	0	1	f	f	-OUtIDM6JGW45iB6EQRQ	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
231	Sara Mohammed	sara123@gmail.com	2025-06-05 07:48:26	$2y$12$4WMWZsLJztdPpk8CZWwhtec6DFt0ubiSw4DTkHFB.XfrCUOm1hgT.	\N	2025-06-05 07:45:09	2025-06-05 07:55:47	\N	\N	971	555555555	1	1	1	\N	2	Female	68414b49a39bc_1749109577.	2006-12-06	0	android	esn0ZJA8SOW3IZDC-EFCop:APA91bGKqg_0Thb0Ld7bOnvI97_WMAKDnzje9nZocuOaz9crTuD-Z8bU49ZSOrX0-h5FFYJu38TcXL5rW3mECJ-xG-vQnKCOSKMegNsuqacfhYxdYYjvayg	\N		\N	\N	\N	0	1	c81f891cb88bab315f25e47bc77193c461f5d5a6d8f5dd70d2452690caa2eefe	1	0	Saram	237	LQ000231	1	0	1	f	f	-ORz2FwFvf076Ega6H3p	1	Mohammed	anil@dxbusinessgroup.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
221	Zainab Khan	hibaejaz97+5@gmail.com__deleted_acount221	2025-06-04 07:25:09	$2y$12$qOXo/Q57q2oE.QPmQrogSuXREn/GFDlgc0QiUbjDJEnfoLu1Cf6Ja	\N	2025-06-04 07:21:52	2025-06-04 07:38:20	\N	\N	971	561669844__deleted_acount221	\N	\N	0	\N	2	Female	683ff42f78d6b_1749021743.	1995-06-04	0	android		\N		\N	\N	\N	0	1		1	1	Zainab	169	LQ000221	2	0	0	f	f	-ORtoLFlKEOvYHwUHmOT	0	Mk Khan	hibaejaz97+6@gmail.com	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
162	Hamid	dx010@gmail.com	2025-05-28 06:01:56	$2y$12$vabS2SvVct7Y32qxkQYT2.OjyaKrNV9RDmeHok2bcukgSYUutNki.	\N	2025-05-26 20:26:37	2025-05-28 06:01:56	\N	\N	971	344156258	\N	\N	1	\N	2	Male	\N	1996-01-12	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N		\N	\N	\N	0	1	017e265af95937aeb18c86c1242c8a4a2d6bbe0093c42af94c875bbeec77aa64	1	0	Raza	169	LQ000162	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
212	Muhammad Mudassar Zahid	mudasserzahid48@gmail.com	2025-06-06 06:47:49	$2y$12$x6YSySs61TS8T8Qfng5Qy.9qYlR2X9HNQk9NlE/7BaJyYfBGLs4T2	\N	2025-06-01 17:22:19	2025-06-06 14:27:37	\N	\N	971	123456789	1	1	1	\N	2	Male	\N	1994-05-25	0	android	asdfasdfasdfasd	1111		\N	\N	\N	0	1	00d4cab39a3da06e37fdbe5f528d4e5b20b9a52f58dab957c2df1423bbf0dd76	1	0	Mudassar	237	LQ000212	1	0	0	f	f	-ORgW-fMGC2jx0G9PMmL	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
272	Harry	hibaejaz97+23@gmail.com	2025-12-31 08:41:43	$2y$12$yi7XOM7meWYdQVfWne38t.ysHa3i9A16PDuJ5OyuavCNZmHkQGRoW	\N	2025-07-13 21:01:37	2025-12-31 08:43:11	\N	\N	971	561660175	1	2	1	\N	2	Male	68741effac4ac_1752440575.	1986-07-13	0	ios	dTu3Uz8GS-CJNNXwPgl8Vc:APA91bF4P9u21hvIehBlb9VoyJyFSubOxIyyYpZVZ8Tukqm4k2KK85v8dRMImIwIvh_bcIdLJmrMLH0H8Y51F1vwItGnZfJ3B1AnyE2dY_Dh7KpNPvf9SyA	\N		\N	\N	\N	0	1	176ca4f325ed1d5ded704062c9fff915d8a37fb30a8f7c552056b2c5c20c8ecf	1	0	Potter	237	LQ000272	1	0	0	f	f	-OV4_yTDj07IXHZ2piOT	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	1	2	\N
232	Prefrences	razahamid34+12@gmail.com	2025-06-05 09:05:16	$2y$12$ZsiIVvA6xjkJz7h8nnN6YO7D14PGx0Dre74SzZD0lyBGBk/PXSlVW	\N	2025-06-05 08:06:47	2025-11-14 18:23:31	\N	\N	971	646466767	1	1	0	\N	2	Female	684151a506326_1749111205.	2007-06-05	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8	\N			2025-11-14 18:23:08	0	0	1	94f3f291da04d60641cf3dc75ee3be128166a55121664f9381344b5898f07c74	1	0	Pref	237	LQ000232	1	0	0	f	f	-ORz7CufU-ZaGMCVSqok	1	Hamid	razahamid34@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
222	Mudassar Zahid	mudasserzahid48+123@gmail.com	2025-06-04 07:39:03	$2y$12$a6RxPgnYO79H2eD58MF78.f5DQ0KCpJSV5YiI9XqbkqwOq10IIQsO	\N	2025-06-04 07:39:03	2025-06-04 10:18:08	\N	\N	971	123456980	1	1	1	\N	2	Female	\N	2007-06-03	0	android	c8Pf9Q9GSNutFfCNEMIwG2:APA91bE0hK83ppl2Mb19NS7yCQLp12fFwE4Euhbs4oU1kWPJ9AlWZbD1o5XRaXeN84YZLgchGSsjhPvLCUtuxwR8nETPT6zS1BY8wNmEkweHPSkiuhIqh6k			\N	\N	\N	0	1	70c5de27bba9643170d9ebc90cc945808c4c5ce35c8a2ac686fde28d3ec903ec	0	0	Mudassar	237	LQ000222	1	0	0	f	f	-ORtsGqUwyQCteRzCJ8v	1	Zahid	mudasserzahid48@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
256	Aisha	aisha@aisha.com	2025-07-11 13:23:26	$2y$12$H7.cvdjVJcaC/x549yPBpORovlUReaH66BVqnJnCtHk969J0BQ8.q	\N	2025-07-11 12:03:07	2025-07-11 13:23:26	\N	\N	971	512433485	\N	\N	1	\N	2	Female	6870fd9dcb86a_1752235421.	1992-07-11	0	ios	fcm_token	\N		\N	\N	\N	0	1	126748abbe2fb05fdb005b0f544fedea8227ba3bb97a1e0503f5b5f4e00221c3	1	0	Aisha	237	LQ000256	0	0	1	f	f	-OUtMXhRgQP0bCME_5ef	0	Anil	anil@dxbusinessgroup.com	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
242	Akbar	akbar@akbar.com	2025-06-07 12:04:36	$2y$12$tmKnfqmJhAt.Mam5WZ2XCuKgDmv6.Un4xeY0Ypp7NBtWHLTNcQBIW	\N	2025-06-07 12:04:36	2025-06-09 10:17:36	\N	\N	971	546468461	1	1	1	\N	2	Male	68442afbe555e_1749297915.	2006-06-06	0	android	e8JRgsP8SnWDsNK1DTSpp-:APA91bHQcV5aVcIhooV_H0i4vhffwceaR9MFTLBioWWFfhplmwzIHOSluUo5Qea1d3-WbXwgDKHAReD7yaZJlLsivlnzGgOAQvsKrkm9g87hcuPH4tXkwQA			\N	\N	\N	0	1	cf50c473f026842ae22bc8eeed8b4fbe2413e28b50164dc92f7ef11888267a01	0	0	Akbar ali	237	LQ000242	1	0	1	f	f	-OS9Gov90HWWKFbPtdRp	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
265	Hello	razahamid34+110@gmail.com	2025-07-13 12:53:08	$2y$12$hSAqi/m.wxJsiaGLYZlgS.lEOML5OoCu4gOL/ccNjQ3bEVrWI5rzC	\N	2025-07-12 08:55:36	2025-07-13 17:32:02	\N	\N	971	645757575	1	1	1	\N	2	Male	\N	2007-07-12	0	android	fWGUdaAe3UNmjJHQ71bpSE:APA91bGIWN3hrvudJBQfFwj4wWTpHyYYbAL68SxSdDHEBI7kQmNONAqj_k3tPjmEaa6w0X5cxxGZUR4zqHKqXSjQ3hQzn44Y_wtgwYHXZ0PVuKKBXTdywvw	\N		\N	\N	\N	0	1	74849dcc351053bf2e4a951165c4ae276eb5a1d11d22c4790ce7ece92b1b9fa7	1	0	HamidRaza	237	LQ000265	1	0	0	f	f	-OUxqCmmIvhLqdiWJNG5	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
57	Mrs. Loraine Gislason DVM	friesen.jake@example.net	\N	$2y$12$Shs0LZLHYm7naO82s98rKO3iFKU/fYSk9HQCzuWPkdZ9xopGQqs2a	\N	2025-05-23 10:22:03	2025-05-23 10:22:03	\N	\N	+44	891354776	36	\N	1	\N	2	Female		1986-09-22	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Tracy Beer DDS	\N	LQ472371	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
58	Zakary Rowe	jillian73@example.org	\N	$2y$12$9tNGv6Ldq5q38.wk0s97.eng.CVTUQfPPsy5qAStiUqHz59QVbiUS	\N	2025-05-23 10:22:04	2025-05-23 10:22:04	\N	\N	+91	34482261	102	\N	1	\N	2	Male		1983-02-07	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Alverta Stiedemann	\N	LQ84065	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
59	Murl Dare	lrunte@example.org	\N	$2y$12$XEc/BGpKqzh8Yz5/tzFUxevwFq8CjmByNL/mNTsnq2rtITqQSImAm	\N	2025-05-23 10:22:04	2025-05-23 10:22:04	\N	\N	+91	259531850	174	\N	1	\N	2	Female		1971-10-15	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Gretchen Bailey	\N	LQ597476	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
60	Broderick Marquardt	vkeeling@example.com	\N	$2y$12$XIGXDybknYh7z9e7LvoNoeTboIF0la0ZG.QgqhrdvzBd9siPlCiJm	\N	2025-05-23 10:22:04	2025-05-23 10:22:04	\N	\N	+1	175191583	11	\N	1	\N	2	Female		1975-04-26	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Annabelle Ebert	\N	LQ865657	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
61	Jaclyn Lind	jacobi.ramiro@example.com	\N	$2y$12$DcTSAGIZ/7gSm78mWfFrGuzyzE31ZJD5N/g0Xz43LX8FmIhKfsQXW	\N	2025-05-23 10:22:05	2025-05-23 10:22:05	\N	\N	+91	70731431	53	\N	1	\N	2	Female		1991-12-15	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Osvaldo Pagac PhD	\N	LQ806256	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
62	Dr. Amir Goodwin Sr.	friesen.patience@example.org	\N	$2y$12$1trQlNxP1hf2i1eYUIy0ieF4HsutCg0zfwBYjHi/vVLg/zkeW2rmm	\N	2025-05-23 10:22:05	2025-05-23 10:22:05	\N	\N	+1	909649524	131	\N	1	\N	2	Female		1984-05-01	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Lazaro Nienow	\N	LQ815958	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
63	Antonetta Kirlin PhD	ndickinson@example.org	\N	$2y$12$AK0JraaRCqvOd4IK3V8.C.tvLfWpi9jA9hmJ5xqAaOVv12k.WsdDm	\N	2025-05-23 10:22:05	2025-05-23 10:22:05	\N	\N	+1	482238379	108	\N	1	\N	2	Male		1999-07-03	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Hardy Lindgren	\N	LQ290185	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
64	Mr. Freddy Kunze	afeil@example.com	\N	$2y$12$SzMvj.wrNt9k6a/ZvRsN.e8yqVLFzbNFjHBo1NGsp.epDdoT0JYX.	\N	2025-05-23 10:22:06	2025-05-23 10:22:06	\N	\N	+91	787902288	53	\N	1	\N	2	Female		1977-11-26	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Daron Wisozk	\N	LQ606906	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
65	Miss Addie McDermott I	medhurst.icie@example.com	\N	$2y$12$Y2IrAGn7abd8/Ih1J9s3Ju/09lDJbrbEyhuV4bm7L.cDOOkjFC8CW	\N	2025-05-23 10:22:06	2025-05-23 10:22:06	\N	\N	+1	225454387	110	\N	1	\N	2	Female		1993-09-19	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Ayana Ward	\N	LQ599209	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
66	Miracle Toy	cassin.marcos@example.com	\N	$2y$12$kH9.mRXDqfwuto8rYM2j/O3Xr8rXxW1t5VCPYjQWBfr24gFgD1gS6	\N	2025-05-23 10:22:06	2025-05-23 10:22:06	\N	\N	+91	832828940	115	\N	1	\N	2	Male		1981-05-05	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Maverick Schultz	\N	LQ714961	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
67	Lonny Nitzsche	royce87@example.org	\N	$2y$12$5XDFEO//shW9ucLJFd7wbucuiFOYGfqgQyqAnRZgJ3p3ETDP/kya6	\N	2025-05-23 10:22:06	2025-05-23 10:22:06	\N	\N	+91	534417358	74	\N	1	\N	2	Male		1977-05-19	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Margarita Littel	\N	LQ28946	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
68	Lemuel Considine	stokes.esperanza@example.com	\N	$2y$12$jOir94GagovJAW4PuHKJV.PTgxKlzuKL6S4AJZNrzBCx3Y.8.gyka	\N	2025-05-23 10:22:07	2025-05-23 10:22:07	\N	\N	+91	837676741	91	\N	1	\N	2	Male		1999-02-12	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Charley Von	\N	LQ330734	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
69	Dr. Claudie Daugherty	hand.ivah@example.com	\N	$2y$12$arDJ.Ze7j3MeMn.s9XtjD.luIzbw6eC3d77or/KLs0spKNUOsjP4y	\N	2025-05-23 10:22:07	2025-05-23 10:22:07	\N	\N	+1	588473445	156	\N	1	\N	2	Male		1983-06-26	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Rashad Carter IV	\N	LQ753597	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
70	Ole Leffler	elsie.hamill@example.net	\N	$2y$12$A/65Hond8Kwo/rxbROLJm.csKIr.T8l/dfaBAd0GPXGuwOfImjcuG	\N	2025-05-23 10:22:07	2025-05-23 10:22:07	\N	\N	+1	721771460	72	\N	1	\N	2	Male		1972-08-19	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mrs. Rosalyn Hamill MD	\N	LQ298312	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
71	Luis Lindgren	lblick@example.com	\N	$2y$12$sQVIv.zZzPtta3Nd3QG2EuNJIda/B6EFhm8Zs1DXSyIaJgDNylSuu	\N	2025-05-23 10:22:08	2025-05-23 10:22:08	\N	\N	+91	906288035	16	\N	1	\N	2	Male		1990-03-09	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Prof. Beatrice Littel	\N	LQ429777	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
72	Mrs. Hassie Lebsack PhD	fmckenzie@example.com	\N	$2y$12$iqA1m33CaLGJLi/VYEPSVO6ChD86ycFMvyCZ5/oVvv2jAybC6QUSi	\N	2025-05-23 10:22:08	2025-05-23 10:22:08	\N	\N	+1	944443105	135	\N	1	\N	2	Female		1998-07-17	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Trystan Okuneva	\N	LQ680821	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
73	Chris O'Conner	chelsie64@example.org	\N	$2y$12$hYYydHSnbl7vVpfHRn5caezv9iucbUr2BwYogYFbOVNAsyiO9cJwK	\N	2025-05-23 10:22:08	2025-05-23 10:22:08	\N	\N	+1	663452539	118	\N	1	\N	2	Female		1984-12-08	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Benedict Powlowski	\N	LQ917619	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
74	Dorris Cole	ymurazik@example.com	\N	$2y$12$GdLInaR1NNM4hnH1FRssJ.EqiWvucZuXSX5RGmtm9w81xCDKkGkh.	\N	2025-05-23 10:22:09	2025-05-23 10:22:09	\N	\N	+1	721838720	13	\N	1	\N	2	Female		1991-12-12	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Darlene Grady	\N	LQ561425	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
75	Kareem Bernier I	mbashirian@example.com	\N	$2y$12$hj5sWGEF/Bzwte.yRHd.PeOjXBbjF2CEA6m4YgAk7r0AmktV0xR0G	\N	2025-05-23 10:22:09	2025-05-23 10:22:09	\N	\N	+91	238656019	41	\N	1	\N	2	Male		1981-08-30	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mr. Dewayne Kilback	\N	LQ232100	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
76	Ms. Elena Goldner III	chelsie89@example.com	\N	$2y$12$hDEjCgB7w9kfJYDx1OrcNOFVulmZ5ULgs/xjdKvJrZ7BUajiLSkWy	\N	2025-05-23 10:22:09	2025-05-23 10:22:09	\N	\N	+91	828945787	7	\N	1	\N	2	Male		1999-01-09	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Orval Feest DDS	\N	LQ424292	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
77	Stanton Zulauf	hudson.krajcik@example.net	\N	$2y$12$eOcheMydtIas00kFXcUi4OM.Vs5dwsFIbnOHJyHI7c2n4EA/cTp/e	\N	2025-05-23 10:22:09	2025-05-23 10:22:09	\N	\N	+44	667704865	133	\N	1	\N	2	Female		1977-10-30	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Riley Langosh	\N	LQ433901	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
80	Sylvia Gusikowski	garrick.abshire@example.org	\N	$2y$12$Rcxr16z6QzimBAoUDChjse7sRHy7MP7uQL5WRgU8Y8GuEeEonfqT6	\N	2025-05-23 10:22:10	2025-05-23 10:22:10	\N	\N	+1	24332503	117	\N	1	\N	2	Female		1987-01-31	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Koby Runolfsson	\N	LQ541425	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
81	Isai Jerde V	nkrajcik@example.com	\N	$2y$12$DEapfZ6dBOlwkvgGgHc5p.mNE.WqPWxdt7mRK4NwPl7ZlkIHe94o.	\N	2025-05-23 10:22:11	2025-05-23 10:22:11	\N	\N	+91	668020429	192	\N	1	\N	2	Female		1990-06-21	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Pearl Mosciski	\N	LQ748987	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
82	Foster Heidenreich	ephraim86@example.com	\N	$2y$12$1/Eq0meS8JWBfrJ3xmtjGucI803A2kucuq1ksJG8DwrNwMMbhl3sy	\N	2025-05-23 10:22:11	2025-05-23 10:22:11	\N	\N	+1	808898255	158	\N	1	\N	2	Female		1990-11-18	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Adrien Wunsch DDS	\N	LQ191364	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
83	Delmer Lowe	thea63@example.net	\N	$2y$12$CVYSTy5VdJr3Ic1.EjfcSOr1thRbQWuBwWwm/Ura.vqzHONKUw6/W	\N	2025-05-23 10:22:11	2025-05-23 10:22:11	\N	\N	+44	534458252	145	\N	1	\N	2	Female		1998-06-13	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mallie Cassin	\N	LQ69941	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
84	Derrick Moen	daniela43@example.net	\N	$2y$12$7jR5ggHbULKKJFpfD2j1pu/Z/88R0xUCyjEFpz533sCCnKfWFnSWm	\N	2025-05-23 10:22:11	2025-05-23 10:22:11	\N	\N	+1	984606355	155	\N	1	\N	2	Female		1990-08-14	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Lexi Bins	\N	LQ814907	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
86	Prof. Lillie Schmitt	gleason.ludwig@example.org	\N	$2y$12$iJM1OpC/dl8qlEA9dyUajun.avxVh0QMU42sqWj5JQS.2ZmtKxGwm	\N	2025-05-23 10:22:12	2025-05-23 10:22:12	\N	\N	+91	934869849	30	\N	1	\N	2	Male		1981-03-20	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Uriah Goldner III	\N	LQ389578	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
87	Antone Turner	bauch.erin@example.net	\N	$2y$12$B0P9pa.wFmEecdI4DQn7Fee7WZI0VbcGiTCjB52295mnLOFWTMpSG	\N	2025-05-23 10:22:12	2025-05-23 10:22:12	\N	\N	+91	866232922	151	\N	1	\N	2	Female		1994-11-02	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Abigail Smitham	\N	LQ96834	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
88	Dr. Mikel Nikolaus	west.beryl@example.com	\N	$2y$12$Hfr/vRO//up0SZaceouBmODyXvLyS3UzVEpH6O5TD5G.KzgHgDW1G	\N	2025-05-23 10:22:13	2025-05-23 10:22:13	\N	\N	+91	475927245	58	\N	1	\N	2	Male		1986-06-28	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Chad Marvin	\N	LQ459826	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
89	Favian Hilpert	bortiz@example.net	\N	$2y$12$c0PE0l2hOEgpzTeZ/iWJDuTheGT2j8VZDh.OIGLQVwAQywTjJe7sm	\N	2025-05-23 10:22:13	2025-05-23 10:22:13	\N	\N	+1	462753241	24	\N	1	\N	2	Female		1973-06-21	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Ava Morissette	\N	LQ424281	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
90	Dr. Elnora Crist	jessy.langworth@example.net	\N	$2y$12$ppu4SYyfenZhunCeBztLeu17LnzT3O1vbyeJ.mfRDgpTRXxCJLOOa	\N	2025-05-23 10:22:13	2025-05-23 10:22:13	\N	\N	+44	836848916	139	\N	1	\N	2	Female		1972-03-16	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Alexane Quigley	\N	LQ809799	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
92	Prof. Carlo Ebert	dbernier@example.com	\N	$2y$12$9OkHeh7lakg26v8H3ZAsVOfSaLxVJHUtJZGRtGLH2g/rL5Encsq8i	\N	2025-05-23 10:22:14	2025-05-23 10:22:14	\N	\N	+91	747029644	13	\N	1	\N	2	Female		1993-03-11	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mr. Lew Kling	\N	LQ596577	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
93	Leola Koelpin	gardner90@example.com	\N	$2y$12$wwghn1B013fpqcX6gUp0iOvINsDFdxdiMGAgGP0BFQ8BfATQc/vEG	\N	2025-05-23 10:22:14	2025-05-23 10:22:14	\N	\N	+1	602256622	30	\N	1	\N	2	Male		1990-06-01	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Heloise Veum	\N	LQ340462	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
94	Jayson Jacobs	douglas.valentina@example.net	\N	$2y$12$xtl4v6hn2qeEqE1UcNJVb.0La0ZfrbeoBJBE7N3b44YX/UZzrv5na	\N	2025-05-23 10:22:14	2025-05-23 10:22:14	\N	\N	+1	528242313	179	\N	1	\N	2	Female		1974-10-09	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Simone O'Keefe	\N	LQ612558	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
95	Tyson Emmerich	ethel29@example.com	\N	$2y$12$d2.jyx6Suv4NjDh2dU8FRe.xRAw25Qe3WcoGEJwuFhfeXLhNxZBwq	\N	2025-05-23 10:22:15	2025-05-23 10:22:15	\N	\N	+91	554835846	192	\N	1	\N	2	Female		1999-03-23	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Jerrell Hyatt	\N	LQ246368	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
96	Abbigail Sawayn	hayes.josie@example.net	\N	$2y$12$pKdVIR8X40/0zzPbj6lG0u7ok4eIIovy55oVbJ137CKquKnr7D0UC	\N	2025-05-23 10:22:15	2025-05-23 10:22:15	\N	\N	+91	762401189	172	\N	1	\N	2	Female		1981-07-15	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Dayna Hammes	\N	LQ50335	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
97	Prof. Clara Koelpin	ottis.gutkowski@example.org	\N	$2y$12$imW0LAHLa8I3dlbu.pteWet/5OqB5NdzJKWiLGZT47.L7G7JDAw/m	\N	2025-05-23 10:22:15	2025-05-23 10:22:15	\N	\N	+44	147600469	147	\N	1	\N	2	Male		1990-09-24	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Dr. Sigrid McDermott Jr.	\N	LQ766559	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
98	Miss Carley Wolf I	cartwright.tessie@example.org	\N	$2y$12$i3Uz9lrJKCJkewe718/mDeGCjVA1N5srRl1sWoZxAJ/LpSEjXpuF6	\N	2025-05-23 10:22:16	2025-05-23 10:22:16	\N	\N	+44	661220110	69	\N	1	\N	2	Female		1972-10-08	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mrs. Jude Lebsack DVM	\N	LQ879896	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
99	Prof. Mitchell Kub DDS	douglas.jerald@example.com	\N	$2y$12$iFbS8H1IxZOETIXfKbyToO1lmh.Uyye111ZpNDMPUfnYt34B3SChq	\N	2025-05-23 10:22:16	2025-05-23 10:22:16	\N	\N	+91	542425825	41	\N	1	\N	2	Male		1995-09-20	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mrs. Stacey Mann	\N	LQ935437	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
100	Miss Aisha Cassin	egreenfelder@example.org	\N	$2y$12$AEgZXgFRh0fAkJRRqN4rXuia3ULaRIgbdMJFH04mouDoLlDcopaBi	\N	2025-05-23 10:22:16	2025-05-23 10:22:16	\N	\N	+1	75150264	100	\N	1	\N	2	Male		1973-08-12	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Edmond Doyle	\N	LQ931393	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
101	Jeromy Roberts	ysanford@example.org	\N	$2y$12$.Z0ZNaskxVbD9Wa5PW2XxOGSqIVx5aWY.7EAunS6ZAshnLlOs6OuG	\N	2025-05-23 10:22:16	2025-05-23 10:22:16	\N	\N	+44	711959277	17	\N	1	\N	2	Female		1996-12-16	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Bradford Wyman PhD	\N	LQ456328	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
102	Aryanna Bernhard	alia.okuneva@example.net	\N	$2y$12$Mh4zl1fAnBNZVbrp87KNCe2FFDdhImQgo7r7R75nelNxDrt9rWQnK	\N	2025-05-23 10:22:17	2025-05-23 10:22:17	\N	\N	+1	291522493	83	\N	1	\N	2	Male		1999-05-01	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Vivianne Glover	\N	LQ338743	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
103	Mable Jacobson	cruz48@example.org	\N	$2y$12$fGQp.dRsatyJgEAnGZvrKOWmG3OJnlF6rTx5DzlrZCJ6EHy7sENum	\N	2025-05-23 10:22:17	2025-05-23 10:22:17	\N	\N	+91	318713450	146	\N	1	\N	2	Female		1987-06-06	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Vidal Schultz	\N	LQ651159	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
104	Rosella Bergstrom	susie12@example.org	\N	$2y$12$q7XKNh68ftsm0kYLJaqcyeRQJh/vAtinNSZX1gqgSB9G84zRVEf3q	\N	2025-05-23 10:22:17	2025-05-23 10:22:17	\N	\N	+44	44600564	159	\N	1	\N	2	Male		1988-10-23	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Chris Prosacco	\N	LQ142616	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
105	Makenna Bashirian	lenny.hermiston@example.org	\N	$2y$12$2ysfC.Dl4W38EOxm1BHwAO098OUVzt0uLfzQksxlNAEmh8yR4KJwC	\N	2025-05-23 10:22:18	2025-05-23 10:22:18	\N	\N	+1	563263157	39	\N	1	\N	2	Female		1974-04-22	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Erick McLaughlin	\N	LQ586533	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
106	Ahmed Blick	emmett.rowe@example.com	\N	$2y$12$J5A5aH5nJx2fgqYnEHfi6eWH90ZR2mqvpbp.i5kGUoa.34ggU22a.	\N	2025-05-23 10:22:18	2025-05-23 10:22:18	\N	\N	+91	588567195	8	\N	1	\N	2	Female		1975-04-30	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Lincoln Weissnat	\N	LQ255964	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
107	Rhiannon DuBuque	predovic.chyna@example.org	\N	$2y$12$VTuk7O5EnymNT0okk0heQOpp/7G8N9bPszo6DmUrz/tglvWUt6WPW	\N	2025-05-23 10:22:18	2025-05-23 10:22:18	\N	\N	+44	297825745	132	\N	1	\N	2	Female		1978-05-13	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mozell Kris PhD	\N	LQ143727	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
108	Mr. Marshall Terry	hayes.connor@example.com	\N	$2y$12$WpIXkZDDPD4xh70seVoNDeJVg8Oe5rpgJbiREwmTJwdkpgOHVoldC	\N	2025-05-23 10:22:19	2025-05-23 10:22:19	\N	\N	+91	982505301	97	\N	1	\N	2	Female		1991-12-14	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mafalda Kulas	\N	LQ904378	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
109	Zoe Quitzon	scartwright@example.com	\N	$2y$12$yurDnYjVmE0.9XnsfVL32Oojh.ay29YCnXZDAjcza4HZ3HL0KI3tC	\N	2025-05-23 10:22:19	2025-05-23 10:22:19	\N	\N	+1	74385682	130	\N	1	\N	2	Female		1985-05-20	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Billy McCullough	\N	LQ17979	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
110	Rocio Kilback	harvey86@example.com	\N	$2y$12$gkQofnob590iYbkKxO..xewiM0Dh2OI6EZ0mRBeNYoBoq7.6XSyhu	\N	2025-05-23 10:22:19	2025-05-23 10:22:19	\N	\N	+1	573080460	149	\N	1	\N	2	Female		1986-12-14	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Shayna Nader V	\N	LQ564181	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
111	Charles Medhurst	cdach@example.com	\N	$2y$12$fQHNnapvxQqVWp1WxYYcteE7uZwNPMHYnxtBV3SUsnhfBRzntg24q	\N	2025-05-23 10:22:19	2025-05-23 10:22:19	\N	\N	+1	456539544	37	\N	1	\N	2	Female		1973-10-24	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Miss Crystel Bradtke Jr.	\N	LQ893689	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
112	Jenifer Wiza	npredovic@example.com	\N	$2y$12$GFBYkBZzBqBjFMtgm0LzbunDurwB/4xO9ZyLgP.1RxyeqUIv0oswi	\N	2025-05-23 10:22:20	2025-05-23 10:22:20	\N	\N	+44	199445585	199	\N	1	\N	2	Female		1976-12-22	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Keyshawn Nolan	\N	LQ452208	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
113	Ms. Dakota Rohan	emmerich.effie@example.org	\N	$2y$12$3xZ1JQm9by08NhzIO7fIaOnBlpYxVo2CmRdtAwqcFJvn6MRKjpstq	\N	2025-05-23 10:22:20	2025-05-23 10:22:20	\N	\N	+44	581991292	26	\N	1	\N	2	Male		1985-06-08	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Sabrina McGlynn	\N	LQ87063	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
114	Dr. Aglae Reilly I	dach.rodrigo@example.net	\N	$2y$12$72Ly4uHm4EohddNJqqH8EOYHhSfi6rLlPdAYGa3TpyXIsTg1jnKCW	\N	2025-05-23 10:22:20	2025-05-23 10:22:20	\N	\N	+1	432800910	133	\N	1	\N	2	Male		1979-11-09	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Helen Pouros III	\N	LQ62770	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
115	Jayden Sporer	giovanni31@example.com	\N	$2y$12$MJ5HFumzE5Ob/hf273.Sb.4Py.y9To7sjgDP5MafUkwKU00oNWExe	\N	2025-05-23 10:22:21	2025-05-23 10:22:21	\N	\N	+44	365794577	58	\N	1	\N	2	Male		1988-01-30	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Terrence Torphy	\N	LQ784424	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
116	Mathew Wunsch	salvador59@example.com	\N	$2y$12$VDW0DQNwUX1k6a4M9X5xJujtuE1vxHc8H1V8lMgqzqmhHjdzuOVKS	\N	2025-05-23 10:22:21	2025-05-23 10:22:21	\N	\N	+44	628952925	35	\N	1	\N	2	Female		1995-07-27	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Misael Halvorson	\N	LQ713712	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
117	Mr. Brown Romaguera	edythe57@example.net	\N	$2y$12$8fsOQbR4nCzg9007n0onyO7kutamO9G8R9YlFmNnueO6ie1lD6vkq	\N	2025-05-23 10:22:21	2025-05-23 10:22:21	\N	\N	+1	857764018	60	\N	1	\N	2	Male		1974-08-31	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Madyson Beier II	\N	LQ514061	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
118	Enoch Kling	conroy.jarod@example.org	\N	$2y$12$KR6Tx5lZqHOIN/za2tBHauTfCUKmCR2Y/T6TBAQt6gg/Of3FnbEZS	\N	2025-05-23 10:22:21	2025-05-23 10:22:21	\N	\N	+1	864573465	103	\N	1	\N	2	Female		1979-06-02	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Dr. Elvie Reichel Jr.	\N	LQ6073	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
119	Prof. Kaden Barrows	alfonzo.jerde@example.com	\N	$2y$12$1RRSJodfKHCwxG18FAX4fe1flM4oW1AZ1YPEMGH6GfnfMFqEywOK2	\N	2025-05-23 10:22:22	2025-05-23 10:22:22	\N	\N	+91	79607546	146	\N	1	\N	2	Male		1996-08-02	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Miss Neoma Frami	\N	LQ896145	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
120	Keagan Armstrong	rupert.marvin@example.org	\N	$2y$12$TybFVpYVw1wT1YyfqJjsMu6KVBK1b8z3e.oJxTWXRayTmOtLtjLe2	\N	2025-05-23 10:22:22	2025-05-23 10:22:22	\N	\N	+91	846348958	138	\N	1	\N	2	Male		1996-07-27	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Maritza Miller MD	\N	LQ939609	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
121	Sidney Wolf	wreynolds@example.org	\N	$2y$12$DzYyAh7BjyuAsLLkvgTH/OoZoiPc/S6A1LyLAZ23uKX6.J.pzgSP.	\N	2025-05-23 10:22:22	2025-05-23 10:22:22	\N	\N	+91	930414969	47	\N	1	\N	2	Female		1977-01-31	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Ms. Althea Lindgren	\N	LQ877958	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
122	Anahi Raynor	tre.champlin@example.org	\N	$2y$12$idc7PUmhGqXE694zcXeRMeUMhqNmYDm5X5BH452ixgRyuSb0cUgee	\N	2025-05-23 10:22:23	2025-05-23 10:22:23	\N	\N	+1	179347898	48	\N	1	\N	2	Male		1992-04-14	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Cindy Wiegand III	\N	LQ547782	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
123	Mrs. Britney Hudson	fahey.shane@example.org	\N	$2y$12$UW9QIWK.X8N/To8uFBSLCe/j.IVbYUR.aPiVWuUTRdgD2i5OAm2YS	\N	2025-05-23 10:22:23	2025-05-23 10:22:23	\N	\N	+91	384161923	199	\N	1	\N	2	Male		1985-06-26	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Prof. Junior Gulgowski	\N	LQ45294	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
124	Prof. Darryl Klein DDS	vkunze@example.net	\N	$2y$12$qurvUuFZnUa1Yu6kXZsN5exb4H5pOWV5sxwQIZl8Mua3UzbkhqGNe	\N	2025-05-23 10:22:23	2025-05-23 10:22:23	\N	\N	+44	422708779	45	\N	1	\N	2	Male		1972-11-15	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Percy Stark	\N	LQ211862	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
125	Miss Willa Stoltenberg I	holly08@example.net	\N	$2y$12$iNUtUu/ds.6Kwh7ZdnWeY.8J7YEyi9KB6JB7ZMeXnQCv5ZfT/shE.	\N	2025-05-23 10:22:24	2025-05-23 10:22:24	\N	\N	+44	756668300	13	\N	1	\N	2	Male		1990-10-30	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Nina Parisian II	\N	LQ738101	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
126	Prof. Evans Zieme V	lehner.moises@example.net	\N	$2y$12$0cdHfHLE3gfK8Lr9gI3nCOiEA2xqXBg8G3QbioBcRm2LAz8vtvnca	\N	2025-05-23 10:22:24	2025-05-23 10:22:24	\N	\N	+44	156907599	175	\N	1	\N	2	Female		1998-04-19	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Jaylin Hessel	\N	LQ254382	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
127	Zora Johnson	jeffry34@example.com	\N	$2y$12$j7AWm4GwLXbcXBed4xtop.SNGCxs1zociWJGg1I2JNbWkGM9Pc2re	\N	2025-05-23 10:22:24	2025-05-23 10:22:24	\N	\N	+44	448293143	94	\N	1	\N	2	Female		1996-06-04	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Maybell Balistreri	\N	LQ86018	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
128	Kyler Greenfelder	geraldine.labadie@example.org	\N	$2y$12$8fcdp5MpagkuKnYg4qQRMelL2H14U6Y2PrlwJzqelnRVg8vSwDq2y	\N	2025-05-23 10:22:24	2025-05-23 10:22:24	\N	\N	+1	522803225	67	\N	1	\N	2	Male		1984-03-07	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Jedidiah Gaylord	\N	LQ275324	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
129	Leone McDermott	ystokes@example.org	\N	$2y$12$x8UsbVqjKaab9.POmA8UQuAWqV9WHGrCGXHsJenIbcfQyM2kP2WmG	\N	2025-05-23 10:22:25	2025-05-23 10:22:25	\N	\N	+91	636494528	2	\N	1	\N	2	Male		1993-08-23	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Dr. Dasia Altenwerth	\N	LQ390506	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
130	Elisa Goodwin MD	leuschke.pedro@example.org	\N	$2y$12$fyjaLLO7rvDDxeVr35OXXOiNikGPOFr0knxq..1fouFYCgGs/N9NO	\N	2025-05-23 10:22:25	2025-05-23 10:22:25	\N	\N	+91	772127241	31	\N	1	\N	2	Female		1980-07-11	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Prof. Marisa Schuster DDS	\N	LQ391936	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
131	Reid Hermiston	schamberger.elsa@example.net	\N	$2y$12$2co.1y2h1.HMHOT4gFp40ON6BL52DJKpWKrVBCTR8WCxB5paOUUIm	\N	2025-05-23 10:22:25	2025-05-23 10:22:25	\N	\N	+91	926674416	128	\N	1	\N	2	Male		1970-10-27	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Prof. Maud Wisoky II	\N	LQ249110	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
132	Mr. Kory Kautzer	kellie.lakin@example.org	\N	$2y$12$faNlBKB7UcHxjEe45XHdOOk64J/lGqo8OzA.DxAiPJdtgW0QI7ilS	\N	2025-05-23 10:22:26	2025-05-23 10:22:26	\N	\N	+91	871818043	18	\N	1	\N	2	Female		1989-09-04	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Carlo McKenzie PhD	\N	LQ619152	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
133	Korbin Smitham I	sarah.trantow@example.com	\N	$2y$12$lzpDJzQ3E8TqFdipoFKeNeR0AAWsTgNfxu.aUS2.bvLLRdj.m21yG	\N	2025-05-23 10:22:26	2025-05-23 10:22:26	\N	\N	+1	495762900	167	\N	1	\N	2	Male		1991-08-22	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Eleanore Zulauf II	\N	LQ194514	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
134	Carissa Erdman I	heller.sister@example.net	\N	$2y$12$8i6mUcg.Qa.3rOgSnojsaOK5qJ1D9iPiojYiJx5sEq.4UzTILQsja	\N	2025-05-23 10:22:26	2025-05-23 10:22:26	\N	\N	+1	589258569	125	\N	1	\N	2	Female		1970-04-11	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Pablo Gleason	\N	LQ836374	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
135	Wava Kling	amalia.ratke@example.net	\N	$2y$12$XlaakLyX7cTLI1HZJ2pN8OhqPgY6bGETPUieZPle.LHSnD.zB1tBe	\N	2025-05-23 10:22:26	2025-05-23 10:22:26	\N	\N	+44	215521848	98	\N	1	\N	2	Male		1972-10-11	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Shaina Connelly III	\N	LQ115135	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
136	Juvenal Bosco DDS	enola34@example.net	\N	$2y$12$ClxEduuMjOA/4LCb9O40m.4NoRHt49jYGAG1VV3EJ3w4OvH1.8Gy.	\N	2025-05-23 10:22:27	2025-05-23 10:22:27	\N	\N	+1	987626793	20	\N	1	\N	2	Female		1984-07-07	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Kara Johnston DVM	\N	LQ789255	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
137	Dr. Russ Lowe	spredovic@example.com	\N	$2y$12$XZ1Xe78al7IIOPn/oqfo9.WYUjwr0hACXA1YnXcsRyUKgFBFhL0Ca	\N	2025-05-23 10:22:27	2025-05-23 10:22:27	\N	\N	+1	650428196	136	\N	1	\N	2	Female		1971-10-07	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Leonor Rowe	\N	LQ867231	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
138	Velda Daniel	tkrajcik@example.net	\N	$2y$12$SQ49oCmmw263wbaRTDYEOebQN.hQGjC9SdmuBmr.SIb47ASN.Pmaa	\N	2025-05-23 10:22:27	2025-05-23 10:22:27	\N	\N	+44	424973160	195	\N	1	\N	2	Female		1976-03-26	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Clemens Kunde	\N	LQ12863	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
139	Eulah Kovacek	ddietrich@example.org	\N	$2y$12$vRjNyBXLmIIQy/UCoUxHtOhJ46SqWAF5TZl6wZlsJwqKYfosk9z.K	\N	2025-05-23 10:22:28	2025-05-23 10:22:28	\N	\N	+91	644836104	197	\N	1	\N	2	Male		1997-02-28	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Stephan Roberts	\N	LQ278419	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
140	Mr. Oran Mann PhD	jade.walter@example.net	\N	$2y$12$luGpjmoyurmeqlc6Bdlt.uSb9fIiHW1MKGYqoREOv.1Bq.wiJ9kvS	\N	2025-05-23 10:22:28	2025-05-23 10:22:28	\N	\N	+1	27870995	107	\N	1	\N	2	Male		1984-06-30	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Cassandra Aufderhar	\N	LQ8044	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
141	Santiago Lindgren	tkessler@example.com	\N	$2y$12$OlWVq0EYYViWyeBjho94QeqcNn9R.704MheQL45KIho0ljcxL98nK	\N	2025-05-23 10:22:28	2025-05-23 10:22:28	\N	\N	+44	512247732	71	\N	1	\N	2	Male		1975-01-31	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Dr. Eladio Bins PhD	\N	LQ248653	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
142	Muhammad Kuvalis	agaylord@example.com	\N	$2y$12$xbNy5nsvvk2iXM714aC7/egt.bR99kN16MPyDkQC9T0ZPrzd0gt76	\N	2025-05-23 10:22:29	2025-05-23 10:22:29	\N	\N	+91	303345150	148	\N	1	\N	2	Male		1978-02-04	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Diamond Upton	\N	LQ21058	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
143	Jovani Auer	christiansen.graciela@example.net	\N	$2y$12$N9zXxAstnSGE5p/XvmLTH.tWDPtbS2WUHmqPX87oB47kBiuwBtAQG	\N	2025-05-23 10:22:29	2025-05-23 10:22:29	\N	\N	+44	534934486	97	\N	1	\N	2	Male		1981-06-24	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Michelle Stracke	\N	LQ264737	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
144	Makenzie Tillman MD	dlowe@example.com	\N	$2y$12$pwyizX.O3QGd/D9PmbQP..Q/jXKHuscfzJ1t6MCWrlPMAiC96AZhi	\N	2025-05-23 10:22:29	2025-05-23 10:22:29	\N	\N	+1	520041619	164	\N	1	\N	2	Female		1993-10-24	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Deon Stehr	\N	LQ575307	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
145	Dr. Philip Nolan	lbailey@example.com	\N	$2y$12$6thLDjvzgqpdi37L0ZNSCOTadrrNguncFJx5jjMJ6DA9JMHrGZNS6	\N	2025-05-23 10:22:29	2025-05-23 10:22:29	\N	\N	+44	732557472	97	\N	1	\N	2	Male		1971-05-22	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Maybell Huels	\N	LQ953385	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
146	Ola Bins	stacy13@example.net	\N	$2y$12$gQME0Dd001xBQBXAYfs8S.wP68ca4xo0nf8607yzHRc9UDk8f9kGG	\N	2025-05-23 10:22:30	2025-05-23 10:22:30	\N	\N	+44	414993042	82	\N	1	\N	2	Female		1977-12-19	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Mr. Niko Wuckert	\N	LQ798075	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
147	Elenora Dickens	olowe@example.net	\N	$2y$12$v2O7vH8tyqtsaweprejz9ez/aM8/f.mlWUimaKqT/hFm1khQBP3E2	\N	2025-05-23 10:22:30	2025-05-23 10:22:30	\N	\N	+91	932208019	178	\N	1	\N	2	Male		1975-04-07	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Margarita Fadel	\N	LQ226729	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
148	Wilford Spinka	domenick.erdman@example.net	\N	$2y$12$4kCJkrHeoP6GRH6/i4s/IOdhNyDihm.XntamtlFPun7DN9ffVp/Oa	\N	2025-05-23 10:22:30	2025-05-23 10:22:30	\N	\N	+44	956849586	148	\N	1	\N	2	Male		1981-09-19	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Patience Bayer PhD	\N	LQ945591	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
149	Mrs. Chanelle Renner	johnny.legros@example.com	\N	$2y$12$I0qvx/RFDHcdwlpi/AHkF.NyWlmGwtMMTkA4hTJqfHAC8LwTZka8u	\N	2025-05-23 10:22:31	2025-05-23 10:22:31	\N	\N	+44	991314417	51	\N	1	\N	2	Male		1985-06-07	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Ahmad Gulgowski	\N	LQ345350	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
150	Willis Blanda	cronin.elvera@example.org	\N	$2y$12$7B2OyQ2MK7fF65q3z0BR9u69.pVO6qNOwr0U5qh5uOf9NdhehYN4a	\N	2025-05-23 10:22:31	2025-05-23 10:22:31	\N	\N	+1	103194292	167	\N	1	\N	2	Female		1986-06-15	0	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Ayla Blanda	\N	LQ796658	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
151	Dr. Heather Schiller IV	grant.leola@example.com	\N	$2y$12$XSCNAGNuE9qtKXt8wreUo.oHJP0Aag23V.aIsPrlo4XT2L1fznVeC	\N	2025-05-23 10:22:31	2025-05-23 10:22:31	\N	\N	+44	655031172	78	\N	1	\N	2	Female		1975-02-17	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Jakob Auer III	\N	LQ708482	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
152	Dr. Lyric Glover V	carroll.candelario@example.org	\N	$2y$12$aVpGjExV39QLmqwRluHA1.3PcP3RBsb0maxdfMBYja3j2.ixv/8Fq	\N	2025-05-23 10:22:32	2025-05-23 10:22:32	\N	\N	+1	544865013	131	\N	1	\N	2	Male		1993-12-30	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Serenity Gerlach	\N	LQ899475	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
153	Michael Feil	aokon@example.org	\N	$2y$12$tiWdRLMHVutOpUE1MArRJOSrUgTF/JSHlq7HOmjWCpP8T9ip2yYWi	\N	2025-05-23 10:22:32	2025-05-23 10:22:32	\N	\N	+91	402977027	162	\N	1	\N	2	Male		1995-04-16	1	\N	\N	\N	\N	\N	\N	\N	0	0	\N	0	0	Gennaro Hane	\N	LQ544352	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
213	Sara	sara@gmail.com	2025-06-03 03:13:18	$2y$12$5qbb2BgMJzUJBFLYdq/JDOcklChAbL8RkhSnQH5e5D49c1H8Pn7he	\N	2025-06-03 03:03:02	2025-06-03 03:13:18	\N	\N	971	513318466	\N	\N	1	\N	2	Female	\N	2007-04-09	0	android	ficCru2ASHu6683tN_UsRY:APA91bF1euAvIcBrCJ4Pz1jAhwPLP6glNSRsZMfOKpL6Y0I3I3IwLx-OS2jMeAAgqxAks-Ji_9vsjgimAiEzuezuGl0x2QUNIBuEhu26ch1kIK69cT1zOkQ	\N		\N	\N	\N	0	1	f13bfe0e1152a7053ede790cb122ea4a37c564ae888e69b54136169669529b1f	1	0	Sara name	237	LQ000213	0	0	0	f	f	-ORnjVqAH2eyFqwZKLdR	0	Sara parent	anil@dxbusinessgroup.com	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
163	Hamid	dx011@gmail.com	2025-05-26 22:28:17	$2y$12$3e6uF0EvI3u7.5D6q7Iuf.R4IJbtsDjtBBsg5t99nvLxkR/27vPRG	\N	2025-05-26 22:28:07	2025-05-26 22:28:17	\N	\N	971	346767667	\N	\N	1	\N	2	Female	\N	1996-01-12	0	android	fgS0dmepTTmVX5k_oWLUQ7:APA91bFEElRy7S6GZxm7LKnJVHGiRN4e2zBg1kDZNKHSXl6O_C_bMiTpvQwcmjQs8CLSwCS-fm2jK57g3Liz2cmrLET7LQU9sDy1Wxo_l2TPRBS0tUuWnM8			\N	\N	\N	0	1	2bb25f0eb4deac22cf32898fb10968291b58c45d095a3a5c2da58a1bbe178771	0	0	Raza	169	LQ000163	0	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
223	Zainab Khan	hibaejaz97+5@gmail.com	2025-06-05 07:58:19	$2y$12$D6sAGYTJKAbsSgjzAkz.E..o.k.Zc6Qb7BM4vubjFybBTi2UP2Hf6	\N	2025-06-04 07:39:50	2025-06-05 07:58:19	\N	\N	971	561667848	1	4	1	\N	2	Female	683ff85b8eda5_1749022811.	1995-06-04	0	android	esn0ZJA8SOW3IZDC-EFCop:APA91bGKqg_0Thb0Ld7bOnvI97_WMAKDnzje9nZocuOaz9crTuD-Z8bU49ZSOrX0-h5FFYJu38TcXL5rW3mECJ-xG-vQnKCOSKMegNsuqacfhYxdYYjvayg	\N		\N	\N	\N	0	1	a0a5a3cad91dc0e7758ef4c6b21cc954170fb21e9271c057a27de1ed6f79c81e	1	0	Zainab	1	LQ000223	1	0	0	f	f	-ORtsSK7HHWV1okHuXAa	1	MK Khan	hibaejaz97+6@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
173	Anil	anil@dxbusinessgroup.com	2025-05-27 07:02:34	$2y$12$MdhK4H1Lwf6WwMLvb7RzpeWq4W4mhGJYKbDKAVr0VzbWFBavOfpJq	\N	2025-05-27 07:02:34	2025-05-27 07:05:02	\N	\N	971	523243163	\N	\N	1	\N	2	Male	6835641e086c8_1748329502.	2006-07-13	0	android	f4-VIYgQQ-S-UYxzhbViw5:APA91bFslcTH3JblmhPckRCt5IQBamuwmC8FsG5JEg-exYUcRc1E3dw5-rY04g-WID72RfuangL14YN2Dc7P5HdeFOjewyjWnZcOt4WMN4TysJPt069tLyI			\N	\N	\N	0	1	633a1267603f98ef4bcedefd0bab05eb8f0912befda4b454cbe1b03f9c00bb6b	0	0	Navis	237	LQ000173	1	0	0	f	f	-ORFYCVugo_2PXSanabe	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
233	Salma	salma@gmail.com	2025-06-06 08:18:31	$2y$12$xWZEC0qp8L8xRFQr04JItu.lNO7osDwNBGI6R3wTmGCSJYaVAs/UG	\N	2025-06-05 08:52:49	2025-06-06 08:31:54	\N	\N	971	555555756	1	1	1	\N	2	Female	68415b48cfb5a_1749113672.	2007-05-02	0	android	fyFw4bu8TzOcTlzWIheNtP:APA91bHGjnC0jW5DRfXS0IcgJSSbfQ_D_F6-nI0C2P3tnp-HwqyRQAQ9nFoNztzUZxoT_ZcvebupkJenTfp54XYsoofeXq1GIQHKuXcmlUF2OnBWsTEIQCI	\N		\N	\N	\N	0	1	a17db8bc9a5bfe027dafde8c9079cae72ecbc38bb3fbab1e90ceef83d748090e	1	0	Salmath	237	LQ000233	1	0	1	f	f	-ORzHkCTgDKLh0gP8KZp	1	Salma parent	anil@dxbusinessgroup.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
294	Mishha Shah	hibaejaz97+22@gmail.com	2025-11-18 10:53:03	$2y$12$di7CXkmxXxcHWN4mRCjp7.SUw0DxHA23wnY4xONI9oa5BCE266Ieu	\N	2025-09-24 07:47:54	2025-12-18 10:15:13	\N	\N	971	563335577	1	3	1	\N	2	Female	\N	1980-09-24	0	android		\N		\N	\N	\N	0	1		1	0	Misha	196	LQ000294	1	0	0	f	f	-O_ugMiDBE4xAX_kBG7r	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	1	2	\N
266	Hamid Raza	razahamid34+113@gmail.com	2025-07-13 07:26:29	$2y$12$IYBrO01ONKvVmHCPwz.7BuB7lGuFJypT9MgOrofUzN7QqV8oL1EgC	\N	2025-07-13 07:26:29	2025-07-13 08:52:26	\N	\N	971	367766767	\N	\N	1	\N	2	Female	\N	2007-07-13	0	android				\N	\N	\N	0	1		0	0	Razahamid	237	LQ000266	1	0	0	f	f	-OV1fOv1fn5yyPdsvLYb	1	Hamjsjsjs	razahamid34@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
262	Umair	ans@ans.com	2025-07-16 13:18:45	$2y$12$bRF6o62QVfevk3r/12ty5ebCTWnItn2Gb4zT6S7DECP.QJT7THtiK	\N	2025-07-12 05:30:57	2025-07-16 13:19:16	\N	\N	971	546645668	1	1	1	\N	2	Male	6871f33083a34_1752298288.	1997-07-12	0	ios	etgRaRSRv0eYrCgTBi5BF2:APA91bG8U55HMLsUJU13BjtbSS5TEdWtOYVClfY3idxwt-wWwevBlTdQjHK-E_vPBoTq_TeUVj-5yJR-oioWgmwq_fQWNIIWU3EjV-5t_WQ8rN7KnamHQm0	\N		\N	\N	\N	0	1	56061faeab279033f185ea3f0b1dab243756a57bb8772c0beb64583711d196f8	1	0	Abdul	237	LQ000262	1	0	1	f	f	-OUx6MqhQHGhhnYafJ5D	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
260	Hamid femail	razahamid34+101@gmail.com	2025-07-17 09:25:41	$2y$12$L/E4h9r/FjBg1lnFsEPvTuuWfjGRBMT9dACWGeOj6Sshi6ii6zKwy	\N	2025-07-11 15:09:28	2025-07-18 17:10:29	\N	\N	971	646464648	\N	\N	1	\N	2	Female	\N	2007-06-14	0	android	dL3phpb-N0DNsMWE3HNin9:APA91bHY37T9fm9be0mDHztA8K9V7Nj-9sqHe8IZJUP3ShntcvMGtrN4A1n2FEQt6y6RX4ZfU6ReZRDZffRQM0y9r2bNZsdcj4mOFWKeTmrG0f7Tl8JSWXY	\N			2025-07-13 13:55:16	0	0	1	46f67be13e2034b81e7c00e4f507e68be1ca9b0b0bdf20026e47f99b97e9c35c	1	0	FemailValifation	237	LQ000260	1	0	0	f	f	-OUu1B_OyOx66jjs9hfM	1	Hamid hajaj	razahamid34+102@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
274	Mehmood Ahmed	hibaejaz97+26@gmail.com	2025-07-17 05:50:04	$2y$12$XV0qGdW1voAWjWuC6W1oO.jnMM3eGReiVm/JS3D5rdD7Z6pnAqwJK	\N	2025-07-16 07:33:30	2025-07-17 05:50:04	\N	\N	971	494994949	1	1	1	\N	2	Male	6877560445256_1752651268.	1990-07-25	0	android	dsD6olLHQvuG1vdtqOK-hF:APA91bGiO0U_yXumcWVTX34gzPsj1Yek14KdpjC4KxWHYuoE0NPj8UO1joyDZemIXY1OImJ4-pGo0nf8lXnqWb7rWWZhIsq6N-67QeGWPSY_IqajK5CPBa4	\N		\N	\N	\N	0	1	dc61ad81b94ffaa6d40d891e2d0ff85b9cbc86f6ba2d902b53704c7c29ab4bb9	1	0	Mehmood	103	LQ000274	1	0	0	f	f	-OVH8m2SUWqpO3QOHZAn	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
273	Saba Hashmi	hibaejaz97+24@gmail.com	2025-08-18 11:55:36	$2y$12$YZRlNBG3l7yy2FIqmx8bqOGhOXCu9zRmVn9T/3Waj8V0awD5J3wLW	\N	2025-07-16 07:15:59	2025-08-18 11:55:36	\N	\N	971	561660444	1	1	1	\N	2	Female	687751e0d0c9b_1752650208.	1996-07-16	0	ios	fESme7mLT2uZ-DxDmHneD9:APA91bGbCFX-5XA6L0iiAOQIGTy3H9gDPkqJNdkwPZR5ScOQqcL1v0OQucQ_Bqw4I2rd8SuNxOkGBMPi_OIBue_yBWASZNX2Ckg1fHgxrh3bAp7ljFE98M8	\N		\N	\N	\N	0	1	694b2730508d539864955c015465b580b10e190bd10be6000c91f9089c8c5150	1	0	Saba	237	LQ000273	1	0	1	f	f	-OVH4lZQNcQDBhceptLM	1	Hashmi Ispaghol	hibaejaz97+25@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
276	Basit	hibaejaz97+27@gmail.com	2025-12-31 12:53:35	$2y$12$Mv.Jx3Gs25JYnnT51SehQufYMdCYL4b5qgmcBcFIP70vHZEonw6H.	\N	2025-07-16 15:07:13	2025-12-31 12:59:06	\N	\N	971	569887777	1	2	1	\N	2	Male	6877c050f07e7_1752678480.	1991-07-16	0	android		\N		\N	\N	\N	0	1		1	0	Khan	237	LQ000276	1	0	0	f	f	-OVIlcNX81mobL2fH-QC	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	1	3	\N
275	Kejdjhd	hubaejaz@gmail.com	2025-07-16 09:02:22	$2y$12$eBT5PXBiJ8gLPvU8YPPGvuyy7UfKao7iZ1bmNfKKS/K/HQoq8hoTe	\N	2025-07-16 09:02:22	2025-07-16 09:02:53	\N	\N	971	470400404	\N	\N	1	\N	2	Male	68776abd16300_1752656573.	1999-07-16	0	ios	dHtufWU2QUFWs2DNoBfeQC:APA91bGVHfIIOovV2x6Yu6OwcdIYrUk0StihZaKKN9jloR3w0fgoyPGRCPkPAsDlbKwWood_F6_njaa1kLQd20nTbk85k86z_Kv_5v20VLtds_PMvejjx-I			\N	\N	\N	0	1	a80a63d42c07b293d257e45e9186070f25d401d1d80b8dd6b07b5cb10fed5ac8	0	0	Jjjddd	237	LQ000275	1	0	0	f	f	-OVHT6roCgwziXf-Dgp5	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
278	HUNAIN AHMAD BIN RIAZ	dev@gmail.com	2025-07-19 08:27:48	$2y$12$VSId7EJqIOg7YWdI4GYs4ecM2.rFSLCx0C4Q348ELXsOtLARbw/hq	\N	2025-07-19 08:27:48	2025-07-19 08:29:30	\N	\N	971	398521475	\N	\N	1	\N	2	Male	\N	1999-05-30	0	android				\N	\N	\N	0	1		0	0	Dev	169	LQ000278	1	0	0	f	f	-OVWmyoLAXpXeBrn4guJ	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
246	Sara	halao91@gmail.com__deleted_acount246	2025-08-14 09:34:51	$2y$12$9WpqAbNzRweuaL1AnGnWDuclOfj/OpVdtEQq7muojF1iBxj8XgXIe	\N	2025-06-11 09:55:34	2025-08-14 09:35:16	\N	\N	971	506529697__deleted_acount246	1	1	0	\N	2	Female	684952b217088_1749635762.	2004-05-09	0	android		\N			2025-08-13 13:42:24	0	0	1		1	1	Sosoi	237	LQ000246	1	0	0	f	f	-OSTPdo5OyF6UJhqi7Wg	1	Hala	hibaejaz97+18@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
277	Hala	halao91@hotmail.com	2025-07-17 08:00:25	$2y$12$5QBY8lCtvl3w9uW/O06Lp.1CeiINEG.Xqtb8jdYVG699/BzhC8Y1y	\N	2025-07-17 07:57:53	2025-08-14 13:32:19	\N	\N	971	503136846	1	1	1	\N	2	Female	6878ad22a20ae_1752739106.	2004-10-14	0	android		\N		\N	\N	\N	0	1		1	0	Om	237	LQ000277	1	0	1	f	f	-OVMNxAJ8nJyuBqLbLAg	1	Halo	hibaejaz97+28@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
279	HIBA EJAZ OMAIR HUSSAIN	hibaejaz97+25@gmail.com	2025-08-19 08:19:23	$2y$12$OQcvKfa9OF9iYjTfmwck.OWUMboR8lrWjUx/wRHwrzjKynddo3E.K	\N	2025-07-21 07:03:39	2025-09-04 12:48:30	\N	\N	971	561660157	1	2	1	\N	2	Female	687de68c28de1_1753081484.	1998-12-30	0	android		\N		\N	\N	\N	0	1		1	0	Hiba	237	LQ000279	1	0	0	f	f	-OVfmtfJoWWL1whqNglY	1	Ejaz Akhter Latif	hibaejaz97+26@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
257	Naheed Tariq	hibaejaz97+15@gmail.com	2025-08-14 13:33:30	$2y$12$i5kHGHfT648nvn0I3g7Nl.U5QQcYXkIq.yRzAoJJTf3zgfaERID2q	\N	2025-07-11 13:37:02	2025-08-14 13:33:30	\N	\N	971	561660488	\N	\N	1	\N	2	Female	687113bace19f_1752241082.	1990-07-11	0	ios	fCbwERE_RE8no_a7Tz_UVL:APA91bFLV9JSrNxfepRrHRXSrognxQYz-YjjUw1rShvRsZrWrN5naB4ocD9B40Ef44apBgh4iPyeaesv0YP0YmSuP3XBc2EXCQmAOWDvNQVla6XU8pFQsaY	\N		\N	\N	\N	0	1	4faa9821c42fdc6c3510df4f19604201a893f3d4d1703a3fcc039baa6dddb246	1	0	Naheed	237	LQ000257	0	0	0	f	f	-OUth1R2a5n-pptYdBSy	0	Tariq Mehmood	hibaejaz97+16@gmail.com	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
296	Usama dxb	usamadxb@gmail.com	2025-09-24 14:24:01	$2y$12$lQf2zVlMBFFT956o041mveDXC0e8g.aHw76xTDz9xf99Dne0cNqgC	\N	2025-09-24 14:24:01	2025-09-24 14:24:07	\N	\N	971	555888000	\N	\N	1	\N	2	Male	\N	2007-09-24	0	android	dO4RpcX_SYGjc6C9aLM89m:APA91bGoVoqFCYuGr0UaU8SFKEp6AaTtDQnHZT0Yw-UZbTiev0ZrBxro5BYqgf6xaQyQNIvyp-ZqNqO959PEP0EBMhVfShA-il42u2Zskjo9CnO_s6X9_Kc			\N	\N	\N	0	1	6d6cd7b1662074ed0303cd83c13ee55a1271833a725759ce8ca118831c4e8ae5	0	0	Usama	119	LQ000296	1	0	0	f	f	-O_w612zw4Fqk8DNc2RF	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
281	Hala	halao91@gmail.com	2025-08-14 10:42:39	$2y$12$MWWLv2yyZecG5Dw9P5neROTRuBf5Boh3/cQvLhCvQ6ffE2psUt8jO	\N	2025-08-14 10:41:14	2025-10-01 14:09:52	\N	\N	971	506529697	\N	\N	1	\N	2	Female	689dbd7042fe3_1755168112.	2007-08-14	0	ios	ebReq56im0BipFH3Zp5w_F:APA91bEFYtj8FjYELMpkacSma74oXDJ5M8rLYbB4kMwr8O30fWrJF8HU4jkoj_w4VuLsRHPcYdysge2VdXep4TezdUfDqH-ahmjTdexfJMftu_z5Rxqlvwg	\N		44cbb11720de13e15c933bb9810761f57afa021eefccdb3b770e938ad67283fa	2025-10-01 14:09:52	1111	0	1	818c03d44ac8df1448be75872b9de52a946aa98e8f165e295d3c38e8134eb309	1	0	Rasha	237	LQ000281	1	0	0	f	f	-OXc9qvLU-cQO-KzW7R7	0	Maryam	info@luqia.ae	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
282	Hala	ingo@luqia.ae	2025-08-14 12:36:49	$2y$12$yiG9/dgfNbZ0g1XzTT4uU.m1YXKqe3tfE5TgiWJThe8Omimn7sqnS	\N	2025-08-14 12:36:49	2025-08-14 12:46:49	\N	\N	971	505523556	\N	\N	1	\N	2	Female	689ddab95763a_1755175609.	2007-08-14	0	ios	flP88dTeUkfZjpZN0c2CNp:APA91bFWvOh7UkfbuQzQjUCgJwySKfCkjYKpnlWyME8n2g0_zqrQMNxVy6pAjsJu3naI7f1cFcKZFDjxRLD9yuQHVPsSID78pHAW56pDn9OtKiS1HquzRTc			\N	\N	\N	0	1	41f2af835ead519740f11e1220da9c82d2cee940911fa6b98b6b0d61fed46f97	0	0	Rasha	237	LQ000282	0	0	0	f	f	-OXc_J3sdXuTpvSb2wA-	0	Sos	info@ellevest.ae	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
243	Maheen Alam	hibaejaz97+12@gmail.com	2025-11-10 13:03:46	$2y$12$KwU5KnQ9Q/EfvasTXNuAyOY0y3xWi3ub/wpDaDYFaqjY0jl0v0SzC	\N	2025-06-09 09:13:24	2025-11-14 04:45:15	\N	\N	971	569874500	1	4	1	\N	2	Female	6846a6021f02c_1749460482.	1994-03-30	0	android		\N		\N	\N	\N	0	1		1	0	Mahi	103	LQ000243	1	0	0	f	f	-OSIxoi595M3agyH3Gyp	1	Alam Khan	hibaejaz97+13@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	1	4	\N
286	Hamid	razahamid34+40@gmail.com	2025-08-18 11:29:00	$2y$12$AetgGRhNzwAYP3g4Ks9GAO4mAop6eaL7RdZyVLjquNKgeAMMc7VRm	\N	2025-08-18 11:29:00	2025-08-18 13:05:37	\N	\N	971	346466676	1	1	1	\N	2	Female	68a30ee96463a_1755516649.	2007-08-18	0	android				\N	\N	\N	0	1		0	0	Raza	237	LQ000286	1	0	0	f	f	-OXww8j7iXImIc2qb9xa	1	Hamid Raza	razahamid34@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
283	Hinna	hinna@gmail.com__deleted_acount283	2025-08-14 13:09:59	$2y$12$G0wqKWxH7LuzqoeObwauBuxkoDq8Ew276qGZQSRffeulleqiTbvwq	\N	2025-08-14 13:09:59	2025-08-14 14:13:27	\N	\N	971	484040040__deleted_acount283	1	2	0	\N	2	Female	689de035a240f_1755177013.	1982-08-14	0	ios				\N	\N	\N	0	1		0	1	Gonna	237	LQ000283	1	0	0	f	f	-OXcgtwaJWb9SNInrpuA	1	Ahmed	agmed@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
216	Aisha Ahmed	hibaejaz97+3@gmail.com	2025-08-14 13:32:41	$2y$12$wFCVTnaxlPIqqzI51BF77.JIgX4znxqEXF3TyDA6Ro.NGL0Fsn3r.	\N	2025-06-03 08:33:38	2025-08-14 13:32:56	\N	\N	971	569874522	1	5	1	\N	2	Female	683eb3a976ac2_1748939689.	1995-06-03	0	android		\N		\N	\N	\N	0	1		1	0	Aisha	103	LQ000216	1	0	1	f	f	-ORovAmN_3CTd3lP13MO	1	Ahmed Khan	hibaejaz97+4@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
287	Hamid	razahamid34+41@gmail.com	2025-08-18 13:07:46	$2y$12$d3fMcQgqBvreWY7G4Flg1e7.Ahk4Jc3VIgFSWUDfJnFuUYq5vaYku	\N	2025-08-18 13:07:46	2025-08-18 13:26:19	\N	\N	971	346466767	1	\N	1	\N	2	Female	\N	1981-08-18	0	android				\N	\N	\N	0	1		0	0	Hsbz	237	LQ000287	1	0	0	f	f	-OXxHkSjndsvl3pECMD2	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
290	Mahmoud shams	m.rahma@live.ae__deleted_acount290	2025-08-25 17:06:59	$2y$12$p94msx1EhxjuvykdFFcZzu2qGabxysZbOaUwuEn/vRrAyh10993UG	\N	2025-08-25 17:06:59	2025-09-04 17:56:42	\N	\N	971	558889964__deleted_acount290	1	\N	0	\N	2	Male	68ac98ec26513_1756141804.	1988-08-25	0	ios				\N	\N	\N	0	1		0	1	Mmmmmsdnna	237	LQ000290	1	0	0	f	f	-OYXBchnRnmv2E3TC1WN	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
288	Mahi Singh	hibaejaz97+28@gmail.com	2025-08-19 08:04:52	$2y$12$hPhw/D6LLgRCFKz99FEUbeGQz6Pa31vdvW/9EpbpxNCu90.U4uoWq	\N	2025-08-19 07:24:53	2025-08-19 08:05:17	\N	\N	971	979797994	1	2	1	\N	2	Female	\N	2007-04-10	0	android		\N		\N	\N	\N	0	1		1	0	Mahi	196	LQ000288	1	0	0	f	f	-OY0CrQOj4g4EMSRoA9f	1	Singh Khan	hibaejaz97+29@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
289	Hamid	razahamid34+42@gmail.com	2025-08-19 07:59:29	$2y$12$tEsYuINK69ymcd9EWZAvtuJ48Ypo0yvRFZTU40pIc7bkt1vjwBfuy	\N	2025-08-19 07:54:28	2025-11-14 15:33:55	\N	\N	971	345464664	\N	\N	1	\N	2	Female	\N	1996-08-19	0	android		\N		\N	\N	\N	0	1		1	0	Razahamid	237	LQ000289	1	0	0	f	f	-OY0JctXiTODQiJPtFSM	1	Hamid	razahamid34@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	1	0	\N
284	Khalid Mohammad ali	f.alrahma@hotmail.com__deleted_acount284	2025-08-17 13:15:49	$2y$12$aqdzSiOPwmnrA07Y6RURt.TjsO4/hYJe4SWlAJBXgByWGW9ni9L5K	\N	2025-08-17 13:15:49	2025-08-24 10:46:18	\N	\N	971	526776677__deleted_acount284	1	1	0	\N	2	Male	68a1d6b6a2f10_1755436726.	1997-08-17	0	ios				\N	\N	\N	0	1		0	1	Khalido	237	LQ000284	1	0	0	f	f	-OXsA-ZejYnPOsItYQyc	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
285	Hamid	razahamid34@gmail.com	2025-08-18 07:59:43	$2y$12$R6Qwf14EBxWdwdlQkFMtbOtr/vB/ZtF7kiG5rgAV89CQOmBXcNlcy	\N	2025-08-18 07:59:43	2025-09-16 20:32:00	\N	\N	971	344444444	\N	\N	1	\N	2	Male	68a2dd8835d5d_1755504008.	2007-08-18	0	ios	c2J6qhdN5kdOnx-meh5Inv:APA91bFDHObbORtQgNaIh8O4tHuPDR36fmzcd9CKCXflY3aCJqaw0fwDMWBsl_rqX-CI4I1nbGAtv465B9s8aibgJcYvniPVYO3_WAJNBboFtOuUNiX6uH0			\N	\N	\N	0	1	4b0f905c6dd45ae9ae98923004763252fe7766095e4e66e9d32a5c9c10a79e48	0	0	Jamie	237	LQ000285	1	0	0	f	f	-OXwBEyxEc71unUC7Jcc	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
248	Usama Shakeel	ushakeel@gmail.com	2025-09-23 12:53:58	$2y$12$aFklfzUU8H7zAlEoJjwvjO4pmSMTuFHm451QBtnbF33mcfOw.Lb9y	\N	2025-06-27 14:51:05	2025-09-23 12:54:12	\N	\N	971	123123123	1	1	1	\N	2	Male	\N	2025-06-27	0	ios		\N		\N	\N	\N	0	1		1	0	Usama	237	LQ000248	1	0	0	f	f	-OTlrinV6uYhUBXqCSKt	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
49	Mudassar Zahid	mudasserzahid48+7@gmail.com	2025-07-12 14:40:46	$2y$12$nqYBK3aM0xGn1Ohl2yK1FO8VWMwUcdo7o9M8D1WDO4IK0uHm3B0Jm	\N	2025-05-19 13:08:48	2025-09-20 07:27:09	\N	\N	+971	112233449	237	\N	1	\N	2	Male	\N	1994-05-25	0	android	121250	1111		\N	\N	\N	0	1	6bab963b06eeb6d723ea3c41c323d9d63950e66d3a8aa329aedae1779fa1c4b5	1	0	Mudassar	\N	LQ000049	1	0	0	f	f	\N	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	2	\N	\N	ID not matched	\N	\N	\N	0	4	\N
293	Usama shakeel	usama@umail.com	2025-09-23 18:17:12	$2y$12$64A6mlwa1gXM5TO0paN.nOG485tPyIBe6dH8oHJ685DrbLrCHrbbS	\N	2025-09-23 18:17:12	2025-09-24 09:47:23	\N	\N	971	333666999	1	\N	1	\N	2	Male	\N	2007-09-23	0	android				\N	\N	\N	0	1		0	0	Usama	237	LQ000293	1	0	0	f	f	-O_rmo8vrZ3Y_LY7cryq	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
292	Usama Shakeel	usama@gmail.com	2025-09-23 12:56:47	$2y$12$w8OcxtQtao5GCDbPvoKaLufrnvBwteiBzIgqSpkMCwpZ9iY5aMUbq	\N	2025-09-23 12:56:47	2025-09-24 09:31:35	\N	\N	971	123125125	1	2	1	\N	2	Male	\N	2007-09-23	0	ios				\N	\N	\N	0	1		0	0	Sami	237	LQ000292	1	0	0	f	f	-O_qdTcIfh0xsL08y6tw	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
295	Usama	ui@c.com	2025-09-24 11:14:17	$2y$12$5d8VbBkmmnM89lrdWQo52OZb6SAr80RpW9wF49z9gIqzOk9imBiVm	\N	2025-09-24 11:14:17	2025-09-24 11:14:40	\N	\N	971	333444111	1	1	1	\N	2	Male	\N	2007-09-24	0	android	dK3bxcGXQNqgSl0pY7n8S0:APA91bE6xuJRqXcrUWQZiHo4KRfHiTZCn3SUsEkDWuyBUTifpTRAPN-cKMQu4Noi-C87I7fVw5U6cc6Zdv-6SI3nZiBmHCGbsSnNiAO_hId1MsDbXK3yUHs			\N	\N	\N	0	1	be1b28b13e15f721f390bd4ea771a264180fe4c4bb924e82bf1a45c278d8a729	0	0	Samu	237	LQ000295	1	0	0	f	f	-O_vQaq_R1M3tk2mFOiK	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
291	Sara alr	has@gmail.com__deleted_acount291	2025-09-04 18:26:46	$2y$12$jQhGdKxz8doFWXaHHJSbeOqNwH/Vnl1bQPn2/l0clZWn/61zvGpEe	\N	2025-09-04 18:26:46	2025-10-01 14:08:50	\N	\N	971	501155880__deleted_acount291	1	1	0	\N	2	Female	68b9da16ccb86_1757010454.	1988-09-04	0	ios				\N	\N	\N	0	1		0	1	Sosooo	237	LQ000291	1	0	0	f	f	-OZKyn6dxS9pxJRnTYR4	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
297	Usama Shakeel	ushake@gmail.com	2025-09-24 17:38:12	$2y$12$Nv/iNLJ8E1RyBk1274IkRen2wggV7ODf5bcph6XaveIXRZyB1VYj.	\N	2025-09-24 17:38:12	2025-09-24 17:38:18	\N	\N	971	333444000	\N	\N	1	\N	2	Male	\N	2007-09-24	0	android	cZAEl2Y0RS-c_B9SWzCtpl:APA91bHY1wlczVd8qCvpHDpB3U5w0klpQOztRzfIzNdyYydB_RyfmIVvkMiGZ7UuR0UCsLyalDJzV5KhFWItmsNcePh8cqdO1IZRb5oWXuEJ3NqD3ICzjHA			\N	\N	\N	0	1	620352455c32804a2c2136d6defca51de43d9b31f555834c7a075e30aeb8ed70	0	0	Samu	119	LQ000297	1	0	0	f	f	-O_wnTeuvuDleMF7SdCO	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
301	Hamid	razahamid34+115@gmail.com	2025-11-14 18:27:30	$2y$12$QuzPYrgyhqxQWI4WcWJo2e1jJBXK4PSwY3fRIQxe/N2mTao2DQtW.	\N	2025-11-14 06:25:36	2025-11-14 18:27:30	\N	\N	971	344156246	\N	\N	1	\N	2	Female	6916cb95c9cc2_1763101589.	2007-11-14	0	android	cgzxIpTIQt2zbuCiXwKEml:APA91bHXNxbXqMEy5-SzmHJrwXSLK4gAkkbSynIBagFyuikoKuJbpACqD5ELEKUavh-r4ax3IDpk0W_5OPpWhW5z7DF7ohHaIEJN6zkCymA4PUx7nRCnvXs	\N		\N	\N	\N	0	1	fb21cccf8561f39a08832d028c00b4ec56456c12eb062ff701b811964d450c7f	1	0	Razagoraya	237	LQ000301	0	0	1	f	f	-Oe01bJSbaCtMEbX3Emy	0	Goraya		0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Father	971	346466646	0	4	\N
304	Hamid	razahamid34+201@gmail.com	2025-11-15 11:51:06	$2y$12$WRx4QBGgk6IjlQbYZFSmA.BOn73xpz2oELVadalr5saAS/BPxc.nC	\N	2025-11-15 11:51:06	2025-11-17 06:47:27	\N	\N	971	676766767	\N	\N	1	\N	2	Male	\N	2007-11-15	0	android				\N	\N	\N	0	1		0	0	PaymentPlanTest	237	LQ000304	1	0	0	f	f	-Oe6LhD4Jc8svsQk1ju6	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	3	#E1BE98
298	Usama shakeel	i@u.com	2025-09-25 05:57:17	$2y$12$7Cjf5tHHq64NsMIIsrT2W.1dWSrxxJxXANzUvm0Fst3yW4E7SPyhu	\N	2025-09-25 05:57:17	2025-09-25 07:52:41	\N	\N	971	777888000	\N	\N	1	\N	2	Male	\N	2007-09-25	0	ios	c9SlImaDukh5s1nwHd_P4K:APA91bERk_oqvNXEJtPXtIKwGYEq9-PB1xO8OahULiRWoj8h1cGvo0dCE8QXg4IICZKYt446dEjse0hlMmNye6QjfMg5enFEMRbSx4KCTsP6TWH8naxPhK8			\N	\N	\N	0	1	f008f9977f66dee31245d23245c04ff78d9ff774903fb6552c8a345a5e66ed82	0	0	Usama	119	LQ000298	1	0	0	f	f	-O_zRczM6zCmvgAw6F7r	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
229	Tara sheikh	hibaejaz97+10@gmail.com	2025-11-10 13:02:31	$2y$12$D.9jxk9.89WWWMlNIpgiAeE/zaVAdVBPCvCwuKB.jSUqBmxKAw3re	\N	2025-06-05 06:25:14	2025-11-10 13:03:24	\N	\N	971	561998755	1	6	1	\N	2	Female	6841386831a3b_1749104744.	1994-06-05	0	android		\N		\N	\N	\N	0	1		1	0	Tara	237	LQ000229	1	0	0	f	f	-ORykyGI1Y_DuVBzmOh0	1	Sheikh Shah	hibaejaz97+11@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	0	4	\N
300	Trser	sooraj.a2solution+1@gmail.com	2025-11-11 06:09:11	$2y$12$ikz7LPAOeNlR1QxJF9HoOOuBg9D2UuyQikPZUqGyrECgDp.vYiyc2	\N	2025-11-11 05:48:30	2025-11-11 12:11:29	\N	\N	971	505041800	1	1	1	\N	2	Female	6912cf04eccd2_1762840324.	2007-11-01	0	android		\N		\N	\N	\N	0	1		1	0	Tesbv	237	LQ000300	1	0	0	f	f	-OdlSLhmUyCa5DjKb6Ds	1	Sooraj	sooraj.a2solution@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Father	971	561660157	1	0	\N
302	Hamid	razahamid34+116@gmail.com	2025-11-14 07:46:19	$2y$12$UwNWzypSE.Bsnc5h1qnlQ.T5WjMgEEPW1Pf44O4uGiQQDTWbRQypu	\N	2025-11-14 07:46:19	2025-11-15 09:26:11	\N	\N	971	364646466	\N	\N	1	\N	2	Male	\N	1996-01-18	0	android				\N	\N	\N	0	1		0	0	Razahamid	237	LQ000302	1	0	0	f	f	-Oe0K4c7zbLvlrOi_Zsb	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	4	\N
210	Test	razahamid34+2@gmail.com	2025-11-15 09:27:01	$2y$12$fTBTv2G0UEnujoS03RvgQOW7qNYOVX1JnJO1sFyQ1ZM7wmfgb4MGW	\N	2025-05-31 15:02:31	2025-11-17 14:15:57	\N	\N	971	675767676	1	1	1	\N	2	Male	683b1a28da441_1748703784.	2007-05-31	0	android		\N			2025-11-14 15:34:39	0	0	1		1	0	Tes	237	LQ000210	1	0	0	f	f	-ORarQ1rWv4uBNlzfxna	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	1	0	#9F6540
305	Najam	razahamid34+najam@gmail.com	2025-11-17 15:28:18	$2y$12$EnFOiYccB539wwehj1sXOOw3j2YDyyXLTzx681f5Jt6qZ2VSxQoU6	\N	2025-11-17 14:06:23	2025-12-22 12:05:34	\N	\N	971	346464668	\N	\N	1	\N	2	Male	\N	1995-11-01	0	android		\N		\N	\N	\N	0	1		1	0	Najam Ali	237	LQ000305	1	0	0	f	f	-OeH7qQg-uTOtPkcPx0w	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Brother	971	346454545	1	4	#C4946E
306	Hamid	razahamid34+hamid@gmail.com	2025-11-17 14:24:00	$2y$12$tK/03IDuwdbaRi4tz4MlaOWBTeHzVdNb2VnDkJS/ufn6sH4C//Lq.	\N	2025-11-17 14:24:00	2025-11-17 15:29:34	\N	\N	971	345427565	\N	\N	1	\N	2	Male	\N	2007-11-17	0	android				\N	\N	\N	0	1		0	0	Hamid ra	237	LQ000306	1	0	0	f	f	-OeHBsBcyYABNGBYVd3K	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Fhb	971	345455456	1	4	#E1BE98
264	Sayid Khan	hibaejaz97+19@gmail.com	2025-11-17 15:07:58	$2y$12$9s22cwaAYQKw.Xv/C5B1OOYsov39QZuLl6PvG25fX83TVU.WQo9S2	\N	2025-07-12 08:54:57	2025-11-17 15:08:01	\N	\N	971	561997948	1	3	1	\N	2	Male	6872230b74af8_1752310539.	1986-07-12	0	ios	fRC9LjPZSW2cyxa7gg9cyG:APA91bHHui3o9zZJN31emQygFFT3jbxloym9DnyymXpfSlYXJtaaNuSNxXljijSWcfrq1ZxwXd3pnTqtbuU9iLR75Z90ePrr04vIChXbcT0xNUO0EU60YcA	\N		\N	\N	\N	0	1	194f6dc9968c87f862b4998264c952ecfdc5b0686c62349b4fe362aba1a29e01	1	0	Sayid	169	LQ000264	1	0	0	t	f	-OUxq3AvzYh0a2Fxcvw3	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	1	4	\N
303	Tehmina Wasi	hibaejaz97+29@gmail.com	2025-12-26 07:43:29	$2y$12$ivNmr6LQK/5HETSrvuqki.Apphux62NyzWJOfrFqHlbAur1i0PvJO	\N	2025-11-15 08:43:09	2025-12-26 11:05:33	\N	\N	971	561660100	1	2	1	\N	2	Female	69183d49d86df_1763196233.	2003-11-15	0	android	fvkQ9uezRqqb4Mzf5dOrdm:APA91bFciiTrtIN1M4S-SJ_UTFnkoI6wW1P4BfM6V7pdAWVoBDorr6f1r8IC8RBd36D53__zpfAKEmtJGXc94ScpoRpsECJcpzPxou9tcX4kv3E4Fpb9cTc	\N		\N	\N	\N	0	1	eb39abbc5b1c14268a5ce50f8b7cd24e375d9ca7dfc6f7e7241307a1702be42e	1	0	Tehmi	237	LQ000303	1	0	1	f	f	-Oe5ffviaFUIuL5ELr02	1	Wasi Khan		1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Grand father	971	561660157	1	4	#FDE2C7
267	Hania Amir	hibaejaz97+20@gmail.com	2025-12-18 10:33:07	$2y$12$AQQkZrRTNKAndHJs25vW9OpVUfd1ydr0noN/b7x2ZJAATI5fQKu/m	\N	2025-07-13 07:55:42	2025-12-26 11:44:42	\N	\N	971	561660845	1	1	1	\N	2	Female	687366d8d9fe1_1752393432.	1988-07-13	0	ios		\N		\N	\N	\N	0	1		1	0	Hani	169	LQ000267	1	0	0	f	f	-OV1m51AKbTzYr-bFyZ2	1	Amir khan	lhan@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	1	4	#C4946E
299	Shamsa khan	hibaejaz97+44@gmail.com	2025-11-17 08:04:25	$2y$12$B0YHG6GwF9NxdYz8SCgea.EMhpHNYsrl9L8.mISJwySsk9rOvVH7G	\N	2025-11-10 12:39:42	2025-11-18 06:17:17	\N	\N	971	561660178	1	1	1	\N	2	Female	\N	2007-11-10	0	android		\N		\N	\N	\N	0	1		1	0	Shamsa	237	LQ000299	1	0	0	f	f	-OdhlsK590_UAtISGLYf	1	Gulshan	hibaejaz97+45@gmail.com	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	1	3	\N
307	Hamid	razahamid34+ios@gmail.com	2025-11-18 06:06:58	$2y$12$U8G0EA62B1oKg.VHXDw1J.H6S2RDU5TdOi97PxkfrzpOlJdu4geL2	\N	2025-11-18 06:06:58	2025-11-18 10:33:45	\N	\N	971	245545454	\N	\N	1	\N	2	Male	\N	2007-11-18	0	ios				\N	\N	\N	0	1		0	0	Hamidios	237	LQ000307	1	0	0	f	f	-OeKZhON1fOYNuev1dMQ	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Father	971	325454545	1	4	#C4946E
308	Test	dhfd@gmail.com	2025-11-18 06:19:43	$2y$12$Y8FmoC4VcjCYz7u0VZ3qvOStx7r9pXxhiUmJBYCyHX9E14VD9hvwi	\N	2025-11-18 06:19:43	2025-11-18 06:19:45	\N	\N	971	454578588	\N	\N	1	\N	2	Male	\N	2007-11-12	0	android	dNrExFSuQwS9Ti8fzQzVOE:APA91bEiDc1VwNudqkbK5aZlevrUFtULFdbVyR0jmF0ZQ8d8rUEm5W3Gfz8uMJitrVzddpsa4Tsfkol6EJd1VZZtKqiAUdesdjwr12Jhksqzvpfg5rND3FY			\N	\N	\N	0	1	a8aea1ff4b44affd9af2f66c48792143caae43ad301a005b6f9788654b0c61c8	0	0	Yhd	237	LQ000308	1	0	0	f	f	-OeKbbyQG0jdJmy1m9CL	0	\N	\N	0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Ft	971	884548584	0	4	\N
311	Safia Ahmed	hibaejaz97+31@gmail.com	2025-11-18 09:34:35	$2y$12$Gy9GPmx0a7QLoNT1s/aHVebyFBY8ObiQIkfNe5VmAxL2iqZ3puPy.	\N	2025-11-18 09:32:24	2025-11-18 10:52:27	\N	\N	971	561660000	1	2	1	\N	2	Female	691c3d3f353a2_1763458367.	2007-11-14	0	android		\N		\N	\N	\N	0	1		1	0	Safia	237	LQ000311	1	0	0	f	f	-OeLIi_sLZ_LlS22ZLMJ	1	Ahmed Sami Khan		1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Father	971	561660157	1	3	#E1BE98
309	Vvff	dgw@gmail.com	2025-11-18 06:22:51	$2y$12$F9L.6MlPrtWzyj6kg6zu4eIsOERXqIGadPxk3Yd.CRhHwoWqZAI2K	\N	2025-11-18 06:22:51	2025-11-18 06:22:53	\N	\N	971	545648588	\N	\N	1	\N	2	Female	\N	2007-11-08	0	android	dNrExFSuQwS9Ti8fzQzVOE:APA91bEiDc1VwNudqkbK5aZlevrUFtULFdbVyR0jmF0ZQ8d8rUEm5W3Gfz8uMJitrVzddpsa4Tsfkol6EJd1VZZtKqiAUdesdjwr12Jhksqzvpfg5rND3FY			\N	\N	\N	0	1	fbd649c8c75f926b25216eb700d30f259f25677d235fdcf05222a210c2be413b	0	0	Gff	237	LQ000309	0	0	0	f	f	-OeKcKxBzqILfp8z6Ha5	0	Dsxd		0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Fds	971	557655555	0	4	\N
314	Fatima Osama Alrahma	f.alrahm@hotmail.com	2025-11-27 18:18:36	$2y$12$zDc.eHiE3m3jBYRNxIJk/ewuwdYRG6teSBAd2oKLB3bC1jZZ5H3Ra	\N	2025-11-27 18:18:36	2025-11-27 18:19:00	\N	\N	971	558888888	\N	\N	1	\N	2	Female	\N	1999-10-07	0	ios	cNoJASx3KkwTufZ-RLRvxp:APA91bEh0GRqIkb8_R6Ypad9c7cfiHXXlhZDUHzKHA9x37ZAYToTzKZe6QDDOOPb-nkueIyBNby5ZpyQsFPQb8NAgML8qiDWwy300z8CtLc32tHw10Lfbh8			\N	\N	\N	0	1	adc3801f06c3df3f1226e9eea3162776f7ac6aa04734ec8225366d12fe1860d0	0	0	Fatmamadxb	237	LQ000314	0	0	1	f	f	-Of5XTPdNgksZKA8k-sU	0	Fat mama		0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Grandchild’s girlfriend	971	550000000	0	4	\N
312	Hala AlRahma	info@ellevest.ae__deleted_acount312	2025-11-19 06:30:29	$2y$12$1V3ow2uHf1Gn/gNO/yuAm.pyH4s3UcV4mz6uA19FQ8dTretmEf6o6	\N	2025-11-19 06:30:29	2025-12-11 15:40:20	\N	\N	971	501775818__deleted_acount312	1	1	0	\N	2	Female	691d644cdae15_1763533900.	1980-11-21	0	ios				\N	\N	\N	0	1		0	1	Mage	237	LQ000312	1	0	1	f	f	-OePnfYVXnJGAFQc2E0G	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	3	#E1BE98
313	Ali Alrahma	ali.alrahma96@gmail.com__deleted_acount313	2025-11-24 11:11:41	$2y$12$xTvH3OlJeUJAPFEGCREDsOqQkFZgEzN9HKI40f2uVwLcq1pmNvaNq	\N	2025-11-24 11:11:41	2025-12-15 16:29:44	\N	\N	971	566822262__deleted_acount313	1	1	0	\N	2	Male	69243dc221d9e_1763982786.	1996-06-28	0	ios				\N	\N	\N	0	1		0	1	Ali	237	LQ000313	0	0	0	f	f	-OepYzQkZyYrR5etbXMi	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	4	#E1BE98
316	Fatma kharram	um_six_kids@hotmail.com	2025-12-11 15:53:20	$2y$12$fB7JvCzKtVPlmgB1enYareYlSpJiM3cy.rC.tO23NrW1EYJ7K9UJC	\N	2025-12-11 15:46:57	2025-12-11 15:57:41	\N	\N	971	558854786	1	1	1	\N	2	Female	\N	2000-03-19	0	ios	eFKEQjZra0F5h1N_arR5_k:APA91bEGkTWyCQ2_x9g-Y6Uj0EVXcM5rtuclU0_aH7KLm9oQ0_9TljQRaTHW1D0bJAv812umHyUKSFd9nBgO518enwHATyNXPVEaAvbRouutjLGvYgjy77Y	\N		\N	\N	\N	0	1	77466eb0e09b18ff9c4fc06852aa6efdaecdd89f8a7afcd90cba7356770cac92	1	0	Fatoom	237	LQ000316	1	0	0	f	f	-OgD50JKjwb57pyZeiMB	1	Marwa ibrahum		1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Mother	971	563606063	1	4	\N
317	Alia hamza	alia@gmail.com__deleted_acount317	2025-12-11 15:59:54	$2y$12$.Ob/RUZDw7TkKerP41YzPuBfwZr5nTq3DNjOVwaJEB473C2toneGC	\N	2025-12-11 15:56:21	2025-12-15 11:27:48	\N	\N	971	501234567__deleted_acount317	1	1	0	\N	2	Female	693ae9e515f6d_1765468645.	1995-12-11	0	ios		\N		\N	\N	\N	0	1		1	1	Alia	237	LQ000317	1	0	1	f	f	-OgD7A3fgNAbtPzeuJG_	1	حمزة علي ال رحمة		1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	اب	971	566822262	1	4	\N
315	Mohamed Osama Alrahma	malrahma@live.com__deleted_acount315	2025-11-27 18:24:24	$2y$12$C4IE8tMYkCBHWWHxvqA2rujwCvvRfBkbCYDAaLNi8pPHd/22guhRy	\N	2025-11-27 18:24:24	2025-12-15 16:29:48	\N	\N	971	544699666__deleted_acount315	1	1	0	\N	2	Male	6928979cb182b_1764267932.	1994-03-18	0	ios				\N	\N	\N	0	1		0	1	Fatnigga fr	237	LQ000315	1	0	1	f	f	-Of5YnD-Moht6fgc3GxQ	1	Jessica Alba		1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Girlfriend (second)	971	544469966	1	3	#5A463B
310	Zakir Muhammad	hibaejaz97+30@gmail.com	2025-12-31 07:02:11	$2y$12$EDQ0S.NZ1C9NMFa24rbn8eA7.T1U/LDqo.vLje6YJ0OrUKxa5xj7O	\N	2025-11-18 09:18:56	2025-12-31 07:03:53	\N	\N	971	561660187	1	2	1	\N	2	Male	691c3a723a455_1763457650.	1992-11-18	0	ios		\N		\N	\N	\N	0	1		1	0	Zakir	237	LQ000310	1	0	0	f	f	-OeLFdSGWIQlngjEss7E	1	Muhammad Khan		1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Father	971	561660157	1	4	#9F6540
320	Ali O Alrahma	ali.alrahma96@gmail.com	2025-12-15 17:18:52	$2y$12$9dbTZ53.3hvNN92G9UVfmucHtRjZ3bn7jubtwCr1rRVssg8PLKHQS	\N	2025-12-15 17:18:52	2025-12-15 17:57:09	\N	\N	971	566822262	1	1	1	\N	2	Male	6940432e20416_1765819182.	1993-12-15	0	ios	cTcqJC_UOE6VmulI4ZqHnk:APA91bGH4IzTd3JWleD50gjQIt2XK7Ep-bRY6VK_7iCs69b0QSpoJkWj_jFwyC4Bq8AcN_oStoKLofyhXxoZoN55eDon9XXQKZREH3Neo1t7HESCKTpgBfI			\N	\N	\N	0	1	865b2158a182b6ca38cadc1c8da88ab8bbf5030ed76989c354c5ed8717480ccc	0	0	Ali	237	LQ000320	1	0	0	f	f	-OgY0PfeTbY9tY85_MPT	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	1	#E1BE98
319	Fatma Osama Al Rahma	f.alrahma@hotmail.com	2025-12-15 17:11:03	$2y$12$348cLlmrroT95bjJX619ROiAqoL6vxv0wk3nEYNHcFU5HkMW0EiYq	\N	2025-12-15 17:11:03	2025-12-15 17:36:15	\N	\N	971	526776677	\N	\N	1	\N	2	Female	\N	1999-10-07	0	ios	eVaKuPHv70UkjznTstgE-V:APA91bFNp9nu0EX8s6-kwivhnnPagLEod3YLCnL2oBX2iBOnYmHjoCvElZ9Z_7ZEazUFVxVeRe6Sv4HYkS8y3RrCduISV8eVZ83iIjA3BijiSGkI3ZzOkww			\N	\N	\N	0	1	4b5274bd0a0fc6d34879c81700d4470dbe9dba39dc50b0b5e3ab201bac18659c	0	0	FAR	237	LQ000319	1	0	0	f	f	-OgXzcTDgi3X3WJa3KVa	1	علي اسامه		1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	اخ	971	566822262	1	4	#FDE2C7
280	M Ibrahim Ali	marwaa.ibrahim7@gmail.com__deleted_acount280	2025-12-11 15:57:31	$2y$12$PWnM8/KAZH6RBs9FhcRun.sQ2gkg87RJLAx.WOOdyRSWly6dMAZUO	\N	2025-08-13 13:55:14	2025-12-15 17:47:52	\N	\N	971	563606063__deleted_acount280	1	1	0	\N	2	Male	689c995e1b425_1755093342.	2007-08-13	0	ios		\N			2025-12-11 15:56:44	0	0	1		1	1	M Ali	237	LQ000280	1	0	0	f	f	-OXYhevSdfbn8upheurf	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	1	4	\N
318	Share with me ur name	info@ellevest.ae	2025-12-15 16:41:08	$2y$12$t.4vFRna4ywsHVFF9vHdz.xhgIdSQE5zHPScfLltH9RJYEoa142fu	\N	2025-12-15 16:41:08	2025-12-17 18:41:23	\N	\N	971	501775818	1	\N	1	\N	2	Female	\N	1992-12-15	0	ios	dC9aHwopEkUyugiKujflFV:APA91bHL_8zLpz6VQgOOgW40y4cUUy9qM6mRTO7YJRxkefynWT2B4ouEjaPCZ3Q6V4zaLa7EXkVxdrD_R7G331wU-yVxjwAc6gnRlUM1j0cF1KqkCkUEwf8			\N	\N	\N	0	1	9779aa9b9fb42da529e953da35447863b16505c426002eebb9152fa72092a490	0	0	Share	237	LQ000318	1	0	0	f	f	-OgXsm5Iqa07OFNgQ5Rb	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	4	#C4946E
323	Hamid	razahamid34+45@gmail.com	2025-12-22 16:04:50	$2y$12$U7.09LbV/Q18OyZCDWdpU.2/DrH7PO0u.DbGcUEHtH/0qo7j9ypDS	\N	2025-12-22 16:04:50	2025-12-22 17:02:52	\N	\N	971	346646464	1	1	1	\N	2	Male	69496c4b603c5_1766419531.	2007-12-22	0	android	cgzxIpTIQt2zbuCiXwKEml:APA91bHXNxbXqMEy5-SzmHJrwXSLK4gAkkbSynIBagFyuikoKuJbpACqD5ELEKUavh-r4ax3IDpk0W_5OPpWhW5z7DF7ohHaIEJN6zkCymA4PUx7nRCnvXs			\N	\N	\N	0	1	04dcc236ef7e122c13fdf4ae76a46d6b229deed82d8e95d1137e7f6c324efe79	0	0	Raza	237	LQ000323	0	0	0	f	f	-Oh5naWe2kvs24zO_hi1	1			0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				0	4	#C4946E
324	Hamid raza	razahamid34+98@gmail.com	2025-12-22 16:13:31	$2y$12$5Tar1L3ZGFk78YKl/i.kF.EVucmFNw0rqFLK0FJLbwsB3RdVXPyjm	\N	2025-12-22 16:13:31	2025-12-31 09:42:31	\N	\N	971	344156466	\N	\N	1	\N	2	Male	\N	2007-12-22	0	ios				\N	\N	\N	0	1		0	0	Raza	237	LQ000324	0	0	0	f	f	-Oh5p_miFwJb3k5dSHQi	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	4	#FDE2C7
327	Sania khan	hibaejaz97+45@gmail.com__deleted_acount327	2025-12-26 11:46:40	$2y$12$JqPkXxv3CtrVROy.zu.Qme8DQF4hl5BmYvYSsFf8I.DkNi8p1B09i	\N	2025-12-26 11:46:40	2025-12-26 12:19:19	\N	\N	971	561660124__deleted_acount327	\N	\N	0	\N	2	Female	\N	2002-12-26	0	android				\N	\N	\N	0	1		0	1	Sania	237	LQ000327	0	0	0	f	f	-OhPTs4FPdfSWb0enlll	0	Asad Khan		0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Father	971	561660157	0	4	\N
322	Hamid	razahamid34+46@gmail.com	2025-12-22 15:54:58	$2y$12$OuG60Mt0TVxIpo.FOXtRue57QO6Lehv90vkIZafLx0h1VTe7KcM42	\N	2025-12-22 15:54:58	2025-12-22 15:55:00	\N	\N	971	346464664	\N	\N	1	\N	2	Female	\N	2007-12-22	0	android	cgzxIpTIQt2zbuCiXwKEml:APA91bHXNxbXqMEy5-SzmHJrwXSLK4gAkkbSynIBagFyuikoKuJbpACqD5ELEKUavh-r4ax3IDpk0W_5OPpWhW5z7DF7ohHaIEJN6zkCymA4PUx7nRCnvXs			\N	\N	\N	0	1	8c8aa249b1d144eb6aef29f1ebae7cfedeae06b80129ee0e642351ca7fbfc3ef	0	0	Gaha	237	LQ000322	0	0	0	f	f	-Oh5lL5y1GdI2o2F7ZgT	0	Hamid		0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Father	971	346466464	0	4	\N
321	Marwa ibrahim	marwaa.ibrahim7@gmail.com__deleted_acount321	2025-12-15 17:51:21	$2y$12$1pTaJ1XUcvyqPb2iWX4OZOWW8TsyoBFKCfX/jswsqcxzdikYnr3WC	\N	2025-12-15 17:51:21	2026-01-01 06:22:10	\N	\N	971	563606063__deleted_acount321	1	1	0	\N	2	Female	69404aab643a1_1765821099.	1994-10-10	0	ios				\N	\N	\N	0	1		0	1	Mia	237	LQ000321	1	0	0	f	f	-OgY7qZMbFUHGVbg3_KK	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	4	#C4946E
325	Hamid raza	razahamid34+87@gmail.com	2025-12-22 17:11:20	$2y$12$0NsW3wBSxq/TFenGCABkcO1HDacP.0AotKKa00DR0m/Lu9NArlK5G	\N	2025-12-22 17:11:20	2025-12-23 13:27:19	\N	\N	971	346465757	1	1	1	\N	2	Male	69497bd17ce7b_1766423505.	2007-12-22	0	android				\N	\N	\N	0	1		0	0	Hamid	237	LQ000325	0	0	0	f	f	-Oh61op4BTFrRJpV3bLG	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	4	#E1BE98
329	Female	razahamid34+021@gmail.com	2025-12-29 10:31:21	$2y$12$lko3qZ5M5Xke5o4QoVqeduYYdsQA4uYUWaNHkk/qPWIeb9NZZr886	\N	2025-12-29 10:29:40	2025-12-29 10:31:21	\N	\N	971	345454554	\N	\N	1	\N	2	Female	6952583c51405_1767004220.	1995-12-29	0	android	eXLgrTCfSACnFs3KEoDHL-:APA91bHN6Ywl81IoVWesDPH3o3t_b4KnZZn0zhWmEsDIHZPY_jjmLEvzPTyOhhFqFF2kYKr6KG008NbQPkKocU-9K7pgDFDhYgnYsKSmu94CW8cN0RzJa_s	\N		\N	\N	\N	0	1	137cba03d12526cf2c8dd3376e14b096478462f04df766a8ec8a31e6a4bcb5ab	1	0	TestFemaleOne	237	LQ000329	0	0	1	f	f	-Ohde0IwiNLdUEjSiy4B	0			0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				0	4	\N
328	Sania Khan	hibaejaz97+45@gmail.com	2025-12-26 12:21:39	$2y$12$4CG3DQLXXVI5M0fNbzyjU.aQWJXk64zE.M6iv3HCpKONRP/dSS9OC	\N	2025-12-26 12:21:39	2025-12-26 12:21:41	\N	\N	971	561655555	\N	\N	1	\N	2	Female	\N	2000-12-26	0	android	f2hxbqlDT3SWfK6fxCtMoM:APA91bGaNaGOZkv-0We9-KJ9h-ebp6ksK1-by8nEPlaAhSc1Y_172mFyuOCnriuktsWz3LECG5xe7A4UeoEfpJV1OJxcG7Rt-s7ChK0vgBnutGrb_hPXoVQ			\N	\N	\N	0	1	bb67c9d4912bcfbfb57ff0b8c14fd1725ffcc884576139ddd5bebf1fc28e0fd8	0	0	Sania	237	LQ000328	0	0	0	f	f	-OhPasHg_TWUg6Hyfz9I	0	Asad Khan		0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Father	971	561660157	0	4	\N
326	Hamid	razahamid34+90@gmail.com	2025-12-23 13:28:22	$2y$12$pztbGwm1EsOGyjkWOlhvuOWbzshxcBFhHvaVGI/9NexmI0Kmuvrbe	\N	2025-12-23 13:28:22	2025-12-29 10:36:15	\N	\N	971	346647975	1	1	1	\N	2	Male	694a9904848d5_1766496516.	2007-12-23	0	android				\N	\N	\N	0	1		0	0	Raza	237	LQ000326	0	0	0	f	f	-OhAONTxGtTAk3V_X1fP	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	4	#C4946E
343	Hat als	fjdk@eudj.ae	2026-01-06 16:15:49	$2y$12$HYqZNfGGm4bIb1jW9fCsg.E2Mq71pOBgww9M/kszcNopf6d/5UroS	\N	2026-01-06 16:15:49	2026-01-06 16:40:23	\N	\N	971	558889964	1	1	1	\N	2	Male	695d355c53294_1767716188.	1994-01-06	0	ios	cWwDolKHS0dEmm-3L4-k0m:APA91bHpn_Lg3NCe5NwrQ5Phwlr34TLCI4h_Z-Z3LTu13jbz7gbtHnZO2spGAIvFzPzPqJnvT76Iwm5AWtxyCbmDm4Df5b-3cdK2UN1cZ8th2GjpHnzykMQ			\N	\N	\N	0	1	458feda46be41f8df9a7c2e3d34730e2e9f27d05cc4b475487a7f56d8b331d11	0	0	lUQ-196	237	LQ000343	1	0	1	f	f	-OiJ4x_N_70pj1MkB_YW	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	4	#FDE2C7
334	Samuna khan	hibaejaz97+50@gmail.com	2025-12-31 06:52:16	$2y$12$58VFP5CC7/8IRT3BFt3Ejenm26Z9okXIEkKw4Sx3SIR1pJsVOtF9e	\N	2025-12-30 08:56:00	2025-12-31 06:52:33	\N	\N	971	561667444	1	2	1	\N	2	Female	695393d69537f_1767085014.	2007-12-12	0	android		\N		\N	\N	\N	0	1		1	0	LU-1767084956	237	LQ000334	1	0	1	f	f	-OhiT9xNcMQBKgS2UP13	1	Sami khan		1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Grand father	971	561660157	1	4	#E1BE98
338	Hamid Raza	razahamid34+030@gmail.com	2025-12-31 09:43:44	$2y$12$StKOmeurvzSEpUd7gyxon.pOc8Km0M45FhlC/UcgB.Sx3zZT1h21m	\N	2025-12-31 09:43:44	2025-12-31 09:44:01	\N	\N	971	344564646	\N	\N	1	\N	2	Male	6954f060d2d7b_1767174240.	2007-12-31	0	ios	crFN_8U7-0RmqNrtQoF2oS:APA91bH6MjHzxQEmrv0oRLSuQjJX385YkD0SmOhmnJPNvLDFfMoAAu_wvAn48Uu4w9u4YwIsHcsKaAIAsk5-5HB103qdlhzAI6yOSUJg-kKJfvtD7FX7xPM			\N	\N	\N	0	1	a7624647b231eefcd4ec00895d7f5d4ab76838e9d92fd4fcfd4e974d7f6efaad	0	0	lUQ-191	237	LQ000338	1	0	1	f	f	-OhnmfskLpsXNHfn1Bzl	0			0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				0	4	\N
194	James Wilson	james@gmail.com	2025-12-29 10:37:08	$2y$12$3LJWHRCZ.AAmLtkfnAHoPu2kdN2.c4YhBw47ovEJlFwl0WEzJoZJy	\N	2025-05-29 08:07:31	2025-12-29 17:53:20	\N	\N	1	561667774	\N	\N	1	\N	2	Male	6838162b2b02f_1748506155.	1985-08-21	0	android		\N		\N	\N	\N	0	1		1	0	James	237	LQ000194	1	0	0	f	f	-ORQ4FFc3TwQGbI-jjhj	1	\N	\N	1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N	\N	1	4	\N
332	Fahmida khan	hibaejaz97+48@gmail.com	2025-12-31 06:59:29	$2y$12$HoWsFgLaGWnSym010GfIHuacBmFr7eHublgn5sCzYj54UVuwTA9cG	\N	2025-12-29 16:57:04	2026-01-08 06:41:38	\N	\N	971	561998744	1	1	1	\N	2	Female	6952b31173261_1767027473.	2001-12-18	0	android	eWX7sjnCS2m5hCVrJmQCz9:APA91bF0P65THqN7zmqgR59QG-PrJYbgHrEJHuwqnEkMxBPkB9db9hUfVehDlRswJm-KVqGPxQB_jVhMvwSz8Os0i1D6u3VQ8aHVIVP7zQZMtOLIg492TKM	\N		\N	\N	\N	0	1	0e155478a3a25291b88f3ce3205c2deb2be57e59bcba4e1f84f539806490b680	1	0	LU-1767027418	18	LQ000332	1	0	1	f	f	-Ohf1g3hDsbHZuIeqFIh	1	Aatif Khan		1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Father	971	544533295	1	3	#C4946E
336	Shafaq Mirza	hibaejaz97+52@gmail.com	2026-01-08 12:41:35	$2y$12$UTgKnGg6w67BYf0Q/xtEGeaJwhxPbXM.7w93wEEOrakavuPNW2efe	\N	2025-12-31 06:44:53	2026-01-08 12:41:35	\N	\N	971	569999333	1	1	1	\N	2	Female	6954c683b9e32_1767163523.	2007-12-11	0	android	e4LTG4v4Rtyk_A86uLH9NT:APA91bHbYlzPO7liVqVebSnekhsMtp--LERnc1U8vFq1rj8gqadcB37QYUDM9IBTEjUXCLdobOYSWAhwyNieaPkRMO0NonN7q7MzG__lkyfvO7WDARpVo7U	\N		\N	\N	\N	0	1	2049741bb8ff8d2e174e3f73f60871445e9095afb1981a410895423328a90ca7	1	0	lUQ-189	18	LQ000336	1	0	1	f	f	-Ohn8k5H7KRbIcDefTS5	1	Mirza Asad		1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Father	971	561660157	1	0	#C4946E
330	Auto generated	razahamid34+022@gmail.com	2025-12-31 08:36:48	$2y$12$jWil34QGyw2Ha6kHAaVuJubhRC3G7bR6LuL9EOCNKupX0I9nZAOr2	\N	2025-12-29 12:08:00	2025-12-31 08:39:02	\N	\N	971	655757575	1	3	1	\N	2	Male	69526f47e4492_1767010119.	2007-12-29	0	android		\N		\N	\N	\N	0	1		1	0	LU-1767010075	237	LQ000330	0	0	1	f	f	-Ohe-Wbp1SvoOmcCH2By	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	4	#E1BE98
335	Fasia Wasi	hibaejaz97+51@gmail.com	2025-12-31 06:51:38	$2y$12$pH81veKoPNymBIqDgrPljubGk18T.xkBvpD0oGw2CabKRfgwgkEDS	\N	2025-12-30 10:14:49	2025-12-31 06:51:38	\N	\N	971	561473333	\N	\N	1	\N	2	Female	6953a626c7398_1767089702.	2007-12-11	0	android	fhA9fkLXS8KTEW8GcR9x_u:APA91bEWnjvj4fKtz-TIMlPUEcCIq41ObotpnVo66yBieLjaOCukmwbEUYtoPyK380YNvYduZLPIxDKLs2YTJcqxh7UgvVkawnoifS1NY9r9_bUZpLxhFYc	\N		\N	\N	\N	0	1	3e96c94a46d41a206bc36df5927bd02714e294a7fe300a1b8f2c9b604564b0cb	1	0	lUQ-188	237	LQ000335	0	0	1	f	f	-OhikCWF9-loMLrJdiWg	0	Sumayya		0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Mother	971	561660157	0	4	\N
333	Zaki Khan	hibaejaz97+49@gmail.com	2025-12-31 08:27:01	$2y$12$I9514TK9LwO63o.OuQ2QkeU.9hALEY/Yy.RKkYAHmltCB9BU/rW96	\N	2025-12-30 07:30:25	2025-12-31 08:35:47	\N	\N	971	561660143	1	3	1	\N	2	Male	69537fbf8e79d_1767079871.	1994-12-16	0	android		\N		\N	\N	\N	0	1		1	0	LU-1767079819	18	LQ000333	1	0	1	f	f	-Ohi9_7ujMmyV2PKIn1O	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	3	#C4946E
331	Female	razahamid34+023@gmail.com	2025-12-31 08:39:33	$2y$12$suTCYXeItfzDtrgFKSTkzOEYWLJ9tsUBQAhrZ924w2qyyteCMx2sK	\N	2025-12-29 12:16:45	2025-12-31 08:40:31	\N	\N	971	254545454	1	1	1	\N	2	Female	6952713aef91d_1767010618.	1993-12-29	0	android		\N		\N	\N	\N	0	1		1	0	LU-1767010600	237	LQ000331	1	0	1	f	f	-Ohe1WbF33xsRH4Mfj3e	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	4	#9F6540
339	Hala AlRahma	garabeeb@gmail.com__deleted_acount339	2026-01-01 06:26:45	$2y$12$RA6J6cSZaaOb7d9X7Rs/muKYnvsdOKMsKO97vgtSkQJqTDCp61vRK	\N	2026-01-01 06:26:45	2026-01-06 15:17:22	\N	\N	971	506440520__deleted_acount339	1	1	0	\N	2	Female	695613ceeeeb9_1767248846.	1992-01-01	0	ios				\N	\N	\N	0	1		0	1	lUQ-192	18	LQ000339	1	0	1	f	f	-OhsEB12hlz4_pLz5e-V	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	4	#E1BE98
341	Mohamed Alrahma	malrahma@live.com	2026-01-06 15:29:18	$2y$12$g7o7CEdaNejXUWzWqbpZSujh7JEqVbcKyMI2UYM2yeumHamBwFmHm	\N	2026-01-06 15:29:18	2026-01-06 16:03:24	\N	\N	971	544699666	1	1	1	\N	2	Male	695d2ac37ca3e_1767713475.	1994-03-18	0	ios	e75Q6gJ7VUsos5fQF-qsph:APA91bFGo-uubeCU6fdad415ir1DlpOjBFNb7Pas0HSj75lZH4BI3okQtSmKwmFtOAvDVjqs3oVL7h3OEIyrt7s-3fywiZysdYcV-bm6Eb2SZ0fYe5WNsXg			\N	\N	\N	0	1	dd2173fafa930312919e6869b29646e66ea6806ee64017ee2ba16a17028f6df9	0	0	lUQ-194	237	LQ000341	1	0	0	f	f	-OiIvJPMyPaBiLtyFpXS	1	Jamaal shan		1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	Ding dong	971	544699666	1	3	#E1BE98
342	Hala alrahma	ssaralrahma@gmail.com	2026-01-06 16:04:00	$2y$12$pabmenPNiPRnfvJl90jvTOLThG6mUsKtyYfxhX6mwaHRGDXkwP6YS	\N	2026-01-06 16:04:00	2026-01-06 16:04:03	\N	\N	971	506425325	\N	\N	1	\N	2	Female	\N	2000-01-06	0	ios	cWwDolKHS0dEmm-3L4-k0m:APA91bHpn_Lg3NCe5NwrQ5Phwlr34TLCI4h_Z-Z3LTu13jbz7gbtHnZO2spGAIvFzPzPqJnvT76Iwm5AWtxyCbmDm4Df5b-3cdK2UN1cZ8th2GjpHnzykMQ			\N	\N	\N	0	1	b2ee130e784e52d73e6fc8cdbd229b9685f87dde696ab65de8336892ec16ca9a	0	0	lUQ-195	168	LQ000342	0	0	0	f	f	-OiJ2FaUR4iQDlzkv2v2	0	Osama		0	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	اب	971	506440521	0	4	\N
340	Marwa Ibrahim	marwaa.ibrahim7@gmail.com	2026-01-06 16:19:35	$2y$12$goSDzeNjNCd//EfryquGAOMiiskhFtIqfz8lgOC5jpRqKYxz9QsLa	\N	2026-01-01 06:31:33	2026-01-06 16:45:41	\N	\N	971	563606063	1	1	1	\N	2	Female	695614d979027_1767249113.	2007-01-01	0	ios	cil8fyDRnkrFppPNkgGPDz:APA91bFPQkx1J157RVO7z4HFDEYAgtaLfbegPsPJ3Q9F4SS2L76tihXOjlPKbd0t73Pa6UbSivp1XIbrUDXDdvlGXN0JaskMs68ZPW3xTSJ74M-pTTdJhzw	\N			2026-01-06 16:18:22	0	0	1	a78ac0ee4c83788478e285f6d8f8e28d85167027eb88ef5ee133a8237f102d93	1	0	lUQ-193	237	LQ000340	1	0	1	f	f	-OhsFHNdJRZFawJJBuqu	1	Ali alrahma		1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	الاب	971	566822262	1	4	#E1BE98
344	Haseeb Shafi	hibaejaz97+99@gmail.com	2026-01-08 08:10:31	$2y$12$6i5Mk3aJrjA7d.JZtveAY.6fjLvGVnrt3hR0LO/Jm0sNJHNEOSBXC	\N	2026-01-08 08:10:31	2026-01-08 08:46:14	\N	\N	971	569874444	1	5	1	\N	2	Male	695f669cb2206_1767859868.	1988-01-08	0	android				\N	\N	\N	0	1		0	0	lUQ-197	169	LQ000344	1	0	1	f	f	-OiRe3OxT_yKFcqprLw5	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	4	#5A463B
337	Tariq Mehmood	hibaejaz97+53@gmail.com	2026-01-08 12:42:00	$2y$12$AxNMJC3XP8eUlTyLk4NhjuTtUlA8x0L/Uqyzi/PdaJD0eA9kVqsrm	\N	2025-12-31 07:07:11	2026-01-08 12:42:00	\N	\N	971	561997744	1	3	1	\N	2	Male	6954cbb2423d4_1767164850.	1994-12-31	0	android	dVaeS7miQiyKt4b1wjXsgW:APA91bFLqpLvS54HrFeD-CyQHfZElToXXaa3y7Y4D6FOuF8HYZO04ZCq7fDePhGdlR4gZ1lHCLZ_-mUF81fdUYj8PCsnhLgYcPWpSXjr4WDsZP7Atcpt7ro	\N		\N	\N	\N	0	1	753e705bab9bf0f766c5846cdbc078f447625995a99e101ff46c4109d3ebc5b9	1	0	lUQ-190	237	LQ000337	1	0	1	f	f	-OhnDqRjq4J7w_fCm12G	1			1	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N				1	4	#5A463B
\.


--
-- Data for Name: verification_requests; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.verification_requests (id, user_id, name, email, remarks, status, licence_file, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: why_choose_us; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.why_choose_us (id, name, content, image, status, created_at, updated_at) FROM stdin;
1	Comprehensive Services	We provide a wide range of services under one roof, addressing all aspects of your documentation needs. Our comprehensive approach streamlines processes, saving you time and effort.	17356770326774546824d2a.png	t	2024-12-31 20:22:58	2024-12-31 20:30:32
2	Comprehensive Services 1	We provide a wide range of services under one roof, addressing all aspects of your documentation needs. Our comprehensive approach streamlines processes, saving you time and effort.	17356772606774554c66883.png	t	2024-12-31 20:34:20	2024-12-31 20:39:30
\.


--
-- Data for Name: work_process; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.work_process (id, name, content, image, status, created_at, updated_at) FROM stdin;
1	Find Your Requested Service	Explore our diverse range of services to quickly identify the solution that meets your needs.	173567910967745c859cd66.png	t	2024-12-31 21:05:09	2024-12-31 21:05:25
\.


--
-- Name: activities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.activities_id_seq', 9, true);


--
-- Name: ad_fields_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.ad_fields_id_seq', 740, true);


--
-- Name: ad_images_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.ad_images_id_seq', 18, true);


--
-- Name: ad_plans_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.ad_plans_id_seq', 32, true);


--
-- Name: ad_report_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.ad_report_types_id_seq', 1, false);


--
-- Name: ad_reports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.ad_reports_id_seq', 1, false);


--
-- Name: ad_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.ad_requests_id_seq', 1, false);


--
-- Name: ads_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.ads_id_seq', 187, true);


--
-- Name: answers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.answers_id_seq', 34, true);


--
-- Name: badges_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.badges_id_seq', 2, true);


--
-- Name: bookings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.bookings_id_seq', 1, false);


--
-- Name: categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.categories_id_seq', 162, true);


--
-- Name: category_atributes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.category_atributes_id_seq', 37, true);


--
-- Name: category_atributes_value_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.category_atributes_value_id_seq', 1488, true);


--
-- Name: category_fields_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.category_fields_id_seq', 82, true);


--
-- Name: challenges_companies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.challenges_companies_id_seq', 1, false);


--
-- Name: challenges_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.challenges_id_seq', 1, false);


--
-- Name: chat_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.chat_categories_id_seq', 8, true);


--
-- Name: chat_messages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.chat_messages_id_seq', 161, true);


--
-- Name: chats_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.chats_id_seq', 25, true);


--
-- Name: chronic_disease_variants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.chronic_disease_variants_id_seq', 5, true);


--
-- Name: chronic_diseases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.chronic_diseases_id_seq', 3, true);


--
-- Name: cities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.cities_id_seq', 17, true);


--
-- Name: cms_pages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.cms_pages_id_seq', 7, true);


--
-- Name: companies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.companies_id_seq', 1, false);


--
-- Name: contact_us_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.contact_us_id_seq', 1, false);


--
-- Name: countries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.countries_id_seq', 2, true);


--
-- Name: delivery_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.delivery_types_id_seq', 1, false);


--
-- Name: dress_codes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.dress_codes_id_seq', 8, true);


--
-- Name: educations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.educations_id_seq', 9, true);


--
-- Name: emirates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emirates_id_seq', 7, true);


--
-- Name: employments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.employments_id_seq', 2, true);


--
-- Name: event_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.event_types_id_seq', 1, false);


--
-- Name: events_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.events_id_seq', 1, false);


--
-- Name: failed_jobs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.failed_jobs_id_seq', 1, false);


--
-- Name: faqs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.faqs_id_seq', 1, false);


--
-- Name: field_conditions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.field_conditions_id_seq', 17, true);


--
-- Name: genetic_disease_variants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.genetic_disease_variants_id_seq', 11, true);


--
-- Name: genetic_diseases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.genetic_diseases_id_seq', 6, true);


--
-- Name: home_element_ads_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.home_element_ads_id_seq', 11, true);


--
-- Name: home_elements_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.home_elements_id_seq', 17, true);


--
-- Name: home_logos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.home_logos_id_seq', 9, true);


--
-- Name: home_page_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.home_page_settings_id_seq', 1, false);


--
-- Name: insights_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.insights_id_seq', 1, false);


--
-- Name: jobs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.jobs_id_seq', 1, false);


--
-- Name: known_languages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.known_languages_id_seq', 272, true);


--
-- Name: languages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.languages_id_seq', 1, false);


--
-- Name: languages_id_seq1; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.languages_id_seq1', 9, true);


--
-- Name: looking_ads_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.looking_ads_id_seq', 1, true);


--
-- Name: main_notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.main_notifications_id_seq', 23, true);


--
-- Name: marital_statuses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.marital_statuses_id_seq', 10, true);


--
-- Name: migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.migrations_id_seq', 272, true);


--
-- Name: motor_makes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.motor_makes_id_seq', 104, true);


--
-- Name: motor_models_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.motor_models_id_seq', 1418, true);


--
-- Name: nationalities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.nationalities_id_seq', 250, true);


--
-- Name: notification_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.notification_settings_id_seq', 603, true);


--
-- Name: notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.notifications_id_seq', 783, true);


--
-- Name: packages_addons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.packages_addons_id_seq', 1, false);


--
-- Name: packages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.packages_id_seq', 1, false);


--
-- Name: parent_approvals_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.parent_approvals_id_seq', 72, true);


--
-- Name: parent_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.parent_categories_id_seq', 10, true);


--
-- Name: payment_reports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.payment_reports_id_seq', 149, true);


--
-- Name: permissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.permissions_id_seq', 1, false);


--
-- Name: personal_access_tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.personal_access_tokens_id_seq', 680, true);


--
-- Name: plan_durations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.plan_durations_id_seq', 1, false);


--
-- Name: plan_durations_id_seq1; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.plan_durations_id_seq1', 3, true);


--
-- Name: popular_ads_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.popular_ads_id_seq', 1, true);


--
-- Name: pricing_plans_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.pricing_plans_id_seq', 1, false);


--
-- Name: pricing_plans_id_seq1; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.pricing_plans_id_seq1', 4, true);


--
-- Name: professions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.professions_id_seq', 5, true);


--
-- Name: promo_codes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.promo_codes_id_seq', 1, true);


--
-- Name: property_amenities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.property_amenities_id_seq', 44, true);


--
-- Name: questions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.questions_id_seq', 12, true);


--
-- Name: quotes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.quotes_id_seq', 1, false);


--
-- Name: report_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.report_types_id_seq', 8, true);


--
-- Name: reviews_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.reviews_id_seq', 1, false);


--
-- Name: roles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.roles_id_seq', 1, false);


--
-- Name: sects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sects_id_seq', 8, true);


--
-- Name: service_atributes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.service_atributes_id_seq', 1, false);


--
-- Name: service_atributes_value_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.service_atributes_value_id_seq', 1, false);


--
-- Name: service_booking_fields_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.service_booking_fields_id_seq', 1, false);


--
-- Name: service_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.service_details_id_seq', 1, false);


--
-- Name: service_faqs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.service_faqs_id_seq', 1, false);


--
-- Name: service_pricing_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.service_pricing_id_seq', 1, false);


--
-- Name: services_bookings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.services_bookings_id_seq', 1, false);


--
-- Name: services_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.services_id_seq', 1, false);


--
-- Name: services_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.services_types_id_seq', 1, false);


--
-- Name: site_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.site_settings_id_seq', 1, false);


--
-- Name: slider_buttons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.slider_buttons_id_seq', 1, false);


--
-- Name: slider_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.slider_items_id_seq', 1, true);


--
-- Name: sliders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sliders_id_seq', 1, false);


--
-- Name: sliders_id_seq1; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sliders_id_seq1', 1, true);


--
-- Name: sports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.sports_id_seq', 6, true);


--
-- Name: support_tickets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.support_tickets_id_seq', 13, true);


--
-- Name: target_types_company_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.target_types_company_id_seq', 1, false);


--
-- Name: target_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.target_types_id_seq', 1, false);


--
-- Name: temp_orders_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.temp_orders_id_seq', 236, true);


--
-- Name: temp_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.temp_users_id_seq', 197, true);


--
-- Name: translation_types_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.translation_types_categories_id_seq', 1, false);


--
-- Name: translation_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.translation_types_id_seq', 1, false);


--
-- Name: user_activities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_activities_id_seq', 252, true);


--
-- Name: user_blocks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_blocks_id_seq', 29, true);


--
-- Name: user_children_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_children_id_seq', 60, true);


--
-- Name: user_chronic_disease_variants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_chronic_disease_variants_id_seq', 10, true);


--
-- Name: user_chronic_diseases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_chronic_diseases_id_seq', 15, true);


--
-- Name: user_connection_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_connection_id_seq', 1, false);


--
-- Name: user_connections_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_connections_id_seq', 252, true);


--
-- Name: user_details_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_details_id_seq', 303, true);


--
-- Name: user_disease_variants_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_disease_variants_id_seq', 105, true);


--
-- Name: user_diseases_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_diseases_id_seq', 191, true);


--
-- Name: user_dress_codes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_dress_codes_id_seq', 92, true);


--
-- Name: user_educations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_educations_id_seq', 52, true);


--
-- Name: user_images_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_images_id_seq', 119, true);


--
-- Name: user_marital_statuses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_marital_statuses_id_seq', 105, true);


--
-- Name: user_matches_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_matches_id_seq', 18412, true);


--
-- Name: user_plans_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_plans_id_seq', 222, true);


--
-- Name: user_preferences_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_preferences_id_seq', 236, true);


--
-- Name: user_professions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_professions_id_seq', 69, true);


--
-- Name: user_reports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_reports_id_seq', 12, true);


--
-- Name: user_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_requests_id_seq', 229, true);


--
-- Name: user_sects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_sects_id_seq', 61, true);


--
-- Name: user_sports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_sports_id_seq', 219, true);


--
-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.users_id_seq', 344, true);


--
-- Name: verification_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.verification_requests_id_seq', 1, false);


--
-- Name: why_choose_us_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.why_choose_us_id_seq', 1, false);


--
-- Name: work_process_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.work_process_id_seq', 1, false);


--
-- Name: activities activities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.activities
    ADD CONSTRAINT activities_pkey PRIMARY KEY (id);


--
-- Name: ad_fields ad_fields_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_fields
    ADD CONSTRAINT ad_fields_pkey PRIMARY KEY (id);


--
-- Name: ad_images ad_images_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_images
    ADD CONSTRAINT ad_images_pkey PRIMARY KEY (id);


--
-- Name: ad_plans ad_plans_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_plans
    ADD CONSTRAINT ad_plans_pkey PRIMARY KEY (id);


--
-- Name: ad_report_types ad_report_types_name_ar_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_report_types
    ADD CONSTRAINT ad_report_types_name_ar_unique UNIQUE (name_ar);


--
-- Name: ad_report_types ad_report_types_name_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_report_types
    ADD CONSTRAINT ad_report_types_name_unique UNIQUE (name);


--
-- Name: ad_report_types ad_report_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_report_types
    ADD CONSTRAINT ad_report_types_pkey PRIMARY KEY (id);


--
-- Name: ad_reports ad_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_reports
    ADD CONSTRAINT ad_reports_pkey PRIMARY KEY (id);


--
-- Name: ad_requests ad_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.ad_requests
    ADD CONSTRAINT ad_requests_pkey PRIMARY KEY (id);


--
-- Name: answers answers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.answers
    ADD CONSTRAINT answers_pkey PRIMARY KEY (id);


--
-- Name: badges badges_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.badges
    ADD CONSTRAINT badges_pkey PRIMARY KEY (id);


--
-- Name: cache_locks cache_locks_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cache_locks
    ADD CONSTRAINT cache_locks_pkey PRIMARY KEY (key);


--
-- Name: cache cache_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cache
    ADD CONSTRAINT cache_pkey PRIMARY KEY (key);


--
-- Name: categories categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.categories
    ADD CONSTRAINT categories_pkey PRIMARY KEY (id);


--
-- Name: category_atributes category_atributes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.category_atributes
    ADD CONSTRAINT category_atributes_pkey PRIMARY KEY (id);


--
-- Name: category_atributes_value category_atributes_value_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.category_atributes_value
    ADD CONSTRAINT category_atributes_value_pkey PRIMARY KEY (id);


--
-- Name: category_fields category_fields_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.category_fields
    ADD CONSTRAINT category_fields_pkey PRIMARY KEY (id);


--
-- Name: challenges_companies challenges_companies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.challenges_companies
    ADD CONSTRAINT challenges_companies_pkey PRIMARY KEY (id);


--
-- Name: challenges challenges_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.challenges
    ADD CONSTRAINT challenges_pkey PRIMARY KEY (id);


--
-- Name: chat_categories chat_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chat_categories
    ADD CONSTRAINT chat_categories_pkey PRIMARY KEY (id);


--
-- Name: chat_messages chat_messages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chat_messages
    ADD CONSTRAINT chat_messages_pkey PRIMARY KEY (id);


--
-- Name: chats chats_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chats
    ADD CONSTRAINT chats_pkey PRIMARY KEY (id);


--
-- Name: chronic_disease_variants chronic_disease_variants_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chronic_disease_variants
    ADD CONSTRAINT chronic_disease_variants_pkey PRIMARY KEY (id);


--
-- Name: chronic_diseases chronic_diseases_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chronic_diseases
    ADD CONSTRAINT chronic_diseases_pkey PRIMARY KEY (id);


--
-- Name: cities cities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cities
    ADD CONSTRAINT cities_pkey PRIMARY KEY (id);


--
-- Name: cms_pages cms_pages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cms_pages
    ADD CONSTRAINT cms_pages_pkey PRIMARY KEY (id);


--
-- Name: companies companies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.companies
    ADD CONSTRAINT companies_pkey PRIMARY KEY (id);


--
-- Name: contact_us contact_us_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.contact_us
    ADD CONSTRAINT contact_us_pkey PRIMARY KEY (id);


--
-- Name: countries countries_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.countries
    ADD CONSTRAINT countries_pkey PRIMARY KEY (id);


--
-- Name: delivery_types delivery_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.delivery_types
    ADD CONSTRAINT delivery_types_pkey PRIMARY KEY (id);


--
-- Name: dress_codes dress_codes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.dress_codes
    ADD CONSTRAINT dress_codes_pkey PRIMARY KEY (id);


--
-- Name: educations educations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.educations
    ADD CONSTRAINT educations_pkey PRIMARY KEY (id);


--
-- Name: emirates emirates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emirates
    ADD CONSTRAINT emirates_pkey PRIMARY KEY (id);


--
-- Name: employments employments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.employments
    ADD CONSTRAINT employments_pkey PRIMARY KEY (id);


--
-- Name: event_types event_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.event_types
    ADD CONSTRAINT event_types_pkey PRIMARY KEY (id);


--
-- Name: events events_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.events
    ADD CONSTRAINT events_pkey PRIMARY KEY (id);


--
-- Name: failed_jobs failed_jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.failed_jobs
    ADD CONSTRAINT failed_jobs_pkey PRIMARY KEY (id);


--
-- Name: faqs faqs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.faqs
    ADD CONSTRAINT faqs_pkey PRIMARY KEY (id);


--
-- Name: field_conditions field_conditions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.field_conditions
    ADD CONSTRAINT field_conditions_pkey PRIMARY KEY (id);


--
-- Name: genetic_disease_variants genetic_disease_variants_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.genetic_disease_variants
    ADD CONSTRAINT genetic_disease_variants_pkey PRIMARY KEY (id);


--
-- Name: genetic_diseases genetic_diseases_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.genetic_diseases
    ADD CONSTRAINT genetic_diseases_pkey PRIMARY KEY (id);


--
-- Name: home_element_ads home_element_ads_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.home_element_ads
    ADD CONSTRAINT home_element_ads_pkey PRIMARY KEY (id);


--
-- Name: home_elements home_elements_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.home_elements
    ADD CONSTRAINT home_elements_pkey PRIMARY KEY (id);


--
-- Name: home_logos home_logos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.home_logos
    ADD CONSTRAINT home_logos_pkey PRIMARY KEY (id);


--
-- Name: home_page_settings home_page_settings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.home_page_settings
    ADD CONSTRAINT home_page_settings_pkey PRIMARY KEY (id);


--
-- Name: insights insights_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.insights
    ADD CONSTRAINT insights_pkey PRIMARY KEY (id);


--
-- Name: job_batches job_batches_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.job_batches
    ADD CONSTRAINT job_batches_pkey PRIMARY KEY (id);


--
-- Name: jobs jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.jobs
    ADD CONSTRAINT jobs_pkey PRIMARY KEY (id);


--
-- Name: known_languages known_languages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.known_languages
    ADD CONSTRAINT known_languages_pkey PRIMARY KEY (id);


--
-- Name: languages languages_code_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.languages
    ADD CONSTRAINT languages_code_unique UNIQUE (code);


--
-- Name: languages languages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.languages
    ADD CONSTRAINT languages_pkey PRIMARY KEY (id);


--
-- Name: looking_ads looking_ads_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.looking_ads
    ADD CONSTRAINT looking_ads_pkey PRIMARY KEY (id);


--
-- Name: main_notifications main_notifications_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.main_notifications
    ADD CONSTRAINT main_notifications_pkey PRIMARY KEY (id);


--
-- Name: marital_statuses marital_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.marital_statuses
    ADD CONSTRAINT marital_statuses_pkey PRIMARY KEY (id);


--
-- Name: migrations migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.migrations
    ADD CONSTRAINT migrations_pkey PRIMARY KEY (id);


--
-- Name: model_has_permissions model_has_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.model_has_permissions
    ADD CONSTRAINT model_has_permissions_pkey PRIMARY KEY (permission_id, model_id, model_type);


--
-- Name: model_has_roles model_has_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.model_has_roles
    ADD CONSTRAINT model_has_roles_pkey PRIMARY KEY (role_id, model_id, model_type);


--
-- Name: motor_makes motor_makes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.motor_makes
    ADD CONSTRAINT motor_makes_pkey PRIMARY KEY (id);


--
-- Name: motor_models motor_models_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.motor_models
    ADD CONSTRAINT motor_models_pkey PRIMARY KEY (id);


--
-- Name: nationalities nationalities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.nationalities
    ADD CONSTRAINT nationalities_pkey PRIMARY KEY (id);


--
-- Name: notification_settings notification_settings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notification_settings
    ADD CONSTRAINT notification_settings_pkey PRIMARY KEY (id);


--
-- Name: notifications notifications_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notifications
    ADD CONSTRAINT notifications_pkey PRIMARY KEY (id);


--
-- Name: packages_addons packages_addons_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.packages_addons
    ADD CONSTRAINT packages_addons_pkey PRIMARY KEY (id);


--
-- Name: packages packages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.packages
    ADD CONSTRAINT packages_pkey PRIMARY KEY (id);


--
-- Name: parent_approvals parent_approvals_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.parent_approvals
    ADD CONSTRAINT parent_approvals_pkey PRIMARY KEY (id);


--
-- Name: parent_categories parent_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.parent_categories
    ADD CONSTRAINT parent_categories_pkey PRIMARY KEY (id);


--
-- Name: password_reset_tokens password_reset_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.password_reset_tokens
    ADD CONSTRAINT password_reset_tokens_pkey PRIMARY KEY (email);


--
-- Name: payment_reports payment_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.payment_reports
    ADD CONSTRAINT payment_reports_pkey PRIMARY KEY (id);


--
-- Name: permissions permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.permissions
    ADD CONSTRAINT permissions_pkey PRIMARY KEY (id);


--
-- Name: personal_access_tokens personal_access_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.personal_access_tokens
    ADD CONSTRAINT personal_access_tokens_pkey PRIMARY KEY (id);


--
-- Name: personal_access_tokens personal_access_tokens_token_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.personal_access_tokens
    ADD CONSTRAINT personal_access_tokens_token_unique UNIQUE (token);


--
-- Name: plan_durations plan_durations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.plan_durations
    ADD CONSTRAINT plan_durations_pkey PRIMARY KEY (id);


--
-- Name: popular_ads popular_ads_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.popular_ads
    ADD CONSTRAINT popular_ads_pkey PRIMARY KEY (id);


--
-- Name: pricing_plans pricing_plans_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.pricing_plans
    ADD CONSTRAINT pricing_plans_pkey PRIMARY KEY (id);


--
-- Name: professions professions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.professions
    ADD CONSTRAINT professions_pkey PRIMARY KEY (id);


--
-- Name: promo_codes promo_codes_code_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.promo_codes
    ADD CONSTRAINT promo_codes_code_unique UNIQUE (code);


--
-- Name: promo_codes promo_codes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.promo_codes
    ADD CONSTRAINT promo_codes_pkey PRIMARY KEY (id);


--
-- Name: property_amenities property_amenities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.property_amenities
    ADD CONSTRAINT property_amenities_pkey PRIMARY KEY (id);


--
-- Name: questions questions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.questions
    ADD CONSTRAINT questions_pkey PRIMARY KEY (id);


--
-- Name: quotes quotes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quotes
    ADD CONSTRAINT quotes_pkey PRIMARY KEY (id);


--
-- Name: report_types report_types_name_ar_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.report_types
    ADD CONSTRAINT report_types_name_ar_unique UNIQUE (name_ar);


--
-- Name: report_types report_types_name_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.report_types
    ADD CONSTRAINT report_types_name_unique UNIQUE (name);


--
-- Name: report_types report_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.report_types
    ADD CONSTRAINT report_types_pkey PRIMARY KEY (id);


--
-- Name: reviews reviews_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.reviews
    ADD CONSTRAINT reviews_pkey PRIMARY KEY (id);


--
-- Name: role_has_permissions role_has_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.role_has_permissions
    ADD CONSTRAINT role_has_permissions_pkey PRIMARY KEY (permission_id, role_id);


--
-- Name: roles roles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.roles
    ADD CONSTRAINT roles_pkey PRIMARY KEY (id);


--
-- Name: sects sects_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sects
    ADD CONSTRAINT sects_pkey PRIMARY KEY (id);


--
-- Name: service_atributes service_atributes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.service_atributes
    ADD CONSTRAINT service_atributes_pkey PRIMARY KEY (id);


--
-- Name: service_atributes_value service_atributes_value_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.service_atributes_value
    ADD CONSTRAINT service_atributes_value_pkey PRIMARY KEY (id);


--
-- Name: service_booking_fields service_booking_fields_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.service_booking_fields
    ADD CONSTRAINT service_booking_fields_pkey PRIMARY KEY (id);


--
-- Name: service_details service_details_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.service_details
    ADD CONSTRAINT service_details_pkey PRIMARY KEY (id);


--
-- Name: service_faqs service_faqs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.service_faqs
    ADD CONSTRAINT service_faqs_pkey PRIMARY KEY (id);


--
-- Name: service_pricing service_pricing_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.service_pricing
    ADD CONSTRAINT service_pricing_pkey PRIMARY KEY (id);


--
-- Name: services_bookings services_bookings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.services_bookings
    ADD CONSTRAINT services_bookings_pkey PRIMARY KEY (id);


--
-- Name: services services_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.services
    ADD CONSTRAINT services_pkey PRIMARY KEY (id);


--
-- Name: services_types services_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.services_types
    ADD CONSTRAINT services_types_pkey PRIMARY KEY (id);


--
-- Name: sessions sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sessions
    ADD CONSTRAINT sessions_pkey PRIMARY KEY (id);


--
-- Name: site_settings site_settings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.site_settings
    ADD CONSTRAINT site_settings_pkey PRIMARY KEY (id);


--
-- Name: slider_items slider_items_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.slider_items
    ADD CONSTRAINT slider_items_pkey PRIMARY KEY (id);


--
-- Name: sliders sliders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sliders
    ADD CONSTRAINT sliders_pkey PRIMARY KEY (id);


--
-- Name: sports sports_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.sports
    ADD CONSTRAINT sports_pkey PRIMARY KEY (id);


--
-- Name: support_tickets support_tickets_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.support_tickets
    ADD CONSTRAINT support_tickets_pkey PRIMARY KEY (id);


--
-- Name: target_types_company target_types_company_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.target_types_company
    ADD CONSTRAINT target_types_company_pkey PRIMARY KEY (id);


--
-- Name: target_types target_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.target_types
    ADD CONSTRAINT target_types_pkey PRIMARY KEY (id);


--
-- Name: temp_orders temp_orders_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.temp_orders
    ADD CONSTRAINT temp_orders_pkey PRIMARY KEY (id);


--
-- Name: temp_users temp_users_email_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.temp_users
    ADD CONSTRAINT temp_users_email_unique UNIQUE (email);


--
-- Name: temp_users temp_users_external_customer_id_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.temp_users
    ADD CONSTRAINT temp_users_external_customer_id_unique UNIQUE (external_customer_id);


--
-- Name: temp_users temp_users_phone_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.temp_users
    ADD CONSTRAINT temp_users_phone_unique UNIQUE (phone);


--
-- Name: temp_users temp_users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.temp_users
    ADD CONSTRAINT temp_users_pkey PRIMARY KEY (id);


--
-- Name: translation_types_categories translation_types_categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.translation_types_categories
    ADD CONSTRAINT translation_types_categories_pkey PRIMARY KEY (id);


--
-- Name: translation_types translation_types_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.translation_types
    ADD CONSTRAINT translation_types_pkey PRIMARY KEY (id);


--
-- Name: user_activities user_activities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_activities
    ADD CONSTRAINT user_activities_pkey PRIMARY KEY (id);


--
-- Name: user_blocks user_blocks_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_blocks
    ADD CONSTRAINT user_blocks_pkey PRIMARY KEY (id);


--
-- Name: user_children user_children_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_children
    ADD CONSTRAINT user_children_pkey PRIMARY KEY (id);


--
-- Name: user_chronic_disease_variants user_chronic_disease_variants_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_chronic_disease_variants
    ADD CONSTRAINT user_chronic_disease_variants_pkey PRIMARY KEY (id);


--
-- Name: user_chronic_diseases user_chronic_diseases_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_chronic_diseases
    ADD CONSTRAINT user_chronic_diseases_pkey PRIMARY KEY (id);


--
-- Name: user_connection user_connection_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_connection
    ADD CONSTRAINT user_connection_pkey PRIMARY KEY (id);


--
-- Name: user_connections user_connections_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_connections
    ADD CONSTRAINT user_connections_pkey PRIMARY KEY (id);


--
-- Name: user_details user_details_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_details
    ADD CONSTRAINT user_details_pkey PRIMARY KEY (id);


--
-- Name: user_disease_variants user_disease_variants_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_disease_variants
    ADD CONSTRAINT user_disease_variants_pkey PRIMARY KEY (id);


--
-- Name: user_diseases user_diseases_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_diseases
    ADD CONSTRAINT user_diseases_pkey PRIMARY KEY (id);


--
-- Name: user_dress_codes user_dress_codes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_dress_codes
    ADD CONSTRAINT user_dress_codes_pkey PRIMARY KEY (id);


--
-- Name: user_educations user_educations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_educations
    ADD CONSTRAINT user_educations_pkey PRIMARY KEY (id);


--
-- Name: user_images user_images_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_images
    ADD CONSTRAINT user_images_pkey PRIMARY KEY (id);


--
-- Name: user_marital_statuses user_marital_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_marital_statuses
    ADD CONSTRAINT user_marital_statuses_pkey PRIMARY KEY (id);


--
-- Name: user_matches user_matches_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_matches
    ADD CONSTRAINT user_matches_pkey PRIMARY KEY (id);


--
-- Name: user_plans user_plans_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_plans
    ADD CONSTRAINT user_plans_pkey PRIMARY KEY (id);


--
-- Name: user_preferences user_preferences_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_preferences
    ADD CONSTRAINT user_preferences_pkey PRIMARY KEY (id);


--
-- Name: user_professions user_professions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_professions
    ADD CONSTRAINT user_professions_pkey PRIMARY KEY (id);


--
-- Name: user_reports user_reports_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_reports
    ADD CONSTRAINT user_reports_pkey PRIMARY KEY (id);


--
-- Name: user_requests user_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_requests
    ADD CONSTRAINT user_requests_pkey PRIMARY KEY (id);


--
-- Name: user_sects user_sects_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_sects
    ADD CONSTRAINT user_sects_pkey PRIMARY KEY (id);


--
-- Name: user_sports user_sports_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_sports
    ADD CONSTRAINT user_sports_pkey PRIMARY KEY (id);


--
-- Name: users users_external_customer_id_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.users
    ADD CONSTRAINT users_external_customer_id_unique UNIQUE (external_customer_id);


--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.users
    ADD CONSTRAINT users_pkey PRIMARY KEY (id);


--
-- Name: verification_requests verification_requests_email_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.verification_requests
    ADD CONSTRAINT verification_requests_email_unique UNIQUE (email);


--
-- Name: verification_requests verification_requests_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.verification_requests
    ADD CONSTRAINT verification_requests_pkey PRIMARY KEY (id);


--
-- Name: why_choose_us why_choose_us_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.why_choose_us
    ADD CONSTRAINT why_choose_us_pkey PRIMARY KEY (id);


--
-- Name: work_process work_process_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.work_process
    ADD CONSTRAINT work_process_pkey PRIMARY KEY (id);


--
-- Name: chat_messages_chat_id_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX chat_messages_chat_id_index ON public.chat_messages USING btree (chat_id);


--
-- Name: chat_messages_created_at_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX chat_messages_created_at_index ON public.chat_messages USING btree (created_at);


--
-- Name: chat_messages_is_read_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX chat_messages_is_read_index ON public.chat_messages USING btree (is_read);


--
-- Name: chat_messages_sender_id_receiver_id_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX chat_messages_sender_id_receiver_id_index ON public.chat_messages USING btree (sender_id, receiver_id);


--
-- Name: chats_decision_deadline_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX chats_decision_deadline_index ON public.chats USING btree (decision_deadline);


--
-- Name: chats_status_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX chats_status_index ON public.chats USING btree (status);


--
-- Name: chats_user_id_1_user_id_2_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX chats_user_id_1_user_id_2_index ON public.chats USING btree (user_id_1, user_id_2);


--
-- Name: delivery_types_translation_type_id_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX delivery_types_translation_type_id_index ON public.delivery_types USING btree (translation_type_id);


--
-- Name: failed_jobs_uuid_unique; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX failed_jobs_uuid_unique ON public.failed_jobs USING btree (uuid);


--
-- Name: home_page_settings_key_unique; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX home_page_settings_key_unique ON public.home_page_settings USING btree (key);


--
-- Name: jobs_queue_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX jobs_queue_index ON public.jobs USING btree (queue);


--
-- Name: model_has_permissions_model_id_model_type_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX model_has_permissions_model_id_model_type_index ON public.model_has_permissions USING btree (model_id, model_type);


--
-- Name: model_has_roles_model_id_model_type_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX model_has_roles_model_id_model_type_index ON public.model_has_roles USING btree (model_id, model_type);


--
-- Name: permissions_name_guard_name_unique; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX permissions_name_guard_name_unique ON public.permissions USING btree (name, guard_name);


--
-- Name: personal_access_tokens_tokenable_type_tokenable_id_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX personal_access_tokens_tokenable_type_tokenable_id_index ON public.personal_access_tokens USING btree (tokenable_type, tokenable_id);


--
-- Name: roles_name_guard_name_unique; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX roles_name_guard_name_unique ON public.roles USING btree (name, guard_name);


--
-- Name: sessions_last_activity_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX sessions_last_activity_index ON public.sessions USING btree (last_activity);


--
-- Name: sessions_user_id_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX sessions_user_id_index ON public.sessions USING btree (user_id);


--
-- Name: site_settings_key_unique; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX site_settings_key_unique ON public.site_settings USING btree (key);


--
-- Name: translation_types_categories_slug_unique; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX translation_types_categories_slug_unique ON public.translation_types_categories USING btree (slug);


--
-- Name: users_email_unique; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX users_email_unique ON public.users USING btree (email);


--
-- Name: answers answers_question_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.answers
    ADD CONSTRAINT answers_question_id_foreign FOREIGN KEY (question_id) REFERENCES public.questions(id) ON DELETE CASCADE;


--
-- Name: chat_messages chat_messages_answer_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chat_messages
    ADD CONSTRAINT chat_messages_answer_id_foreign FOREIGN KEY (answer_id) REFERENCES public.answers(id) ON DELETE SET NULL;


--
-- Name: chat_messages chat_messages_chat_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chat_messages
    ADD CONSTRAINT chat_messages_chat_id_foreign FOREIGN KEY (chat_id) REFERENCES public.chats(id) ON DELETE CASCADE;


--
-- Name: chat_messages chat_messages_question_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chat_messages
    ADD CONSTRAINT chat_messages_question_id_foreign FOREIGN KEY (question_id) REFERENCES public.questions(id) ON DELETE CASCADE;


--
-- Name: chat_messages chat_messages_receiver_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chat_messages
    ADD CONSTRAINT chat_messages_receiver_id_foreign FOREIGN KEY (receiver_id) REFERENCES public.users(id) ON DELETE CASCADE;


--
-- Name: chat_messages chat_messages_sender_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chat_messages
    ADD CONSTRAINT chat_messages_sender_id_foreign FOREIGN KEY (sender_id) REFERENCES public.users(id) ON DELETE CASCADE;


--
-- Name: chats chats_user_id_1_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chats
    ADD CONSTRAINT chats_user_id_1_foreign FOREIGN KEY (user_id_1) REFERENCES public.users(id) ON DELETE CASCADE;


--
-- Name: chats chats_user_id_2_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chats
    ADD CONSTRAINT chats_user_id_2_foreign FOREIGN KEY (user_id_2) REFERENCES public.users(id) ON DELETE CASCADE;


--
-- Name: chronic_disease_variants chronic_disease_variants_chronic_disease_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.chronic_disease_variants
    ADD CONSTRAINT chronic_disease_variants_chronic_disease_id_foreign FOREIGN KEY (chronic_disease_id) REFERENCES public.chronic_diseases(id) ON DELETE CASCADE;


--
-- Name: events events_event_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.events
    ADD CONSTRAINT events_event_type_id_fkey FOREIGN KEY (event_type_id) REFERENCES public.event_types(id) ON DELETE CASCADE;


--
-- Name: model_has_permissions model_has_permissions_permission_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.model_has_permissions
    ADD CONSTRAINT model_has_permissions_permission_id_fkey FOREIGN KEY (permission_id) REFERENCES public.permissions(id) ON DELETE CASCADE;


--
-- Name: model_has_roles model_has_roles_role_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.model_has_roles
    ADD CONSTRAINT model_has_roles_role_id_fkey FOREIGN KEY (role_id) REFERENCES public.roles(id) ON DELETE CASCADE;


--
-- Name: notification_settings notification_settings_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notification_settings
    ADD CONSTRAINT notification_settings_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE CASCADE;


--
-- Name: questions questions_chat_category_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.questions
    ADD CONSTRAINT questions_chat_category_id_foreign FOREIGN KEY (chat_category_id) REFERENCES public.chat_categories(id) ON DELETE CASCADE;


--
-- Name: quotes quotes_service_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.quotes
    ADD CONSTRAINT quotes_service_id_fkey FOREIGN KEY (service_id) REFERENCES public.services(id) ON DELETE CASCADE;


--
-- Name: role_has_permissions role_has_permissions_permission_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.role_has_permissions
    ADD CONSTRAINT role_has_permissions_permission_id_fkey FOREIGN KEY (permission_id) REFERENCES public.permissions(id) ON DELETE CASCADE;


--
-- Name: role_has_permissions role_has_permissions_role_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.role_has_permissions
    ADD CONSTRAINT role_has_permissions_role_id_fkey FOREIGN KEY (role_id) REFERENCES public.roles(id) ON DELETE CASCADE;


--
-- Name: service_details service_details_service_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.service_details
    ADD CONSTRAINT service_details_service_id_fkey FOREIGN KEY (service_id) REFERENCES public.services(id) ON DELETE CASCADE;


--
-- Name: service_faqs service_faqs_service_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.service_faqs
    ADD CONSTRAINT service_faqs_service_id_fkey FOREIGN KEY (service_id) REFERENCES public.services(id) ON DELETE CASCADE;


--
-- Name: user_chronic_diseases user_chronic_diseases_chronic_disease_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_chronic_diseases
    ADD CONSTRAINT user_chronic_diseases_chronic_disease_id_foreign FOREIGN KEY (chronic_disease_id) REFERENCES public.chronic_diseases(id) ON DELETE SET NULL;


--
-- Name: user_chronic_diseases user_chronic_diseases_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_chronic_diseases
    ADD CONSTRAINT user_chronic_diseases_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE SET NULL;


--
-- Name: user_connection user_connection_connected_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_connection
    ADD CONSTRAINT user_connection_connected_user_id_foreign FOREIGN KEY (connected_user_id) REFERENCES public.users(id) ON DELETE CASCADE;


--
-- Name: user_connection user_connection_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_connection
    ADD CONSTRAINT user_connection_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE CASCADE;


--
-- Name: user_diseases user_diseases_genetic_disease_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_diseases
    ADD CONSTRAINT user_diseases_genetic_disease_id_foreign FOREIGN KEY (genetic_disease_id) REFERENCES public.genetic_diseases(id) ON DELETE SET NULL;


--
-- Name: user_diseases user_diseases_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_diseases
    ADD CONSTRAINT user_diseases_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE SET NULL;


--
-- Name: user_dress_codes user_dress_codes_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_dress_codes
    ADD CONSTRAINT user_dress_codes_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE SET NULL;


--
-- Name: user_educations user_educations_education_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_educations
    ADD CONSTRAINT user_educations_education_id_foreign FOREIGN KEY (education_id) REFERENCES public.educations(id) ON DELETE SET NULL;


--
-- Name: user_educations user_educations_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_educations
    ADD CONSTRAINT user_educations_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE SET NULL;


--
-- Name: user_marital_statuses user_marital_statuses_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_marital_statuses
    ADD CONSTRAINT user_marital_statuses_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE SET NULL;


--
-- Name: user_professions user_professions_profession_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_professions
    ADD CONSTRAINT user_professions_profession_id_foreign FOREIGN KEY (profession_id) REFERENCES public.professions(id) ON DELETE SET NULL;


--
-- Name: user_professions user_professions_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_professions
    ADD CONSTRAINT user_professions_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE SET NULL;


--
-- Name: user_sects user_sects_sect_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_sects
    ADD CONSTRAINT user_sects_sect_id_foreign FOREIGN KEY (sect_id) REFERENCES public.sects(id) ON DELETE SET NULL;


--
-- Name: user_sects user_sects_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_sects
    ADD CONSTRAINT user_sects_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE SET NULL;


--
-- Name: SCHEMA public; Type: ACL; Schema: -; Owner: postgres
--

REVOKE USAGE ON SCHEMA public FROM PUBLIC;
GRANT ALL ON SCHEMA public TO PUBLIC;


--
-- PostgreSQL database dump complete
--

\unrestrict X3j9hakcvfnkSghwMZuYf9HCsqG0YDgxthBtHcn5LN70xAFZFRF3zwhjQgpv46J

