--
-- PostgreSQL database dump
--

\restrict jBkumW9gH5yPcmMvDUwbefLhf7Foaxa9Q0MqmaaBbkwGmLG0CYp3x10sABvAOMY

-- Dumped from database version 14.22 (Ubuntu 14.22-0ubuntu0.22.04.1)
-- Dumped by pg_dump version 14.22 (Ubuntu 14.22-0ubuntu0.22.04.1)

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;

SET default_tablespace = '';

SET default_table_access_method = heap;

--
-- Name: activity_log; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.activity_log (
    id bigint NOT NULL,
    log_name character varying(255),
    description text NOT NULL,
    subject_type character varying(255),
    subject_id bigint,
    causer_type character varying(255),
    causer_id bigint,
    properties json,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    event character varying(255),
    batch_uuid uuid
);


--
-- Name: activity_log_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: activity_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.activity_log_id_seq OWNED BY public.activity_log.id;


--
-- Name: attendances; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.attendances (
    id bigint NOT NULL,
    student_id bigint NOT NULL,
    school_class_id bigint NOT NULL,
    school_year_id bigint NOT NULL,
    subject_id bigint,
    teacher_id bigint,
    date date NOT NULL,
    status character varying(20) DEFAULT 'present'::character varying NOT NULL,
    comment text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


--
-- Name: attendances_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: attendances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.attendances_id_seq OWNED BY public.attendances.id;


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

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


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

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


--
-- Name: classes; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.classes (
    id bigint NOT NULL,
    name character varying(100) NOT NULL,
    level character varying(50) NOT NULL,
    cycle character varying(20) NOT NULL,
    school_id bigint NOT NULL,
    school_year_id bigint NOT NULL,
    main_teacher_id bigint,
    capacity smallint,
    room character varying(100),
    status character varying(20) DEFAULT 'active'::character varying NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


--
-- Name: classes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: classes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.classes_id_seq OWNED BY public.classes.id;


--
-- Name: communes; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.communes (
    id bigint NOT NULL,
    department_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    code character varying(10),
    is_active boolean DEFAULT true NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


--
-- Name: communes_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: communes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.communes_id_seq OWNED BY public.communes.id;


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

CREATE TABLE public.countries (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    code character varying(3) NOT NULL,
    phone_code character varying(10),
    currency character varying(10),
    currency_symbol character varying(5),
    is_active boolean DEFAULT true NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


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

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


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

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


--
-- Name: departments; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.departments (
    id bigint NOT NULL,
    region_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    code character varying(10),
    is_active boolean DEFAULT true NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


--
-- Name: departments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: departments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.departments_id_seq OWNED BY public.departments.id;


--
-- Name: enrollments; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.enrollments (
    id bigint NOT NULL,
    student_id bigint NOT NULL,
    school_class_id bigint NOT NULL,
    school_year_id bigint NOT NULL,
    school_id bigint NOT NULL,
    enrollment_date date NOT NULL,
    status character varying(20) DEFAULT 'enrolled'::character varying NOT NULL,
    notes text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


--
-- Name: enrollments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: enrollments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.enrollments_id_seq OWNED BY public.enrollments.id;


--
-- Name: evaluations; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.evaluations (
    id bigint NOT NULL,
    school_class_id bigint NOT NULL,
    subject_id bigint NOT NULL,
    school_year_id bigint NOT NULL,
    teacher_id bigint,
    title character varying(150) NOT NULL,
    type character varying(20) NOT NULL,
    period character varying(20) NOT NULL,
    date date NOT NULL,
    max_grade numeric(5,2) DEFAULT '20'::numeric NOT NULL,
    coefficient numeric(4,2) DEFAULT '1'::numeric NOT NULL,
    is_locked boolean DEFAULT false NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


--
-- Name: evaluations_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: evaluations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.evaluations_id_seq OWNED BY public.evaluations.id;


--
-- Name: exam_candidates; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.exam_candidates (
    id bigint NOT NULL,
    exam_id bigint NOT NULL,
    student_id bigint NOT NULL,
    school_id bigint,
    school_class_id bigint,
    registration_number character varying(20),
    candidate_status character varying(20) DEFAULT 'registered'::character varying NOT NULL,
    score numeric(4,2),
    mention character varying(50),
    is_passed boolean DEFAULT false NOT NULL,
    notes text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


--
-- Name: exam_candidates_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: exam_candidates_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.exam_candidates_id_seq OWNED BY public.exam_candidates.id;


--
-- Name: exams; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.exams (
    id bigint NOT NULL,
    school_year_id bigint NOT NULL,
    name character varying(150) NOT NULL,
    type character varying(20) NOT NULL,
    status character varying(20) DEFAULT 'draft'::character varying NOT NULL,
    center character varying(200),
    date_start date,
    date_end date,
    registration_deadline date,
    description text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


--
-- Name: exams_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: exams_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.exams_id_seq OWNED BY public.exams.id;


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

CREATE TABLE public.failed_jobs (
    id bigint 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
);


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

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


--
-- Name: failed_jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.failed_jobs_id_seq OWNED BY public.failed_jobs.id;


--
-- Name: grades; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.grades (
    id bigint NOT NULL,
    evaluation_id bigint NOT NULL,
    student_id bigint NOT NULL,
    grade numeric(5,2),
    comment text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


--
-- Name: grades_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.grades_id_seq OWNED BY public.grades.id;


--
-- Name: guardians; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.guardians (
    id bigint NOT NULL,
    first_name character varying(100) NOT NULL,
    last_name character varying(100) NOT NULL,
    phone character varying(20) NOT NULL,
    email character varying(150),
    profession character varying(100),
    address text,
    is_active boolean DEFAULT true NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    user_id bigint
);


--
-- Name: guardians_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: guardians_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.guardians_id_seq OWNED BY public.guardians.id;


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

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
);


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

CREATE TABLE public.jobs (
    id bigint 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
);


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

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


--
-- Name: jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.jobs_id_seq OWNED BY public.jobs.id;


--
-- Name: localities; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.localities (
    id bigint NOT NULL,
    commune_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    is_active boolean DEFAULT true NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


--
-- Name: localities_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: localities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.localities_id_seq OWNED BY public.localities.id;


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

CREATE TABLE public.migrations (
    id integer NOT NULL,
    migration character varying(255) NOT NULL,
    batch integer NOT NULL
);


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

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


--
-- Name: migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.migrations_id_seq OWNED BY public.migrations.id;


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

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


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

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


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

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
);


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

CREATE TABLE public.permissions (
    id bigint 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
);


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

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


--
-- Name: permissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.permissions_id_seq OWNED BY public.permissions.id;


--
-- Name: regions; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.regions (
    id bigint NOT NULL,
    country_id bigint NOT NULL,
    name character varying(255) NOT NULL,
    code character varying(10),
    is_active boolean DEFAULT true NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


--
-- Name: regions_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: regions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.regions_id_seq OWNED BY public.regions.id;


--
-- Name: report_cards; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.report_cards (
    id bigint NOT NULL,
    student_id bigint NOT NULL,
    school_class_id bigint NOT NULL,
    school_year_id bigint NOT NULL,
    period character varying(20) NOT NULL,
    overall_average numeric(5,2),
    rank smallint,
    absences_count smallint DEFAULT '0'::smallint NOT NULL,
    director_comment text,
    is_published boolean DEFAULT false NOT NULL,
    published_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
);


--
-- Name: report_cards_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: report_cards_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.report_cards_id_seq OWNED BY public.report_cards.id;


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

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


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

CREATE TABLE public.roles (
    id bigint 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
);


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

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


--
-- Name: roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.roles_id_seq OWNED BY public.roles.id;


--
-- Name: school_years; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.school_years (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    start_date date NOT NULL,
    end_date date NOT NULL,
    status character varying(255) DEFAULT 'upcoming'::character varying NOT NULL,
    country_id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


--
-- Name: school_years_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: school_years_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.school_years_id_seq OWNED BY public.school_years.id;


--
-- Name: schools; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.schools (
    id bigint NOT NULL,
    name character varying(255) NOT NULL,
    code character varying(255) NOT NULL,
    type character varying(255) DEFAULT 'public'::character varying NOT NULL,
    cycle character varying(255) DEFAULT 'primary'::character varying NOT NULL,
    status character varying(255) DEFAULT 'active'::character varying NOT NULL,
    country_id bigint NOT NULL,
    region_id bigint NOT NULL,
    department_id bigint,
    commune_id bigint,
    locality_id bigint,
    address character varying(255),
    phone character varying(20),
    email character varying(255),
    director_name character varying(255),
    latitude numeric(10,7),
    longitude numeric(10,7),
    founded_year integer,
    capacity integer,
    rooms_count integer,
    logo character varying(255),
    description text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


--
-- Name: schools_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: schools_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.schools_id_seq OWNED BY public.schools.id;


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

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
);


--
-- Name: student_guardian; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.student_guardian (
    id bigint NOT NULL,
    student_id bigint NOT NULL,
    guardian_id bigint NOT NULL,
    relationship character varying(20) DEFAULT 'guardian'::character varying NOT NULL,
    is_primary boolean DEFAULT false NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


--
-- Name: student_guardian_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: student_guardian_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.student_guardian_id_seq OWNED BY public.student_guardian.id;


--
-- Name: students; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.students (
    id bigint NOT NULL,
    matricule character varying(30),
    first_name character varying(100) NOT NULL,
    last_name character varying(100) NOT NULL,
    gender character(1) NOT NULL,
    birth_date date NOT NULL,
    birth_place character varying(100),
    nationality character varying(100) DEFAULT 'Tchadienne'::character varying NOT NULL,
    photo character varying(255),
    birth_certificate boolean DEFAULT false NOT NULL,
    birth_certificate_number character varying(50),
    address text,
    school_id bigint NOT NULL,
    status character varying(20) DEFAULT 'active'::character varying NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    user_id bigint
);


--
-- Name: students_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: students_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.students_id_seq OWNED BY public.students.id;


--
-- Name: subjects; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.subjects (
    id bigint NOT NULL,
    name character varying(100) NOT NULL,
    code character varying(20) NOT NULL,
    cycle character varying(20),
    coefficient numeric(4,2) DEFAULT '1'::numeric NOT NULL,
    is_active boolean DEFAULT true NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


--
-- Name: subjects_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: subjects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.subjects_id_seq OWNED BY public.subjects.id;


--
-- Name: teacher_assignments; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.teacher_assignments (
    id bigint NOT NULL,
    teacher_id bigint NOT NULL,
    school_class_id bigint NOT NULL,
    subject_id bigint NOT NULL,
    school_year_id bigint NOT NULL,
    hours_per_week smallint,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


--
-- Name: teacher_assignments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: teacher_assignments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.teacher_assignments_id_seq OWNED BY public.teacher_assignments.id;


--
-- Name: teachers; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.teachers (
    id bigint NOT NULL,
    user_id bigint NOT NULL,
    school_id bigint NOT NULL,
    matricule character varying(30),
    gender character(1),
    birth_date date,
    specialty character varying(100),
    degree character varying(100),
    status character varying(20) DEFAULT 'civil'::character varying NOT NULL,
    hired_at date,
    address character varying(255),
    is_active boolean DEFAULT true NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


--
-- Name: teachers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

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


--
-- Name: teachers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.teachers_id_seq OWNED BY public.teachers.id;


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

CREATE TABLE public.users (
    id bigint NOT NULL,
    first_name character varying(255) NOT NULL,
    last_name character varying(255) NOT NULL,
    email character varying(255) NOT NULL,
    phone character varying(20),
    email_verified_at timestamp(0) without time zone,
    password character varying(255) NOT NULL,
    avatar character varying(255),
    locale character varying(5) DEFAULT 'fr'::character varying NOT NULL,
    is_active boolean DEFAULT true NOT NULL,
    school_id bigint,
    region_id bigint,
    last_login_at timestamp(0) without time zone,
    remember_token character varying(100),
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    deleted_at timestamp(0) without time zone
);


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

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


--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;


--
-- Name: activity_log id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: attendances id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: classes id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: communes id; Type: DEFAULT; Schema: public; Owner: -
--

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


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

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


--
-- Name: departments id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: enrollments id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: evaluations id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: exam_candidates id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: exams id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: failed_jobs id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: grades id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: guardians id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: jobs id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: localities id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: migrations id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: permissions id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: regions id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: report_cards id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: roles id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: school_years id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: schools id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: student_guardian id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: students id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: subjects id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: teacher_assignments id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: teachers id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Name: users id; Type: DEFAULT; Schema: public; Owner: -
--

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


--
-- Data for Name: activity_log; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.activity_log (id, log_name, description, subject_type, subject_id, causer_type, causer_id, properties, created_at, updated_at, event, batch_uuid) FROM stdin;
11	default	created	App\\Models\\User	11	\N	\N	{"attributes":{"first_name":"Admin","last_name":"Syst\\u00e8me","email":"superadmin@edupilot.td","is_active":true}}	2026-05-12 19:45:29	2026-05-12 19:45:29	created	\N
12	default	created	App\\Models\\User	12	\N	\N	{"attributes":{"first_name":"Directeur","last_name":"National","email":"admin.national@edupilot.td","is_active":true}}	2026-05-12 19:45:29	2026-05-12 19:45:29	created	\N
13	default	created	App\\Models\\User	13	\N	\N	{"attributes":{"first_name":"Admin","last_name":"N'Djamena","email":"admin.ndjamena@edupilot.td","is_active":true}}	2026-05-12 19:45:29	2026-05-12 19:45:29	created	\N
14	default	created	App\\Models\\User	14	\N	\N	{"attributes":{"first_name":"Admin","last_name":"Chari-Baguirmi","email":"admin.chari@edupilot.td","is_active":true}}	2026-05-12 19:45:29	2026-05-12 19:45:29	created	\N
25	default	created	App\\Models\\School	1	\N	\N	{"attributes":{"name":"\\u00c9cole Primaire de N'Djamena Centre","status":"active","type":"public","cycle":"primary","director_name":"M. Ibrahim Hassan"}}	2026-05-12 20:04:43	2026-05-12 20:04:43	created	\N
26	default	created	App\\Models\\School	2	\N	\N	{"attributes":{"name":"Lyc\\u00e9e National de N'Djamena","status":"active","type":"public","cycle":"high","director_name":"Mme. Amina Mahamat"}}	2026-05-12 20:04:43	2026-05-12 20:04:43	created	\N
27	default	created	App\\Models\\School	3	\N	\N	{"attributes":{"name":"Coll\\u00e8ge Priv\\u00e9 Excellence","status":"active","type":"private","cycle":"middle","director_name":"M. Jean-Pierre Mbainaissa"}}	2026-05-12 20:04:43	2026-05-12 20:04:43	created	\N
929	default	created	App\\Models\\Exam	2	\N	\N	{"attributes":{"school_year_id":2,"name":"Baccalaur\\u00e9at 2025","type":"official_exam","status":"open","center":"Centre d'examen Lyc\\u00e9e National","date_start":"2025-06-09T23:00:00.000000Z","date_end":"2025-06-15T23:00:00.000000Z","registration_deadline":"2025-04-30T23:00:00.000000Z","description":"Baccalaur\\u00e9at g\\u00e9n\\u00e9ral \\u2014 session 2025"}}	2026-05-12 20:24:16	2026-05-12 20:24:16	created	\N
930	default	created	App\\Models\\Exam	3	\N	\N	{"attributes":{"school_year_id":2,"name":"Concours d'entr\\u00e9e en 6\\u00e8me 2025","type":"competition","status":"draft","center":null,"date_start":null,"date_end":null,"registration_deadline":null,"description":"Concours national d'entr\\u00e9e en classe de 6\\u00e8me"}}	2026-05-12 20:24:16	2026-05-12 20:24:16	created	\N
933	default	updated	App\\Models\\Exam	2	App\\Models\\User	11	{"attributes":{"status":"results_published"},"old":{"status":"open"}}	2026-05-12 20:32:38	2026-05-12 20:32:38	updated	\N
934	default	exam.results_published	App\\Models\\Exam	2	App\\Models\\User	11	[]	2026-05-12 20:32:38	2026-05-12 20:32:38	\N	\N
938	default	created	App\\Models\\Guardian	2	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"HASSAN","phone":"+235 66 01 00 02"}}	2026-05-12 21:49:10	2026-05-12 21:49:10	created	\N
939	default	created	App\\Models\\User	133	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"ISSA","email":"eleve1@edupilot.td","is_active":true}}	2026-05-12 21:49:11	2026-05-12 21:49:11	created	\N
931	default	exam.opened	App\\Models\\Exam	2	App\\Models\\User	11	[]	2026-05-12 20:31:48	2026-05-12 20:31:48	\N	\N
935	default	created	App\\Models\\User	131	\N	\N	{"attributes":{"first_name":"Zara","last_name":"OUMAR","email":"parent1@edupilot.td","is_active":true}}	2026-05-12 21:49:10	2026-05-12 21:49:10	created	\N
936	default	created	App\\Models\\Guardian	1	\N	\N	{"attributes":{"first_name":"Zara","last_name":"OUMAR","phone":"+235 66 01 00 01"}}	2026-05-12 21:49:10	2026-05-12 21:49:10	created	\N
937	default	created	App\\Models\\User	132	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"HASSAN","email":"parent2@edupilot.td","is_active":true}}	2026-05-12 21:49:10	2026-05-12 21:49:10	created	\N
63	default	created	App\\Models\\Subject	20	\N	\N	{"attributes":{"name":"Math\\u00e9matiques","code":"MATH-P","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
64	default	created	App\\Models\\Subject	21	\N	\N	{"attributes":{"name":"Fran\\u00e7ais","code":"FR-P","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
65	default	created	App\\Models\\Subject	22	\N	\N	{"attributes":{"name":"Sciences Naturelles","code":"SN-P","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
66	default	created	App\\Models\\Subject	23	\N	\N	{"attributes":{"name":"Histoire-G\\u00e9ographie","code":"HG-P","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
67	default	created	App\\Models\\Subject	24	\N	\N	{"attributes":{"name":"\\u00c9ducation Civique","code":"EC-P","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
68	default	created	App\\Models\\Subject	25	\N	\N	{"attributes":{"name":"\\u00c9ducation Physique","code":"EPS-P","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
69	default	created	App\\Models\\Subject	26	\N	\N	{"attributes":{"name":"Math\\u00e9matiques","code":"MATH-S","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
70	default	created	App\\Models\\Subject	27	\N	\N	{"attributes":{"name":"Fran\\u00e7ais","code":"FR-S","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
71	default	created	App\\Models\\Subject	28	\N	\N	{"attributes":{"name":"Anglais","code":"ANG-S","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
72	default	created	App\\Models\\Subject	29	\N	\N	{"attributes":{"name":"Physique-Chimie","code":"PC-S","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
73	default	created	App\\Models\\Subject	30	\N	\N	{"attributes":{"name":"Sciences de la Vie","code":"SVT-S","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
74	default	created	App\\Models\\Subject	31	\N	\N	{"attributes":{"name":"Histoire-G\\u00e9ographie","code":"HG-S","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
75	default	created	App\\Models\\Subject	32	\N	\N	{"attributes":{"name":"\\u00c9ducation Physique","code":"EPS-S","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
76	default	created	App\\Models\\Subject	33	\N	\N	{"attributes":{"name":"Math\\u00e9matiques","code":"MATH-L","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
77	default	created	App\\Models\\Subject	34	\N	\N	{"attributes":{"name":"Fran\\u00e7ais","code":"FR-L","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
78	default	created	App\\Models\\Subject	35	\N	\N	{"attributes":{"name":"Anglais","code":"ANG-L","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
79	default	created	App\\Models\\Subject	36	\N	\N	{"attributes":{"name":"Philosophie","code":"PHILO-L","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
80	default	created	App\\Models\\Subject	37	\N	\N	{"attributes":{"name":"Physique-Chimie","code":"PC-L","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
81	default	created	App\\Models\\Subject	38	\N	\N	{"attributes":{"name":"Sciences de la Vie","code":"SVT-L","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
82	default	created	App\\Models\\User	33	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"SALEH","email":"mahamat.saleh1@edupilot.td","is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
83	default	created	App\\Models\\Teacher	9	\N	\N	{"attributes":{"status":"civil","school_id":1,"is_active":true}}	2026-05-12 20:05:08	2026-05-12 20:05:08	created	\N
84	default	created	App\\Models\\User	34	\N	\N	{"attributes":{"first_name":"A\\u00efcha","last_name":"OUMAR","email":"a\\u00efcha.oumar2@edupilot.td","is_active":true}}	2026-05-12 20:05:09	2026-05-12 20:05:09	created	\N
85	default	created	App\\Models\\Teacher	10	\N	\N	{"attributes":{"status":"civil","school_id":1,"is_active":true}}	2026-05-12 20:05:09	2026-05-12 20:05:09	created	\N
86	default	created	App\\Models\\User	35	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"BRAHIM","email":"adoum.brahim3@edupilot.td","is_active":true}}	2026-05-12 20:05:09	2026-05-12 20:05:09	created	\N
87	default	created	App\\Models\\Teacher	11	\N	\N	{"attributes":{"status":"civil","school_id":1,"is_active":true}}	2026-05-12 20:05:09	2026-05-12 20:05:09	created	\N
88	default	created	App\\Models\\User	36	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"HASSAN","email":"fatim\\u00e9.hassan4@edupilot.td","is_active":true}}	2026-05-12 20:05:09	2026-05-12 20:05:09	created	\N
89	default	created	App\\Models\\Teacher	12	\N	\N	{"attributes":{"status":"civil","school_id":1,"is_active":true}}	2026-05-12 20:05:09	2026-05-12 20:05:09	created	\N
90	default	created	App\\Models\\User	37	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"DEBY","email":"idriss.deby5@edupilot.td","is_active":true}}	2026-05-12 20:05:10	2026-05-12 20:05:10	created	\N
91	default	created	App\\Models\\Teacher	13	\N	\N	{"attributes":{"status":"civil","school_id":1,"is_active":true}}	2026-05-12 20:05:10	2026-05-12 20:05:10	created	\N
92	default	created	App\\Models\\User	38	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"ABDERAHIM","email":"mariam.abderahim6@edupilot.td","is_active":true}}	2026-05-12 20:05:10	2026-05-12 20:05:10	created	\N
93	default	created	App\\Models\\Teacher	14	\N	\N	{"attributes":{"status":"civil","school_id":1,"is_active":true}}	2026-05-12 20:05:10	2026-05-12 20:05:10	created	\N
94	default	created	App\\Models\\User	39	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"MAHAMAT","email":"youssouf.mahamat7@edupilot.td","is_active":true}}	2026-05-12 20:05:10	2026-05-12 20:05:10	created	\N
95	default	created	App\\Models\\Teacher	15	\N	\N	{"attributes":{"status":"civil","school_id":1,"is_active":true}}	2026-05-12 20:05:10	2026-05-12 20:05:10	created	\N
96	default	created	App\\Models\\User	40	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"IBRAHIM","email":"haoua.ibrahim8@edupilot.td","is_active":true}}	2026-05-12 20:05:11	2026-05-12 20:05:11	created	\N
97	default	created	App\\Models\\Teacher	16	\N	\N	{"attributes":{"status":"civil","school_id":1,"is_active":true}}	2026-05-12 20:05:11	2026-05-12 20:05:11	created	\N
98	default	created	App\\Models\\SchoolClass	1	\N	\N	{"attributes":{"name":"CP1 A","level":"CP1","cycle":"primary","status":"active","main_teacher_id":null}}	2026-05-12 20:05:11	2026-05-12 20:05:11	created	\N
99	default	created	App\\Models\\SchoolClass	2	\N	\N	{"attributes":{"name":"CP2 A","level":"CP2","cycle":"primary","status":"active","main_teacher_id":null}}	2026-05-12 20:05:11	2026-05-12 20:05:11	created	\N
100	default	created	App\\Models\\SchoolClass	3	\N	\N	{"attributes":{"name":"CE1 A","level":"CE1","cycle":"primary","status":"active","main_teacher_id":null}}	2026-05-12 20:05:11	2026-05-12 20:05:11	created	\N
101	default	created	App\\Models\\SchoolClass	4	\N	\N	{"attributes":{"name":"CE2 A","level":"CE2","cycle":"primary","status":"active","main_teacher_id":null}}	2026-05-12 20:05:11	2026-05-12 20:05:11	created	\N
102	default	created	App\\Models\\SchoolClass	5	\N	\N	{"attributes":{"name":"CM1 A","level":"CM1","cycle":"primary","status":"active","main_teacher_id":null}}	2026-05-12 20:05:11	2026-05-12 20:05:11	created	\N
103	default	created	App\\Models\\SchoolClass	6	\N	\N	{"attributes":{"name":"CM2 A","level":"CM2","cycle":"primary","status":"active","main_teacher_id":null}}	2026-05-12 20:05:11	2026-05-12 20:05:11	created	\N
104	default	created	App\\Models\\User	41	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"SALEH","email":"mahamat.saleh9@edupilot.td","is_active":true}}	2026-05-12 20:05:11	2026-05-12 20:05:11	created	\N
105	default	created	App\\Models\\Teacher	17	\N	\N	{"attributes":{"status":"civil","school_id":2,"is_active":true}}	2026-05-12 20:05:11	2026-05-12 20:05:11	created	\N
106	default	created	App\\Models\\User	42	\N	\N	{"attributes":{"first_name":"A\\u00efcha","last_name":"OUMAR","email":"a\\u00efcha.oumar10@edupilot.td","is_active":true}}	2026-05-12 20:05:11	2026-05-12 20:05:11	created	\N
107	default	created	App\\Models\\Teacher	18	\N	\N	{"attributes":{"status":"civil","school_id":2,"is_active":true}}	2026-05-12 20:05:11	2026-05-12 20:05:11	created	\N
108	default	created	App\\Models\\User	43	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"BRAHIM","email":"adoum.brahim11@edupilot.td","is_active":true}}	2026-05-12 20:05:11	2026-05-12 20:05:11	created	\N
109	default	created	App\\Models\\Teacher	19	\N	\N	{"attributes":{"status":"civil","school_id":2,"is_active":true}}	2026-05-12 20:05:11	2026-05-12 20:05:11	created	\N
110	default	created	App\\Models\\User	44	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"HASSAN","email":"fatim\\u00e9.hassan12@edupilot.td","is_active":true}}	2026-05-12 20:05:12	2026-05-12 20:05:12	created	\N
111	default	created	App\\Models\\Teacher	20	\N	\N	{"attributes":{"status":"civil","school_id":2,"is_active":true}}	2026-05-12 20:05:12	2026-05-12 20:05:12	created	\N
112	default	created	App\\Models\\User	45	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"DEBY","email":"idriss.deby13@edupilot.td","is_active":true}}	2026-05-12 20:05:12	2026-05-12 20:05:12	created	\N
113	default	created	App\\Models\\Teacher	21	\N	\N	{"attributes":{"status":"civil","school_id":2,"is_active":true}}	2026-05-12 20:05:12	2026-05-12 20:05:12	created	\N
114	default	created	App\\Models\\User	46	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"ABDERAHIM","email":"mariam.abderahim14@edupilot.td","is_active":true}}	2026-05-12 20:05:12	2026-05-12 20:05:12	created	\N
115	default	created	App\\Models\\Teacher	22	\N	\N	{"attributes":{"status":"civil","school_id":2,"is_active":true}}	2026-05-12 20:05:12	2026-05-12 20:05:12	created	\N
116	default	created	App\\Models\\User	47	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"MAHAMAT","email":"youssouf.mahamat15@edupilot.td","is_active":true}}	2026-05-12 20:05:13	2026-05-12 20:05:13	created	\N
117	default	created	App\\Models\\Teacher	23	\N	\N	{"attributes":{"status":"civil","school_id":2,"is_active":true}}	2026-05-12 20:05:13	2026-05-12 20:05:13	created	\N
118	default	created	App\\Models\\User	48	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"IBRAHIM","email":"haoua.ibrahim16@edupilot.td","is_active":true}}	2026-05-12 20:05:13	2026-05-12 20:05:13	created	\N
119	default	created	App\\Models\\Teacher	24	\N	\N	{"attributes":{"status":"civil","school_id":2,"is_active":true}}	2026-05-12 20:05:13	2026-05-12 20:05:13	created	\N
120	default	created	App\\Models\\SchoolClass	7	\N	\N	{"attributes":{"name":"2nde A","level":"2nde","cycle":"high","status":"active","main_teacher_id":null}}	2026-05-12 20:05:13	2026-05-12 20:05:13	created	\N
121	default	created	App\\Models\\SchoolClass	8	\N	\N	{"attributes":{"name":"1\\u00e8re A","level":"1\\u00e8re","cycle":"high","status":"active","main_teacher_id":null}}	2026-05-12 20:05:13	2026-05-12 20:05:13	created	\N
122	default	created	App\\Models\\SchoolClass	9	\N	\N	{"attributes":{"name":"Tle A","level":"Tle","cycle":"high","status":"active","main_teacher_id":null}}	2026-05-12 20:05:13	2026-05-12 20:05:13	created	\N
123	default	created	App\\Models\\User	49	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"SALEH","email":"mahamat.saleh17@edupilot.td","is_active":true}}	2026-05-12 20:05:13	2026-05-12 20:05:13	created	\N
124	default	created	App\\Models\\Teacher	25	\N	\N	{"attributes":{"status":"civil","school_id":3,"is_active":true}}	2026-05-12 20:05:13	2026-05-12 20:05:13	created	\N
125	default	created	App\\Models\\User	50	\N	\N	{"attributes":{"first_name":"A\\u00efcha","last_name":"OUMAR","email":"a\\u00efcha.oumar18@edupilot.td","is_active":true}}	2026-05-12 20:05:14	2026-05-12 20:05:14	created	\N
126	default	created	App\\Models\\Teacher	26	\N	\N	{"attributes":{"status":"civil","school_id":3,"is_active":true}}	2026-05-12 20:05:14	2026-05-12 20:05:14	created	\N
127	default	created	App\\Models\\User	51	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"BRAHIM","email":"adoum.brahim19@edupilot.td","is_active":true}}	2026-05-12 20:05:14	2026-05-12 20:05:14	created	\N
128	default	created	App\\Models\\Teacher	27	\N	\N	{"attributes":{"status":"civil","school_id":3,"is_active":true}}	2026-05-12 20:05:14	2026-05-12 20:05:14	created	\N
129	default	created	App\\Models\\User	52	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"HASSAN","email":"fatim\\u00e9.hassan20@edupilot.td","is_active":true}}	2026-05-12 20:05:14	2026-05-12 20:05:14	created	\N
130	default	created	App\\Models\\Teacher	28	\N	\N	{"attributes":{"status":"civil","school_id":3,"is_active":true}}	2026-05-12 20:05:14	2026-05-12 20:05:14	created	\N
131	default	created	App\\Models\\User	53	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"DEBY","email":"idriss.deby21@edupilot.td","is_active":true}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
132	default	created	App\\Models\\Teacher	29	\N	\N	{"attributes":{"status":"civil","school_id":3,"is_active":true}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
133	default	created	App\\Models\\User	54	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"ABDERAHIM","email":"mariam.abderahim22@edupilot.td","is_active":true}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
134	default	created	App\\Models\\Teacher	30	\N	\N	{"attributes":{"status":"civil","school_id":3,"is_active":true}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
135	default	created	App\\Models\\User	55	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"MAHAMAT","email":"youssouf.mahamat23@edupilot.td","is_active":true}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
136	default	created	App\\Models\\Teacher	31	\N	\N	{"attributes":{"status":"civil","school_id":3,"is_active":true}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
137	default	created	App\\Models\\User	56	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"IBRAHIM","email":"haoua.ibrahim24@edupilot.td","is_active":true}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
138	default	created	App\\Models\\Teacher	32	\N	\N	{"attributes":{"status":"civil","school_id":3,"is_active":true}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
139	default	created	App\\Models\\SchoolClass	10	\N	\N	{"attributes":{"name":"6\\u00e8me A","level":"6\\u00e8me","cycle":"middle","status":"active","main_teacher_id":null}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
140	default	created	App\\Models\\SchoolClass	11	\N	\N	{"attributes":{"name":"5\\u00e8me A","level":"5\\u00e8me","cycle":"middle","status":"active","main_teacher_id":null}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
141	default	created	App\\Models\\SchoolClass	12	\N	\N	{"attributes":{"name":"4\\u00e8me A","level":"4\\u00e8me","cycle":"middle","status":"active","main_teacher_id":null}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
142	default	created	App\\Models\\SchoolClass	13	\N	\N	{"attributes":{"name":"3\\u00e8me A","level":"3\\u00e8me","cycle":"middle","status":"active","main_teacher_id":null}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
143	default	created	App\\Models\\Student	1	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"ISSA","status":"active","school_id":1}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
144	default	created	App\\Models\\Enrollment	1	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
145	default	created	App\\Models\\Student	2	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"ADOUM","status":"active","school_id":1}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
146	default	created	App\\Models\\Enrollment	2	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
147	default	created	App\\Models\\Student	3	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"ISSA","status":"active","school_id":1}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
148	default	created	App\\Models\\Enrollment	3	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
149	default	created	App\\Models\\Student	4	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"DJIBRINE","status":"active","school_id":1}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
150	default	created	App\\Models\\Enrollment	4	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
151	default	created	App\\Models\\Student	5	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"IBRAHIM","status":"active","school_id":1}}	2026-05-12 20:05:15	2026-05-12 20:05:15	created	\N
152	default	created	App\\Models\\Enrollment	5	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
153	default	created	App\\Models\\Student	6	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"TAHIR","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
154	default	created	App\\Models\\Enrollment	6	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
155	default	created	App\\Models\\Student	7	\N	\N	{"attributes":{"first_name":"Zara","last_name":"IBRAHIM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
156	default	created	App\\Models\\Enrollment	7	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
157	default	created	App\\Models\\Student	8	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"ADAM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
158	default	created	App\\Models\\Enrollment	8	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
159	default	created	App\\Models\\Student	9	\N	\N	{"attributes":{"first_name":"Salima","last_name":"TAHIR","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
160	default	created	App\\Models\\Enrollment	9	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
161	default	created	App\\Models\\Student	10	\N	\N	{"attributes":{"first_name":"Ali","last_name":"ADAM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
162	default	created	App\\Models\\Enrollment	10	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
163	default	created	App\\Models\\Student	11	\N	\N	{"attributes":{"first_name":"Ali","last_name":"TAHIR","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
164	default	created	App\\Models\\Enrollment	11	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
165	default	created	App\\Models\\Student	12	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"ADOUM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
166	default	created	App\\Models\\Enrollment	12	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
167	default	created	App\\Models\\Student	13	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"NGARADOUM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
168	default	created	App\\Models\\Enrollment	13	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
169	default	created	App\\Models\\Student	14	\N	\N	{"attributes":{"first_name":"Salima","last_name":"MAHAMAT","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
170	default	created	App\\Models\\Enrollment	14	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
171	default	created	App\\Models\\Student	15	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"MOUSSA","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
172	default	created	App\\Models\\Enrollment	15	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
173	default	created	App\\Models\\Student	16	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"OUMAR","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
174	default	created	App\\Models\\Enrollment	16	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
175	default	created	App\\Models\\Student	17	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"ADAM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
176	default	created	App\\Models\\Enrollment	17	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
177	default	created	App\\Models\\Student	18	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"KHAMIS","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
178	default	created	App\\Models\\Enrollment	18	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
179	default	created	App\\Models\\Student	19	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"NGARADOUM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
180	default	created	App\\Models\\Enrollment	19	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
181	default	created	App\\Models\\Student	20	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"ABDERAHIM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
182	default	created	App\\Models\\Enrollment	20	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
183	default	created	App\\Models\\Student	21	\N	\N	{"attributes":{"first_name":"Nadia","last_name":"ADAM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
184	default	created	App\\Models\\Enrollment	21	\N	\N	{"attributes":{"status":"enrolled","school_class_id":1,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
185	default	created	App\\Models\\Student	22	\N	\N	{"attributes":{"first_name":"Zara","last_name":"HASSAN","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
186	default	created	App\\Models\\Enrollment	22	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
187	default	created	App\\Models\\Student	23	\N	\N	{"attributes":{"first_name":"Zara","last_name":"ADOUM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
188	default	created	App\\Models\\Enrollment	23	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
189	default	created	App\\Models\\Student	24	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"NGARADOUM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
190	default	created	App\\Models\\Enrollment	24	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
191	default	created	App\\Models\\Student	25	\N	\N	{"attributes":{"first_name":"Salima","last_name":"KHAMIS","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
192	default	created	App\\Models\\Enrollment	25	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
193	default	created	App\\Models\\Student	26	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"ADOUM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
194	default	created	App\\Models\\Enrollment	26	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
195	default	created	App\\Models\\Student	27	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"MAHAMAT","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
196	default	created	App\\Models\\Enrollment	27	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
197	default	created	App\\Models\\Student	28	\N	\N	{"attributes":{"first_name":"Salima","last_name":"NASSER","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
198	default	created	App\\Models\\Enrollment	28	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
199	default	created	App\\Models\\Student	29	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"MAHAMAT","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
200	default	created	App\\Models\\Enrollment	29	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
201	default	created	App\\Models\\Student	30	\N	\N	{"attributes":{"first_name":"Zara","last_name":"HASSAN","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
202	default	created	App\\Models\\Enrollment	30	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
203	default	created	App\\Models\\Student	31	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"MAHAMAT","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
204	default	created	App\\Models\\Enrollment	31	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
205	default	created	App\\Models\\Student	32	\N	\N	{"attributes":{"first_name":"Brahim","last_name":"SALEH","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
206	default	created	App\\Models\\Enrollment	32	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
207	default	created	App\\Models\\Student	33	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"MAHAMAT","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
208	default	created	App\\Models\\Enrollment	33	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
209	default	created	App\\Models\\Student	34	\N	\N	{"attributes":{"first_name":"Salima","last_name":"ABDERAHIM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
210	default	created	App\\Models\\Enrollment	34	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
211	default	created	App\\Models\\Student	35	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"HASSAN","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
212	default	created	App\\Models\\Enrollment	35	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
213	default	created	App\\Models\\Student	36	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"HASSAN","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
214	default	created	App\\Models\\Enrollment	36	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
215	default	created	App\\Models\\Student	37	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"OUMAR","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
216	default	created	App\\Models\\Enrollment	37	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
217	default	created	App\\Models\\Student	38	\N	\N	{"attributes":{"first_name":"Zara","last_name":"NASSER","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
218	default	created	App\\Models\\Enrollment	38	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
219	default	created	App\\Models\\Student	39	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"DJIBRINE","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
220	default	created	App\\Models\\Enrollment	39	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
221	default	created	App\\Models\\Student	40	\N	\N	{"attributes":{"first_name":"Zara","last_name":"SALEH","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
222	default	created	App\\Models\\Enrollment	40	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
223	default	created	App\\Models\\Student	41	\N	\N	{"attributes":{"first_name":"Brahim","last_name":"ADAM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
224	default	created	App\\Models\\Enrollment	41	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
225	default	created	App\\Models\\Student	42	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"DEBY","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
226	default	created	App\\Models\\Enrollment	42	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
227	default	created	App\\Models\\Student	43	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"KHAMIS","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
228	default	created	App\\Models\\Enrollment	43	\N	\N	{"attributes":{"status":"enrolled","school_class_id":2,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
229	default	created	App\\Models\\Student	44	\N	\N	{"attributes":{"first_name":"Zara","last_name":"MAHAMAT","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
230	default	created	App\\Models\\Enrollment	44	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
231	default	created	App\\Models\\Student	45	\N	\N	{"attributes":{"first_name":"Zara","last_name":"TAHIR","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
232	default	created	App\\Models\\Enrollment	45	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
915	default	report_card.generated: class=1 year=2 period=trimester_1 count=21	\N	\N	\N	\N	[]	2026-05-12 20:24:11	2026-05-12 20:24:11	\N	\N
233	default	created	App\\Models\\Student	46	\N	\N	{"attributes":{"first_name":"Salima","last_name":"NASSER","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
234	default	created	App\\Models\\Enrollment	46	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
235	default	created	App\\Models\\Student	47	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"TAHIR","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
236	default	created	App\\Models\\Enrollment	47	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
237	default	created	App\\Models\\Student	48	\N	\N	{"attributes":{"first_name":"Zara","last_name":"DEBY","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
238	default	created	App\\Models\\Enrollment	48	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
239	default	created	App\\Models\\Student	49	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"MOUSSA","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
240	default	created	App\\Models\\Enrollment	49	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
241	default	created	App\\Models\\Student	50	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"KHAMIS","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
242	default	created	App\\Models\\Enrollment	50	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
243	default	created	App\\Models\\Student	51	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"ABDERAHIM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
244	default	created	App\\Models\\Enrollment	51	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
245	default	created	App\\Models\\Student	52	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"IBRAHIM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
246	default	created	App\\Models\\Enrollment	52	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
247	default	created	App\\Models\\Student	53	\N	\N	{"attributes":{"first_name":"Salima","last_name":"NGARADOUM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
248	default	created	App\\Models\\Enrollment	53	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
249	default	created	App\\Models\\Student	54	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"MOUSSA","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
250	default	created	App\\Models\\Enrollment	54	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
251	default	created	App\\Models\\Student	55	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"DEBY","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
252	default	created	App\\Models\\Enrollment	55	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
253	default	created	App\\Models\\Student	56	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"OUMAR","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
254	default	created	App\\Models\\Enrollment	56	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
255	default	created	App\\Models\\Student	57	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"ISSA","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
256	default	created	App\\Models\\Enrollment	57	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
257	default	created	App\\Models\\Student	58	\N	\N	{"attributes":{"first_name":"Amina","last_name":"DEBY","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
258	default	created	App\\Models\\Enrollment	58	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
259	default	created	App\\Models\\Student	59	\N	\N	{"attributes":{"first_name":"Salima","last_name":"ADAM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
260	default	created	App\\Models\\Enrollment	59	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
261	default	created	App\\Models\\Student	60	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"HASSAN","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
262	default	created	App\\Models\\Enrollment	60	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
263	default	created	App\\Models\\Student	61	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"SALEH","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
264	default	created	App\\Models\\Enrollment	61	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
265	default	created	App\\Models\\Student	62	\N	\N	{"attributes":{"first_name":"Amina","last_name":"HASSAN","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
266	default	created	App\\Models\\Enrollment	62	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
267	default	created	App\\Models\\Student	63	\N	\N	{"attributes":{"first_name":"Zara","last_name":"KHAMIS","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
268	default	created	App\\Models\\Enrollment	63	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
269	default	created	App\\Models\\Student	64	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"IBRAHIM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
270	default	created	App\\Models\\Enrollment	64	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
271	default	created	App\\Models\\Student	65	\N	\N	{"attributes":{"first_name":"Zara","last_name":"MAHAMAT","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
272	default	created	App\\Models\\Enrollment	65	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
273	default	created	App\\Models\\Student	66	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"SALEH","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
274	default	created	App\\Models\\Enrollment	66	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
275	default	created	App\\Models\\Student	67	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"ADAM","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
276	default	created	App\\Models\\Enrollment	67	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
277	default	created	App\\Models\\Student	68	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"ISSA","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
278	default	created	App\\Models\\Enrollment	68	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
279	default	created	App\\Models\\Student	69	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"SALEH","status":"active","school_id":1}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
280	default	created	App\\Models\\Enrollment	69	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:16	2026-05-12 20:05:16	created	\N
281	default	created	App\\Models\\Student	70	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"TAHIR","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
282	default	created	App\\Models\\Enrollment	70	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
283	default	created	App\\Models\\Student	71	\N	\N	{"attributes":{"first_name":"Zara","last_name":"MAHAMAT","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
284	default	created	App\\Models\\Enrollment	71	\N	\N	{"attributes":{"status":"enrolled","school_class_id":3,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
285	default	created	App\\Models\\Student	72	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"OUMAR","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
286	default	created	App\\Models\\Enrollment	72	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
287	default	created	App\\Models\\Student	73	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"KHAMIS","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
288	default	created	App\\Models\\Enrollment	73	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
289	default	created	App\\Models\\Student	74	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"ADOUM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
290	default	created	App\\Models\\Enrollment	74	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
291	default	created	App\\Models\\Student	75	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"ADAM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
292	default	created	App\\Models\\Enrollment	75	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
293	default	created	App\\Models\\Student	76	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"MAHAMAT","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
294	default	created	App\\Models\\Enrollment	76	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
295	default	created	App\\Models\\Student	77	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"OUMAR","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
296	default	created	App\\Models\\Enrollment	77	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
297	default	created	App\\Models\\Student	78	\N	\N	{"attributes":{"first_name":"Ali","last_name":"HASSAN","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
298	default	created	App\\Models\\Enrollment	78	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
299	default	created	App\\Models\\Student	79	\N	\N	{"attributes":{"first_name":"Amina","last_name":"TAHIR","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
300	default	created	App\\Models\\Enrollment	79	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
301	default	created	App\\Models\\Student	80	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"NGARADOUM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
302	default	created	App\\Models\\Enrollment	80	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
303	default	created	App\\Models\\Student	81	\N	\N	{"attributes":{"first_name":"Salima","last_name":"SALEH","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
304	default	created	App\\Models\\Enrollment	81	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
305	default	created	App\\Models\\Student	82	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"NGARADOUM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
306	default	created	App\\Models\\Enrollment	82	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
307	default	created	App\\Models\\Student	83	\N	\N	{"attributes":{"first_name":"Brahim","last_name":"ADOUM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
308	default	created	App\\Models\\Enrollment	83	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
309	default	created	App\\Models\\Student	84	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"ABDERAHIM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
310	default	created	App\\Models\\Enrollment	84	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
311	default	created	App\\Models\\Student	85	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"DJIBRINE","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
312	default	created	App\\Models\\Enrollment	85	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
313	default	created	App\\Models\\Student	86	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"ABDERAHIM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
314	default	created	App\\Models\\Enrollment	86	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
315	default	created	App\\Models\\Student	87	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"NASSER","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
316	default	created	App\\Models\\Enrollment	87	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
317	default	created	App\\Models\\Student	88	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"MAHAMAT","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
318	default	created	App\\Models\\Enrollment	88	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
319	default	created	App\\Models\\Student	89	\N	\N	{"attributes":{"first_name":"Brahim","last_name":"NGARADOUM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
320	default	created	App\\Models\\Enrollment	89	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
321	default	created	App\\Models\\Student	90	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"OUMAR","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
322	default	created	App\\Models\\Enrollment	90	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
323	default	created	App\\Models\\Student	91	\N	\N	{"attributes":{"first_name":"Zara","last_name":"TAHIR","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
324	default	created	App\\Models\\Enrollment	91	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
325	default	created	App\\Models\\Student	92	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"ADOUM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
326	default	created	App\\Models\\Enrollment	92	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
327	default	created	App\\Models\\Student	93	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"MOUSSA","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
328	default	created	App\\Models\\Enrollment	93	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
329	default	created	App\\Models\\Student	94	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"DEBY","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
330	default	created	App\\Models\\Enrollment	94	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
331	default	created	App\\Models\\Student	95	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"NASSER","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
332	default	created	App\\Models\\Enrollment	95	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
333	default	created	App\\Models\\Student	96	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"OUMAR","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
334	default	created	App\\Models\\Enrollment	96	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
335	default	created	App\\Models\\Student	97	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"ADOUM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
336	default	created	App\\Models\\Enrollment	97	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
337	default	created	App\\Models\\Student	98	\N	\N	{"attributes":{"first_name":"Amina","last_name":"ADAM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
338	default	created	App\\Models\\Enrollment	98	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
339	default	created	App\\Models\\Student	99	\N	\N	{"attributes":{"first_name":"Brahim","last_name":"HASSAN","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
340	default	created	App\\Models\\Enrollment	99	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
341	default	created	App\\Models\\Student	100	\N	\N	{"attributes":{"first_name":"Nadia","last_name":"ABDERAHIM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
342	default	created	App\\Models\\Enrollment	100	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
343	default	created	App\\Models\\Student	101	\N	\N	{"attributes":{"first_name":"Salima","last_name":"ISSA","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
344	default	created	App\\Models\\Enrollment	101	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
345	default	created	App\\Models\\Student	102	\N	\N	{"attributes":{"first_name":"Amina","last_name":"NGARADOUM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
346	default	created	App\\Models\\Enrollment	102	\N	\N	{"attributes":{"status":"enrolled","school_class_id":4,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
347	default	created	App\\Models\\Student	103	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"DEBY","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
348	default	created	App\\Models\\Enrollment	103	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
349	default	created	App\\Models\\Student	104	\N	\N	{"attributes":{"first_name":"Nadia","last_name":"KHAMIS","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
350	default	created	App\\Models\\Enrollment	104	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
351	default	created	App\\Models\\Student	105	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"MOUSSA","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
352	default	created	App\\Models\\Enrollment	105	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
353	default	created	App\\Models\\Student	106	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"KHAMIS","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
354	default	created	App\\Models\\Enrollment	106	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
355	default	created	App\\Models\\Student	107	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"MOUSSA","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
356	default	created	App\\Models\\Enrollment	107	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
357	default	created	App\\Models\\Student	108	\N	\N	{"attributes":{"first_name":"Salima","last_name":"ADAM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
358	default	created	App\\Models\\Enrollment	108	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
359	default	created	App\\Models\\Student	109	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"ADOUM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
360	default	created	App\\Models\\Enrollment	109	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
361	default	created	App\\Models\\Student	110	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"ABDERAHIM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
362	default	created	App\\Models\\Enrollment	110	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
363	default	created	App\\Models\\Student	111	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"DJIBRINE","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
364	default	created	App\\Models\\Enrollment	111	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
365	default	created	App\\Models\\Student	112	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"KHAMIS","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
366	default	created	App\\Models\\Enrollment	112	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
367	default	created	App\\Models\\Student	113	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"ADAM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
368	default	created	App\\Models\\Enrollment	113	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
369	default	created	App\\Models\\Student	114	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"NASSER","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
370	default	created	App\\Models\\Enrollment	114	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
371	default	created	App\\Models\\Student	115	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"TAHIR","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
372	default	created	App\\Models\\Enrollment	115	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
373	default	created	App\\Models\\Student	116	\N	\N	{"attributes":{"first_name":"Brahim","last_name":"NGARADOUM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
374	default	created	App\\Models\\Enrollment	116	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
375	default	created	App\\Models\\Student	117	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"ABDERAHIM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
376	default	created	App\\Models\\Enrollment	117	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
377	default	created	App\\Models\\Student	118	\N	\N	{"attributes":{"first_name":"Zara","last_name":"OUMAR","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
378	default	created	App\\Models\\Enrollment	118	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
379	default	created	App\\Models\\Student	119	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"OUMAR","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
380	default	created	App\\Models\\Enrollment	119	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
381	default	created	App\\Models\\Student	120	\N	\N	{"attributes":{"first_name":"Zara","last_name":"DJIBRINE","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
382	default	created	App\\Models\\Enrollment	120	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
383	default	created	App\\Models\\Student	121	\N	\N	{"attributes":{"first_name":"Amina","last_name":"ADAM","status":"active","school_id":1}}	2026-05-12 20:05:17	2026-05-12 20:05:17	created	\N
384	default	created	App\\Models\\Enrollment	121	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
385	default	created	App\\Models\\Student	122	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"SALEH","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
386	default	created	App\\Models\\Enrollment	122	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
387	default	created	App\\Models\\Student	123	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"MAHAMAT","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
388	default	created	App\\Models\\Enrollment	123	\N	\N	{"attributes":{"status":"enrolled","school_class_id":5,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
389	default	created	App\\Models\\Student	124	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"SALEH","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
390	default	created	App\\Models\\Enrollment	124	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
391	default	created	App\\Models\\Student	125	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"ISSA","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
392	default	created	App\\Models\\Enrollment	125	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
393	default	created	App\\Models\\Student	126	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"DEBY","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
394	default	created	App\\Models\\Enrollment	126	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
395	default	created	App\\Models\\Student	127	\N	\N	{"attributes":{"first_name":"Ali","last_name":"SALEH","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
396	default	created	App\\Models\\Enrollment	127	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
397	default	created	App\\Models\\Student	128	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"NASSER","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
398	default	created	App\\Models\\Enrollment	128	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
399	default	created	App\\Models\\Student	129	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"ISSA","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
400	default	created	App\\Models\\Enrollment	129	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
401	default	created	App\\Models\\Student	130	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"KHAMIS","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
402	default	created	App\\Models\\Enrollment	130	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
403	default	created	App\\Models\\Student	131	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"OUMAR","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
404	default	created	App\\Models\\Enrollment	131	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
405	default	created	App\\Models\\Student	132	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"KHAMIS","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
406	default	created	App\\Models\\Enrollment	132	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
407	default	created	App\\Models\\Student	133	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"MOUSSA","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
408	default	created	App\\Models\\Enrollment	133	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
409	default	created	App\\Models\\Student	134	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"OUMAR","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
410	default	created	App\\Models\\Enrollment	134	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
411	default	created	App\\Models\\Student	135	\N	\N	{"attributes":{"first_name":"Brahim","last_name":"ISSA","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
412	default	created	App\\Models\\Enrollment	135	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
413	default	created	App\\Models\\Student	136	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"SALEH","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
414	default	created	App\\Models\\Enrollment	136	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
415	default	created	App\\Models\\Student	137	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"TAHIR","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
416	default	created	App\\Models\\Enrollment	137	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
417	default	created	App\\Models\\Student	138	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"ADOUM","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
418	default	created	App\\Models\\Enrollment	138	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
419	default	created	App\\Models\\Student	139	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"DJIBRINE","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
420	default	created	App\\Models\\Enrollment	139	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
421	default	created	App\\Models\\Student	140	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"SALEH","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
422	default	created	App\\Models\\Enrollment	140	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
423	default	created	App\\Models\\Student	141	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"ADOUM","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
424	default	created	App\\Models\\Enrollment	141	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
425	default	created	App\\Models\\Student	142	\N	\N	{"attributes":{"first_name":"Salima","last_name":"OUMAR","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
426	default	created	App\\Models\\Enrollment	142	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
427	default	created	App\\Models\\Student	143	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"IBRAHIM","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
428	default	created	App\\Models\\Enrollment	143	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
429	default	created	App\\Models\\Student	144	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"ADAM","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
430	default	created	App\\Models\\Enrollment	144	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
431	default	created	App\\Models\\Student	145	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"NASSER","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
432	default	created	App\\Models\\Enrollment	145	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
433	default	created	App\\Models\\Student	146	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"MOUSSA","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
434	default	created	App\\Models\\Enrollment	146	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
435	default	created	App\\Models\\Student	147	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"TAHIR","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
436	default	created	App\\Models\\Enrollment	147	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
437	default	created	App\\Models\\Student	148	\N	\N	{"attributes":{"first_name":"Ali","last_name":"ADOUM","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
438	default	created	App\\Models\\Enrollment	148	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
439	default	created	App\\Models\\Student	149	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"MOUSSA","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
440	default	created	App\\Models\\Enrollment	149	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
441	default	created	App\\Models\\Student	150	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"NASSER","status":"active","school_id":1}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
442	default	created	App\\Models\\Enrollment	150	\N	\N	{"attributes":{"status":"enrolled","school_class_id":6,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
443	default	created	App\\Models\\Student	151	\N	\N	{"attributes":{"first_name":"Zara","last_name":"NASSER","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
444	default	created	App\\Models\\Enrollment	151	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
445	default	created	App\\Models\\Student	152	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"MOUSSA","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
446	default	created	App\\Models\\Enrollment	152	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
447	default	created	App\\Models\\Student	153	\N	\N	{"attributes":{"first_name":"Amina","last_name":"IBRAHIM","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
448	default	created	App\\Models\\Enrollment	153	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
449	default	created	App\\Models\\Student	154	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"HASSAN","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
450	default	created	App\\Models\\Enrollment	154	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
451	default	created	App\\Models\\Student	155	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"NGARADOUM","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
452	default	created	App\\Models\\Enrollment	155	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
453	default	created	App\\Models\\Student	156	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"SALEH","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
454	default	created	App\\Models\\Enrollment	156	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
455	default	created	App\\Models\\Student	157	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"ADOUM","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
456	default	created	App\\Models\\Enrollment	157	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
457	default	created	App\\Models\\Student	158	\N	\N	{"attributes":{"first_name":"Ali","last_name":"NGARADOUM","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
458	default	created	App\\Models\\Enrollment	158	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
459	default	created	App\\Models\\Student	159	\N	\N	{"attributes":{"first_name":"Salima","last_name":"MAHAMAT","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
460	default	created	App\\Models\\Enrollment	159	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
461	default	created	App\\Models\\Student	160	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"MOUSSA","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
462	default	created	App\\Models\\Enrollment	160	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
463	default	created	App\\Models\\Student	161	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"NGARADOUM","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
464	default	created	App\\Models\\Enrollment	161	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
465	default	created	App\\Models\\Student	162	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"MAHAMAT","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
466	default	created	App\\Models\\Enrollment	162	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
467	default	created	App\\Models\\Student	163	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"MAHAMAT","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
468	default	created	App\\Models\\Enrollment	163	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
469	default	created	App\\Models\\Student	164	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"NGARADOUM","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
470	default	created	App\\Models\\Enrollment	164	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
471	default	created	App\\Models\\Student	165	\N	\N	{"attributes":{"first_name":"Nadia","last_name":"KHAMIS","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
472	default	created	App\\Models\\Enrollment	165	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
473	default	created	App\\Models\\Student	166	\N	\N	{"attributes":{"first_name":"Brahim","last_name":"DJIBRINE","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
474	default	created	App\\Models\\Enrollment	166	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
475	default	created	App\\Models\\Student	167	\N	\N	{"attributes":{"first_name":"Nadia","last_name":"IBRAHIM","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
476	default	created	App\\Models\\Enrollment	167	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
477	default	created	App\\Models\\Student	168	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"MOUSSA","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
478	default	created	App\\Models\\Enrollment	168	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
479	default	created	App\\Models\\Student	169	\N	\N	{"attributes":{"first_name":"Amina","last_name":"HASSAN","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
480	default	created	App\\Models\\Enrollment	169	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
481	default	created	App\\Models\\Student	170	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"SALEH","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
482	default	created	App\\Models\\Enrollment	170	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
483	default	created	App\\Models\\Student	171	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"ISSA","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
484	default	created	App\\Models\\Enrollment	171	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
485	default	created	App\\Models\\Student	172	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"DEBY","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
486	default	created	App\\Models\\Enrollment	172	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
487	default	created	App\\Models\\Student	173	\N	\N	{"attributes":{"first_name":"Amina","last_name":"SALEH","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
488	default	created	App\\Models\\Enrollment	173	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
489	default	created	App\\Models\\Student	174	\N	\N	{"attributes":{"first_name":"Ali","last_name":"ADAM","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
490	default	created	App\\Models\\Enrollment	174	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
491	default	created	App\\Models\\Student	175	\N	\N	{"attributes":{"first_name":"Salima","last_name":"TAHIR","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
492	default	created	App\\Models\\Enrollment	175	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
493	default	created	App\\Models\\Student	176	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"DJIBRINE","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
494	default	created	App\\Models\\Enrollment	176	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
495	default	created	App\\Models\\Student	177	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"ADAM","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
496	default	created	App\\Models\\Enrollment	177	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
497	default	created	App\\Models\\Student	178	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"NGARADOUM","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
498	default	created	App\\Models\\Enrollment	178	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
499	default	created	App\\Models\\Student	179	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"ADAM","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
500	default	created	App\\Models\\Enrollment	179	\N	\N	{"attributes":{"status":"enrolled","school_class_id":7,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
501	default	created	App\\Models\\Student	180	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"ISSA","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
502	default	created	App\\Models\\Enrollment	180	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
503	default	created	App\\Models\\Student	181	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"SALEH","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
504	default	created	App\\Models\\Enrollment	181	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
505	default	created	App\\Models\\Student	182	\N	\N	{"attributes":{"first_name":"Salima","last_name":"ISSA","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
506	default	created	App\\Models\\Enrollment	182	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
507	default	created	App\\Models\\Student	183	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"NASSER","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
508	default	created	App\\Models\\Enrollment	183	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
509	default	created	App\\Models\\Student	184	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"DEBY","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
510	default	created	App\\Models\\Enrollment	184	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
511	default	created	App\\Models\\Student	185	\N	\N	{"attributes":{"first_name":"Zara","last_name":"ADAM","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
512	default	created	App\\Models\\Enrollment	185	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
513	default	created	App\\Models\\Student	186	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"MAHAMAT","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
514	default	created	App\\Models\\Enrollment	186	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
515	default	created	App\\Models\\Student	187	\N	\N	{"attributes":{"first_name":"Zara","last_name":"NASSER","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
516	default	created	App\\Models\\Enrollment	187	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
517	default	created	App\\Models\\Student	188	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"NASSER","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
518	default	created	App\\Models\\Enrollment	188	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
519	default	created	App\\Models\\Student	189	\N	\N	{"attributes":{"first_name":"Ali","last_name":"MAHAMAT","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
520	default	created	App\\Models\\Enrollment	189	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
521	default	created	App\\Models\\Student	190	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"IBRAHIM","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
522	default	created	App\\Models\\Enrollment	190	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
523	default	created	App\\Models\\Student	191	\N	\N	{"attributes":{"first_name":"Zara","last_name":"TAHIR","status":"active","school_id":2}}	2026-05-12 20:05:18	2026-05-12 20:05:18	created	\N
524	default	created	App\\Models\\Enrollment	191	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
525	default	created	App\\Models\\Student	192	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"ISSA","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
526	default	created	App\\Models\\Enrollment	192	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
527	default	created	App\\Models\\Student	193	\N	\N	{"attributes":{"first_name":"Ali","last_name":"DEBY","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
528	default	created	App\\Models\\Enrollment	193	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
529	default	created	App\\Models\\Student	194	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"DJIBRINE","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
530	default	created	App\\Models\\Enrollment	194	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
531	default	created	App\\Models\\Student	195	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"KHAMIS","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
532	default	created	App\\Models\\Enrollment	195	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
533	default	created	App\\Models\\Student	196	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"DEBY","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
534	default	created	App\\Models\\Enrollment	196	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
535	default	created	App\\Models\\Student	197	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"SALEH","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
536	default	created	App\\Models\\Enrollment	197	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
537	default	created	App\\Models\\Student	198	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"NASSER","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
538	default	created	App\\Models\\Enrollment	198	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
539	default	created	App\\Models\\Student	199	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"NASSER","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
540	default	created	App\\Models\\Enrollment	199	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
541	default	created	App\\Models\\Student	200	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"ISSA","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
542	default	created	App\\Models\\Enrollment	200	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
543	default	created	App\\Models\\Student	201	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"DEBY","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
544	default	created	App\\Models\\Enrollment	201	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
545	default	created	App\\Models\\Student	202	\N	\N	{"attributes":{"first_name":"Amina","last_name":"MOUSSA","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
546	default	created	App\\Models\\Enrollment	202	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
547	default	created	App\\Models\\Student	203	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"TAHIR","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
548	default	created	App\\Models\\Enrollment	203	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
549	default	created	App\\Models\\Student	204	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"IBRAHIM","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
550	default	created	App\\Models\\Enrollment	204	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
551	default	created	App\\Models\\Student	205	\N	\N	{"attributes":{"first_name":"Zara","last_name":"IBRAHIM","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
552	default	created	App\\Models\\Enrollment	205	\N	\N	{"attributes":{"status":"enrolled","school_class_id":8,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
553	default	created	App\\Models\\Student	206	\N	\N	{"attributes":{"first_name":"Zara","last_name":"DEBY","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
554	default	created	App\\Models\\Enrollment	206	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
555	default	created	App\\Models\\Student	207	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"IBRAHIM","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
556	default	created	App\\Models\\Enrollment	207	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
557	default	created	App\\Models\\Student	208	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"MAHAMAT","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
558	default	created	App\\Models\\Enrollment	208	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
559	default	created	App\\Models\\Student	209	\N	\N	{"attributes":{"first_name":"Nadia","last_name":"SALEH","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
560	default	created	App\\Models\\Enrollment	209	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
561	default	created	App\\Models\\Student	210	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"IBRAHIM","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
562	default	created	App\\Models\\Enrollment	210	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
563	default	created	App\\Models\\Student	211	\N	\N	{"attributes":{"first_name":"Nadia","last_name":"TAHIR","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
564	default	created	App\\Models\\Enrollment	211	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
565	default	created	App\\Models\\Student	212	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"DJIBRINE","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
566	default	created	App\\Models\\Enrollment	212	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
567	default	created	App\\Models\\Student	213	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"ABDERAHIM","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
568	default	created	App\\Models\\Enrollment	213	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
569	default	created	App\\Models\\Student	214	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"DJIBRINE","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
570	default	created	App\\Models\\Enrollment	214	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
571	default	created	App\\Models\\Student	215	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"NGARADOUM","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
572	default	created	App\\Models\\Enrollment	215	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
573	default	created	App\\Models\\Student	216	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"ISSA","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
574	default	created	App\\Models\\Enrollment	216	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
575	default	created	App\\Models\\Student	217	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"DJIBRINE","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
576	default	created	App\\Models\\Enrollment	217	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
577	default	created	App\\Models\\Student	218	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"TAHIR","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
578	default	created	App\\Models\\Enrollment	218	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
579	default	created	App\\Models\\Student	219	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"ADOUM","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
580	default	created	App\\Models\\Enrollment	219	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
581	default	created	App\\Models\\Student	220	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"NGARADOUM","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
582	default	created	App\\Models\\Enrollment	220	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
583	default	created	App\\Models\\Student	221	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"NGARADOUM","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
584	default	created	App\\Models\\Enrollment	221	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
585	default	created	App\\Models\\Student	222	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"MOUSSA","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
586	default	created	App\\Models\\Enrollment	222	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
587	default	created	App\\Models\\Student	223	\N	\N	{"attributes":{"first_name":"Brahim","last_name":"SALEH","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
588	default	created	App\\Models\\Enrollment	223	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
589	default	created	App\\Models\\Student	224	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"MOUSSA","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
590	default	created	App\\Models\\Enrollment	224	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
591	default	created	App\\Models\\Student	225	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"TAHIR","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
592	default	created	App\\Models\\Enrollment	225	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
593	default	created	App\\Models\\Student	226	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"MAHAMAT","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
594	default	created	App\\Models\\Enrollment	226	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
595	default	created	App\\Models\\Student	227	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"OUMAR","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
596	default	created	App\\Models\\Enrollment	227	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
597	default	created	App\\Models\\Student	228	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"TAHIR","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
598	default	created	App\\Models\\Enrollment	228	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
599	default	created	App\\Models\\Student	229	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"MAHAMAT","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
600	default	created	App\\Models\\Enrollment	229	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
601	default	created	App\\Models\\Student	230	\N	\N	{"attributes":{"first_name":"Zara","last_name":"DJIBRINE","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
602	default	created	App\\Models\\Enrollment	230	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
603	default	created	App\\Models\\Student	231	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"IBRAHIM","status":"active","school_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
604	default	created	App\\Models\\Enrollment	231	\N	\N	{"attributes":{"status":"enrolled","school_class_id":9,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
605	default	created	App\\Models\\Student	232	\N	\N	{"attributes":{"first_name":"Ali","last_name":"HASSAN","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
606	default	created	App\\Models\\Enrollment	232	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
607	default	created	App\\Models\\Student	233	\N	\N	{"attributes":{"first_name":"Brahim","last_name":"ADAM","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
608	default	created	App\\Models\\Enrollment	233	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
609	default	created	App\\Models\\Student	234	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"DJIBRINE","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
610	default	created	App\\Models\\Enrollment	234	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
611	default	created	App\\Models\\Student	235	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"ADOUM","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
612	default	created	App\\Models\\Enrollment	235	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
613	default	created	App\\Models\\Student	236	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"ADAM","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
614	default	created	App\\Models\\Enrollment	236	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
615	default	created	App\\Models\\Student	237	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"ADOUM","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
616	default	created	App\\Models\\Enrollment	237	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
617	default	created	App\\Models\\Student	238	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"MOUSSA","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
618	default	created	App\\Models\\Enrollment	238	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
619	default	created	App\\Models\\Student	239	\N	\N	{"attributes":{"first_name":"Brahim","last_name":"IBRAHIM","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
620	default	created	App\\Models\\Enrollment	239	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
621	default	created	App\\Models\\Student	240	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"DEBY","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
622	default	created	App\\Models\\Enrollment	240	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
623	default	created	App\\Models\\Student	241	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"MOUSSA","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
624	default	created	App\\Models\\Enrollment	241	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
625	default	created	App\\Models\\Student	242	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"OUMAR","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
626	default	created	App\\Models\\Enrollment	242	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
627	default	created	App\\Models\\Student	243	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"ADOUM","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
628	default	created	App\\Models\\Enrollment	243	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
629	default	created	App\\Models\\Student	244	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"TAHIR","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
630	default	created	App\\Models\\Enrollment	244	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
631	default	created	App\\Models\\Student	245	\N	\N	{"attributes":{"first_name":"Ali","last_name":"MOUSSA","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
632	default	created	App\\Models\\Enrollment	245	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
633	default	created	App\\Models\\Student	246	\N	\N	{"attributes":{"first_name":"Ali","last_name":"DJIBRINE","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
634	default	created	App\\Models\\Enrollment	246	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
635	default	created	App\\Models\\Student	247	\N	\N	{"attributes":{"first_name":"Amina","last_name":"SALEH","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
636	default	created	App\\Models\\Enrollment	247	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
637	default	created	App\\Models\\Student	248	\N	\N	{"attributes":{"first_name":"Nadia","last_name":"TAHIR","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
638	default	created	App\\Models\\Enrollment	248	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
639	default	created	App\\Models\\Student	249	\N	\N	{"attributes":{"first_name":"Ali","last_name":"NGARADOUM","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
640	default	created	App\\Models\\Enrollment	249	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
641	default	created	App\\Models\\Student	250	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"TAHIR","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
642	default	created	App\\Models\\Enrollment	250	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
643	default	created	App\\Models\\Student	251	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"NGARADOUM","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
644	default	created	App\\Models\\Enrollment	251	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
645	default	created	App\\Models\\Student	252	\N	\N	{"attributes":{"first_name":"Ali","last_name":"IBRAHIM","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
646	default	created	App\\Models\\Enrollment	252	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
647	default	created	App\\Models\\Student	253	\N	\N	{"attributes":{"first_name":"Ali","last_name":"NASSER","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
648	default	created	App\\Models\\Enrollment	253	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
649	default	created	App\\Models\\Student	254	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"NASSER","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
650	default	created	App\\Models\\Enrollment	254	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
651	default	created	App\\Models\\Student	255	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"DEBY","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
652	default	created	App\\Models\\Enrollment	255	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
653	default	created	App\\Models\\Student	256	\N	\N	{"attributes":{"first_name":"Amina","last_name":"NASSER","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
654	default	created	App\\Models\\Enrollment	256	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
655	default	created	App\\Models\\Student	257	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"ISSA","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
656	default	created	App\\Models\\Enrollment	257	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
657	default	created	App\\Models\\Student	258	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"NASSER","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
658	default	created	App\\Models\\Enrollment	258	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
659	default	created	App\\Models\\Student	259	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"ISSA","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
660	default	created	App\\Models\\Enrollment	259	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
661	default	created	App\\Models\\Student	260	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"MOUSSA","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
662	default	created	App\\Models\\Enrollment	260	\N	\N	{"attributes":{"status":"enrolled","school_class_id":10,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
663	default	created	App\\Models\\Student	261	\N	\N	{"attributes":{"first_name":"Moussa","last_name":"ADOUM","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
664	default	created	App\\Models\\Enrollment	261	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
665	default	created	App\\Models\\Student	262	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"MAHAMAT","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
666	default	created	App\\Models\\Enrollment	262	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
667	default	created	App\\Models\\Student	263	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"DJIBRINE","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
668	default	created	App\\Models\\Enrollment	263	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
669	default	created	App\\Models\\Student	264	\N	\N	{"attributes":{"first_name":"Brahim","last_name":"ADAM","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
670	default	created	App\\Models\\Enrollment	264	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
671	default	created	App\\Models\\Student	265	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"HASSAN","status":"active","school_id":3}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
672	default	created	App\\Models\\Enrollment	265	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:19	2026-05-12 20:05:19	created	\N
673	default	created	App\\Models\\Student	266	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"ABDERAHIM","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
674	default	created	App\\Models\\Enrollment	266	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
675	default	created	App\\Models\\Student	267	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"KHAMIS","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
676	default	created	App\\Models\\Enrollment	267	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
677	default	created	App\\Models\\Student	268	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"OUMAR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
678	default	created	App\\Models\\Enrollment	268	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
679	default	created	App\\Models\\Student	269	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"KHAMIS","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
680	default	created	App\\Models\\Enrollment	269	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
681	default	created	App\\Models\\Student	270	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"HASSAN","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
682	default	created	App\\Models\\Enrollment	270	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
683	default	created	App\\Models\\Student	271	\N	\N	{"attributes":{"first_name":"Salima","last_name":"ADOUM","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
684	default	created	App\\Models\\Enrollment	271	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
685	default	created	App\\Models\\Student	272	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"ADAM","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
686	default	created	App\\Models\\Enrollment	272	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
687	default	created	App\\Models\\Student	273	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"HASSAN","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
688	default	created	App\\Models\\Enrollment	273	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
689	default	created	App\\Models\\Student	274	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"OUMAR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
690	default	created	App\\Models\\Enrollment	274	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
691	default	created	App\\Models\\Student	275	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"SALEH","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
692	default	created	App\\Models\\Enrollment	275	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
693	default	created	App\\Models\\Student	276	\N	\N	{"attributes":{"first_name":"Amina","last_name":"ADAM","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
694	default	created	App\\Models\\Enrollment	276	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
695	default	created	App\\Models\\Student	277	\N	\N	{"attributes":{"first_name":"Ali","last_name":"KHAMIS","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
696	default	created	App\\Models\\Enrollment	277	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
697	default	created	App\\Models\\Student	278	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"TAHIR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
698	default	created	App\\Models\\Enrollment	278	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
699	default	created	App\\Models\\Student	279	\N	\N	{"attributes":{"first_name":"Nadia","last_name":"KHAMIS","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
700	default	created	App\\Models\\Enrollment	279	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
701	default	created	App\\Models\\Student	280	\N	\N	{"attributes":{"first_name":"Amina","last_name":"IBRAHIM","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
702	default	created	App\\Models\\Enrollment	280	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
703	default	created	App\\Models\\Student	281	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"TAHIR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
704	default	created	App\\Models\\Enrollment	281	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
705	default	created	App\\Models\\Student	282	\N	\N	{"attributes":{"first_name":"Zara","last_name":"KHAMIS","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
706	default	created	App\\Models\\Enrollment	282	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
707	default	created	App\\Models\\Student	283	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"MAHAMAT","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
708	default	created	App\\Models\\Enrollment	283	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
709	default	created	App\\Models\\Student	284	\N	\N	{"attributes":{"first_name":"Salima","last_name":"OUMAR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
710	default	created	App\\Models\\Enrollment	284	\N	\N	{"attributes":{"status":"enrolled","school_class_id":11,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
711	default	created	App\\Models\\Student	285	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"KHAMIS","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
712	default	created	App\\Models\\Enrollment	285	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
713	default	created	App\\Models\\Student	286	\N	\N	{"attributes":{"first_name":"Ali","last_name":"TAHIR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
714	default	created	App\\Models\\Enrollment	286	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
715	default	created	App\\Models\\Student	287	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"ABDERAHIM","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
716	default	created	App\\Models\\Enrollment	287	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
717	default	created	App\\Models\\Student	288	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"DEBY","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
718	default	created	App\\Models\\Enrollment	288	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
719	default	created	App\\Models\\Student	289	\N	\N	{"attributes":{"first_name":"Salima","last_name":"ADOUM","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
720	default	created	App\\Models\\Enrollment	289	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
721	default	created	App\\Models\\Student	290	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"HASSAN","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
722	default	created	App\\Models\\Enrollment	290	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
723	default	created	App\\Models\\Student	291	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"OUMAR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
724	default	created	App\\Models\\Enrollment	291	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
725	default	created	App\\Models\\Student	292	\N	\N	{"attributes":{"first_name":"Amina","last_name":"OUMAR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
726	default	created	App\\Models\\Enrollment	292	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
727	default	created	App\\Models\\Student	293	\N	\N	{"attributes":{"first_name":"Brahim","last_name":"OUMAR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
728	default	created	App\\Models\\Enrollment	293	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
729	default	created	App\\Models\\Student	294	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"OUMAR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
730	default	created	App\\Models\\Enrollment	294	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
731	default	created	App\\Models\\Student	295	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"DJIBRINE","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
732	default	created	App\\Models\\Enrollment	295	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
733	default	created	App\\Models\\Student	296	\N	\N	{"attributes":{"first_name":"Ali","last_name":"NASSER","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
734	default	created	App\\Models\\Enrollment	296	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
735	default	created	App\\Models\\Student	297	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"KHAMIS","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
736	default	created	App\\Models\\Enrollment	297	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
737	default	created	App\\Models\\Student	298	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"ABDERAHIM","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
738	default	created	App\\Models\\Enrollment	298	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
739	default	created	App\\Models\\Student	299	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"ADAM","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
740	default	created	App\\Models\\Enrollment	299	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
741	default	created	App\\Models\\Student	300	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"ADAM","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
742	default	created	App\\Models\\Enrollment	300	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
743	default	created	App\\Models\\Student	301	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"TAHIR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
744	default	created	App\\Models\\Enrollment	301	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
745	default	created	App\\Models\\Student	302	\N	\N	{"attributes":{"first_name":"Amina","last_name":"DEBY","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
746	default	created	App\\Models\\Enrollment	302	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
747	default	created	App\\Models\\Student	303	\N	\N	{"attributes":{"first_name":"Salima","last_name":"TAHIR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
748	default	created	App\\Models\\Enrollment	303	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
749	default	created	App\\Models\\Student	304	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"HASSAN","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
750	default	created	App\\Models\\Enrollment	304	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
751	default	created	App\\Models\\Student	305	\N	\N	{"attributes":{"first_name":"Brahim","last_name":"SALEH","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
752	default	created	App\\Models\\Enrollment	305	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
753	default	created	App\\Models\\Student	306	\N	\N	{"attributes":{"first_name":"Salima","last_name":"SALEH","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
754	default	created	App\\Models\\Enrollment	306	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
755	default	created	App\\Models\\Student	307	\N	\N	{"attributes":{"first_name":"Ali","last_name":"HASSAN","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
756	default	created	App\\Models\\Enrollment	307	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
757	default	created	App\\Models\\Student	308	\N	\N	{"attributes":{"first_name":"Amina","last_name":"HASSAN","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
758	default	created	App\\Models\\Enrollment	308	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
759	default	created	App\\Models\\Student	309	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"ABDERAHIM","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
760	default	created	App\\Models\\Enrollment	309	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
761	default	created	App\\Models\\Student	310	\N	\N	{"attributes":{"first_name":"Nadia","last_name":"OUMAR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
762	default	created	App\\Models\\Enrollment	310	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
763	default	created	App\\Models\\Student	311	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"IBRAHIM","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
764	default	created	App\\Models\\Enrollment	311	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
765	default	created	App\\Models\\Student	312	\N	\N	{"attributes":{"first_name":"Adoum","last_name":"ISSA","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
766	default	created	App\\Models\\Enrollment	312	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
767	default	created	App\\Models\\Student	313	\N	\N	{"attributes":{"first_name":"Nadia","last_name":"TAHIR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
768	default	created	App\\Models\\Enrollment	313	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
769	default	created	App\\Models\\Student	314	\N	\N	{"attributes":{"first_name":"Idriss","last_name":"ADAM","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
770	default	created	App\\Models\\Enrollment	314	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
771	default	created	App\\Models\\Student	315	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"MAHAMAT","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
772	default	created	App\\Models\\Enrollment	315	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
773	default	created	App\\Models\\Student	316	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"MAHAMAT","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
774	default	created	App\\Models\\Enrollment	316	\N	\N	{"attributes":{"status":"enrolled","school_class_id":12,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
775	default	created	App\\Models\\Student	317	\N	\N	{"attributes":{"first_name":"Fatim\\u00e9","last_name":"OUMAR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
776	default	created	App\\Models\\Enrollment	317	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
777	default	created	App\\Models\\Student	318	\N	\N	{"attributes":{"first_name":"Nadia","last_name":"OUMAR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
778	default	created	App\\Models\\Enrollment	318	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
779	default	created	App\\Models\\Student	319	\N	\N	{"attributes":{"first_name":"Salima","last_name":"KHAMIS","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
780	default	created	App\\Models\\Enrollment	319	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
781	default	created	App\\Models\\Student	320	\N	\N	{"attributes":{"first_name":"Ali","last_name":"HASSAN","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
782	default	created	App\\Models\\Enrollment	320	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
783	default	created	App\\Models\\Student	321	\N	\N	{"attributes":{"first_name":"Salima","last_name":"ADOUM","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
784	default	created	App\\Models\\Enrollment	321	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
785	default	created	App\\Models\\Student	322	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"DEBY","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
786	default	created	App\\Models\\Enrollment	322	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
787	default	created	App\\Models\\Student	323	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"KHAMIS","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
788	default	created	App\\Models\\Enrollment	323	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
789	default	created	App\\Models\\Student	324	\N	\N	{"attributes":{"first_name":"Koumba","last_name":"DJIBRINE","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
790	default	created	App\\Models\\Enrollment	324	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
791	default	created	App\\Models\\Student	325	\N	\N	{"attributes":{"first_name":"Zara","last_name":"NASSER","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
792	default	created	App\\Models\\Enrollment	325	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
793	default	created	App\\Models\\Student	326	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"OUMAR","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
794	default	created	App\\Models\\Enrollment	326	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
795	default	created	App\\Models\\Student	327	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"HASSAN","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
796	default	created	App\\Models\\Enrollment	327	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
797	default	created	App\\Models\\Student	328	\N	\N	{"attributes":{"first_name":"Brahim","last_name":"SALEH","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
798	default	created	App\\Models\\Enrollment	328	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
799	default	created	App\\Models\\Student	329	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"SALEH","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
800	default	created	App\\Models\\Enrollment	329	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
801	default	created	App\\Models\\Student	330	\N	\N	{"attributes":{"first_name":"Hassan","last_name":"MAHAMAT","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
802	default	created	App\\Models\\Enrollment	330	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
803	default	created	App\\Models\\Student	331	\N	\N	{"attributes":{"first_name":"Amina","last_name":"SALEH","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
804	default	created	App\\Models\\Enrollment	331	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
805	default	created	App\\Models\\Student	332	\N	\N	{"attributes":{"first_name":"Nadia","last_name":"ADOUM","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
806	default	created	App\\Models\\Enrollment	332	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
807	default	created	App\\Models\\Student	333	\N	\N	{"attributes":{"first_name":"Amina","last_name":"SALEH","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
808	default	created	App\\Models\\Enrollment	333	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
809	default	created	App\\Models\\Student	334	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"MOUSSA","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
810	default	created	App\\Models\\Enrollment	334	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
811	default	created	App\\Models\\Student	335	\N	\N	{"attributes":{"first_name":"Salima","last_name":"KHAMIS","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
812	default	created	App\\Models\\Enrollment	335	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
813	default	created	App\\Models\\Student	336	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"NASSER","status":"active","school_id":3}}	2026-05-12 20:05:20	2026-05-12 20:05:20	created	\N
814	default	created	App\\Models\\Enrollment	336	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
815	default	created	App\\Models\\Student	337	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"SALEH","status":"active","school_id":3}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
816	default	created	App\\Models\\Enrollment	337	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
817	default	created	App\\Models\\Student	338	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"HASSAN","status":"active","school_id":3}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
818	default	created	App\\Models\\Enrollment	338	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
819	default	created	App\\Models\\Student	339	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"DJIBRINE","status":"active","school_id":3}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
820	default	created	App\\Models\\Enrollment	339	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
821	default	created	App\\Models\\Student	340	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"NGARADOUM","status":"active","school_id":3}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
822	default	created	App\\Models\\Enrollment	340	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
823	default	created	App\\Models\\Student	341	\N	\N	{"attributes":{"first_name":"Salima","last_name":"MAHAMAT","status":"active","school_id":3}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
824	default	created	App\\Models\\Enrollment	341	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
825	default	created	App\\Models\\Student	342	\N	\N	{"attributes":{"first_name":"Nadia","last_name":"DEBY","status":"active","school_id":3}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
826	default	created	App\\Models\\Enrollment	342	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
827	default	created	App\\Models\\Student	343	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"IBRAHIM","status":"active","school_id":3}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
828	default	created	App\\Models\\Enrollment	343	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
829	default	created	App\\Models\\Student	344	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"KHAMIS","status":"active","school_id":3}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
830	default	created	App\\Models\\Enrollment	344	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
831	default	created	App\\Models\\Student	345	\N	\N	{"attributes":{"first_name":"Youssouf","last_name":"TAHIR","status":"active","school_id":3}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
832	default	created	App\\Models\\Enrollment	345	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
833	default	created	App\\Models\\Student	346	\N	\N	{"attributes":{"first_name":"Haoua","last_name":"MOUSSA","status":"active","school_id":3}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
834	default	created	App\\Models\\Enrollment	346	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
835	default	created	App\\Models\\Student	347	\N	\N	{"attributes":{"first_name":"Salima","last_name":"DEBY","status":"active","school_id":3}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
836	default	created	App\\Models\\Enrollment	347	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
837	default	created	App\\Models\\Student	348	\N	\N	{"attributes":{"first_name":"Nadia","last_name":"NGARADOUM","status":"active","school_id":3}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
838	default	created	App\\Models\\Enrollment	348	\N	\N	{"attributes":{"status":"enrolled","school_class_id":13,"school_year_id":2}}	2026-05-12 20:05:21	2026-05-12 20:05:21	created	\N
916	default	report_card.generated: class=2 year=2 period=trimester_1 count=22	\N	\N	\N	\N	[]	2026-05-12 20:24:11	2026-05-12 20:24:11	\N	\N
917	default	report_card.generated: class=3 year=2 period=trimester_1 count=28	\N	\N	\N	\N	[]	2026-05-12 20:24:12	2026-05-12 20:24:12	\N	\N
918	default	report_card.generated: class=4 year=2 period=trimester_1 count=31	\N	\N	\N	\N	[]	2026-05-12 20:24:12	2026-05-12 20:24:12	\N	\N
919	default	report_card.generated: class=5 year=2 period=trimester_1 count=21	\N	\N	\N	\N	[]	2026-05-12 20:24:13	2026-05-12 20:24:13	\N	\N
920	default	report_card.generated: class=6 year=2 period=trimester_1 count=27	\N	\N	\N	\N	[]	2026-05-12 20:24:13	2026-05-12 20:24:13	\N	\N
921	default	report_card.generated: class=7 year=2 period=trimester_1 count=29	\N	\N	\N	\N	[]	2026-05-12 20:24:14	2026-05-12 20:24:14	\N	\N
922	default	report_card.generated: class=8 year=2 period=trimester_1 count=26	\N	\N	\N	\N	[]	2026-05-12 20:24:14	2026-05-12 20:24:14	\N	\N
923	default	report_card.generated: class=9 year=2 period=trimester_1 count=26	\N	\N	\N	\N	[]	2026-05-12 20:24:14	2026-05-12 20:24:14	\N	\N
924	default	report_card.generated: class=10 year=2 period=trimester_1 count=29	\N	\N	\N	\N	[]	2026-05-12 20:24:15	2026-05-12 20:24:15	\N	\N
925	default	report_card.generated: class=11 year=2 period=trimester_1 count=24	\N	\N	\N	\N	[]	2026-05-12 20:24:15	2026-05-12 20:24:15	\N	\N
926	default	report_card.generated: class=12 year=2 period=trimester_1 count=32	\N	\N	\N	\N	[]	2026-05-12 20:24:15	2026-05-12 20:24:15	\N	\N
927	default	report_card.generated: class=13 year=2 period=trimester_1 count=32	\N	\N	\N	\N	[]	2026-05-12 20:24:16	2026-05-12 20:24:16	\N	\N
928	default	created	App\\Models\\Exam	1	\N	\N	{"attributes":{"school_year_id":2,"name":"BEPC 2025","type":"official_exam","status":"results_published","center":"Centre d'examen de N'Djamena","date_start":"2025-05-19T23:00:00.000000Z","date_end":"2025-05-23T23:00:00.000000Z","registration_deadline":"2025-04-14T23:00:00.000000Z","description":"Brevet d'\\u00c9tudes du Premier Cycle \\u2014 session 2025"}}	2026-05-12 20:24:16	2026-05-12 20:24:16	created	\N
932	default	exam.opened	App\\Models\\Exam	2	App\\Models\\User	11	[]	2026-05-12 20:31:52	2026-05-12 20:31:52	\N	\N
940	default	created	App\\Models\\User	134	\N	\N	{"attributes":{"first_name":"Mahamat","last_name":"ADOUM","email":"eleve2@edupilot.td","is_active":true}}	2026-05-12 21:49:11	2026-05-12 21:49:11	created	\N
941	default	created	App\\Models\\User	135	\N	\N	{"attributes":{"first_name":"Mariam","last_name":"ISSA","email":"eleve3@edupilot.td","is_active":true}}	2026-05-12 21:49:11	2026-05-12 21:49:11	created	\N
\.


--
-- Data for Name: attendances; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.attendances (id, student_id, school_class_id, school_year_id, subject_id, teacher_id, date, status, comment, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: cache; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.cache (key, value, expiration) FROM stdin;
edupilot_spatie.permission.cache	a:3:{s:5:"alias";a:4:{s:1:"a";s:2:"id";s:1:"b";s:4:"name";s:1:"c";s:10:"guard_name";s:1:"r";s:5:"roles";}s:11:"permissions";a:81:{i:0;a:4:{s:1:"a";i:973;s:1:"b";s:18:"territory.view-any";s:1:"c";s:3:"web";s:1:"r";a:4:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;}}i:1;a:4:{s:1:"a";i:974;s:1:"b";s:16:"territory.create";s:1:"c";s:3:"web";s:1:"r";a:1:{i:0;i:97;}}i:2;a:4:{s:1:"a";i:975;s:1:"b";s:16:"territory.update";s:1:"c";s:3:"web";s:1:"r";a:1:{i:0;i:97;}}i:3;a:4:{s:1:"a";i:976;s:1:"b";s:16:"territory.delete";s:1:"c";s:3:"web";s:1:"r";a:1:{i:0;i:97;}}i:4;a:4:{s:1:"a";i:977;s:1:"b";s:16:"schools.view-any";s:1:"c";s:3:"web";s:1:"r";a:4:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;}}i:5;a:4:{s:1:"a";i:978;s:1:"b";s:12:"schools.view";s:1:"c";s:3:"web";s:1:"r";a:5:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;}}i:6;a:4:{s:1:"a";i:979;s:1:"b";s:14:"schools.create";s:1:"c";s:3:"web";s:1:"r";a:3:{i:0;i:97;i:1;i:98;i:2;i:99;}}i:7;a:4:{s:1:"a";i:980;s:1:"b";s:14:"schools.update";s:1:"c";s:3:"web";s:1:"r";a:3:{i:0;i:97;i:1;i:98;i:2;i:99;}}i:8;a:4:{s:1:"a";i:981;s:1:"b";s:14:"schools.delete";s:1:"c";s:3:"web";s:1:"r";a:1:{i:0;i:97;}}i:9;a:4:{s:1:"a";i:982;s:1:"b";s:16:"schools.activate";s:1:"c";s:3:"web";s:1:"r";a:3:{i:0;i:97;i:1;i:98;i:2;i:99;}}i:10;a:4:{s:1:"a";i:983;s:1:"b";s:23:"schools.assign-director";s:1:"c";s:3:"web";s:1:"r";a:1:{i:0;i:97;}}i:11;a:4:{s:1:"a";i:984;s:1:"b";s:21:"school-years.view-any";s:1:"c";s:3:"web";s:1:"r";a:4:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:101;}}i:12;a:4:{s:1:"a";i:985;s:1:"b";s:19:"school-years.create";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:98;}}i:13;a:4:{s:1:"a";i:986;s:1:"b";s:19:"school-years.update";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:98;}}i:14;a:4:{s:1:"a";i:987;s:1:"b";s:21:"school-years.activate";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:98;}}i:15;a:4:{s:1:"a";i:988;s:1:"b";s:16:"classes.view-any";s:1:"c";s:3:"web";s:1:"r";a:6:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;i:5;i:102;}}i:16;a:4:{s:1:"a";i:989;s:1:"b";s:12:"classes.view";s:1:"c";s:3:"web";s:1:"r";a:6:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;i:5;i:102;}}i:17;a:4:{s:1:"a";i:990;s:1:"b";s:14:"classes.create";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:101;}}i:18;a:4:{s:1:"a";i:991;s:1:"b";s:14:"classes.update";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:101;}}i:19;a:4:{s:1:"a";i:992;s:1:"b";s:14:"classes.delete";s:1:"c";s:3:"web";s:1:"r";a:1:{i:0;i:97;}}i:20;a:4:{s:1:"a";i:993;s:1:"b";s:22:"classes.assign-teacher";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:101;}}i:21;a:4:{s:1:"a";i:994;s:1:"b";s:17:"students.view-any";s:1:"c";s:3:"web";s:1:"r";a:6:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;i:5;i:102;}}i:22;a:4:{s:1:"a";i:995;s:1:"b";s:13:"students.view";s:1:"c";s:3:"web";s:1:"r";a:7:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;i:5;i:102;i:6;i:103;}}i:23;a:4:{s:1:"a";i:996;s:1:"b";s:15:"students.create";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:101;}}i:24;a:4:{s:1:"a";i:997;s:1:"b";s:15:"students.update";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:101;}}i:25;a:4:{s:1:"a";i:998;s:1:"b";s:15:"students.delete";s:1:"c";s:3:"web";s:1:"r";a:1:{i:0;i:97;}}i:26;a:4:{s:1:"a";i:999;s:1:"b";s:17:"students.transfer";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:101;}}i:27;a:4:{s:1:"a";i:1000;s:1:"b";s:14:"students.print";s:1:"c";s:3:"web";s:1:"r";a:4:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:101;}}i:28;a:4:{s:1:"a";i:1001;s:1:"b";s:18:"guardians.view-any";s:1:"c";s:3:"web";s:1:"r";a:4:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:101;}}i:29;a:4:{s:1:"a";i:1002;s:1:"b";s:14:"guardians.view";s:1:"c";s:3:"web";s:1:"r";a:4:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:101;}}i:30;a:4:{s:1:"a";i:1003;s:1:"b";s:16:"guardians.create";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:101;}}i:31;a:4:{s:1:"a";i:1004;s:1:"b";s:16:"guardians.update";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:101;}}i:32;a:4:{s:1:"a";i:1005;s:1:"b";s:17:"teachers.view-any";s:1:"c";s:3:"web";s:1:"r";a:5:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;}}i:33;a:4:{s:1:"a";i:1006;s:1:"b";s:13:"teachers.view";s:1:"c";s:3:"web";s:1:"r";a:5:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;}}i:34;a:4:{s:1:"a";i:1007;s:1:"b";s:15:"teachers.create";s:1:"c";s:3:"web";s:1:"r";a:3:{i:0;i:97;i:1;i:98;i:2;i:99;}}i:35;a:4:{s:1:"a";i:1008;s:1:"b";s:15:"teachers.update";s:1:"c";s:3:"web";s:1:"r";a:3:{i:0;i:97;i:1;i:98;i:2;i:99;}}i:36;a:4:{s:1:"a";i:1009;s:1:"b";s:15:"teachers.delete";s:1:"c";s:3:"web";s:1:"r";a:1:{i:0;i:97;}}i:37;a:4:{s:1:"a";i:1010;s:1:"b";s:15:"teachers.assign";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:101;}}i:38;a:4:{s:1:"a";i:1011;s:1:"b";s:17:"teachers.unassign";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:101;}}i:39;a:4:{s:1:"a";i:1012;s:1:"b";s:17:"subjects.view-any";s:1:"c";s:3:"web";s:1:"r";a:5:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;}}i:40;a:4:{s:1:"a";i:1013;s:1:"b";s:13:"subjects.view";s:1:"c";s:3:"web";s:1:"r";a:6:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;i:5;i:102;}}i:41;a:4:{s:1:"a";i:1014;s:1:"b";s:15:"subjects.create";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:98;}}i:42;a:4:{s:1:"a";i:1015;s:1:"b";s:15:"subjects.update";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:98;}}i:43;a:4:{s:1:"a";i:1016;s:1:"b";s:15:"subjects.delete";s:1:"c";s:3:"web";s:1:"r";a:1:{i:0;i:97;}}i:44;a:4:{s:1:"a";i:1017;s:1:"b";s:15:"subjects.assign";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:101;}}i:45;a:4:{s:1:"a";i:1018;s:1:"b";s:20:"enrollments.view-any";s:1:"c";s:3:"web";s:1:"r";a:4:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:101;}}i:46;a:4:{s:1:"a";i:1019;s:1:"b";s:16:"enrollments.view";s:1:"c";s:3:"web";s:1:"r";a:4:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:101;}}i:47;a:4:{s:1:"a";i:1020;s:1:"b";s:18:"enrollments.create";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:101;}}i:48;a:4:{s:1:"a";i:1021;s:1:"b";s:18:"enrollments.update";s:1:"c";s:3:"web";s:1:"r";a:1:{i:0;i:97;}}i:49;a:4:{s:1:"a";i:1022;s:1:"b";s:20:"enrollments.transfer";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:101;}}i:50;a:4:{s:1:"a";i:1023;s:1:"b";s:18:"enrollments.cancel";s:1:"c";s:3:"web";s:1:"r";a:1:{i:0;i:97;}}i:51;a:4:{s:1:"a";i:1024;s:1:"b";s:20:"attendances.view-any";s:1:"c";s:3:"web";s:1:"r";a:6:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;i:5;i:102;}}i:52;a:4:{s:1:"a";i:1025;s:1:"b";s:16:"attendances.view";s:1:"c";s:3:"web";s:1:"r";a:8:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;i:5;i:102;i:6;i:103;i:7;i:104;}}i:53;a:4:{s:1:"a";i:1026;s:1:"b";s:18:"attendances.create";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:102;}}i:54;a:4:{s:1:"a";i:1027;s:1:"b";s:18:"attendances.update";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:102;}}i:55;a:4:{s:1:"a";i:1028;s:1:"b";s:15:"grades.view-any";s:1:"c";s:3:"web";s:1:"r";a:6:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;i:5;i:102;}}i:56;a:4:{s:1:"a";i:1029;s:1:"b";s:11:"grades.view";s:1:"c";s:3:"web";s:1:"r";a:8:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;i:5;i:102;i:6;i:103;i:7;i:104;}}i:57;a:4:{s:1:"a";i:1030;s:1:"b";s:13:"grades.create";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:102;}}i:58;a:4:{s:1:"a";i:1031;s:1:"b";s:13:"grades.update";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:102;}}i:59;a:4:{s:1:"a";i:1032;s:1:"b";s:11:"grades.lock";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:101;}}i:60;a:4:{s:1:"a";i:1033;s:1:"b";s:13:"grades.unlock";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:101;}}i:61;a:4:{s:1:"a";i:1034;s:1:"b";s:21:"report-cards.view-any";s:1:"c";s:3:"web";s:1:"r";a:6:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;i:5;i:102;}}i:62;a:4:{s:1:"a";i:1035;s:1:"b";s:17:"report-cards.view";s:1:"c";s:3:"web";s:1:"r";a:8:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;i:5;i:102;i:6;i:103;i:7;i:104;}}i:63;a:4:{s:1:"a";i:1036;s:1:"b";s:21:"report-cards.generate";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:101;}}i:64;a:4:{s:1:"a";i:1037;s:1:"b";s:18:"report-cards.print";s:1:"c";s:3:"web";s:1:"r";a:3:{i:0;i:97;i:1;i:98;i:2;i:101;}}i:65;a:4:{s:1:"a";i:1038;s:1:"b";s:14:"exams.view-any";s:1:"c";s:3:"web";s:1:"r";a:4:{i:0;i:97;i:1;i:98;i:2;i:100;i:3;i:101;}}i:66;a:4:{s:1:"a";i:1039;s:1:"b";s:10:"exams.view";s:1:"c";s:3:"web";s:1:"r";a:4:{i:0;i:97;i:1;i:98;i:2;i:100;i:3;i:101;}}i:67;a:4:{s:1:"a";i:1040;s:1:"b";s:12:"exams.create";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:98;}}i:68;a:4:{s:1:"a";i:1041;s:1:"b";s:12:"exams.update";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:98;}}i:69;a:4:{s:1:"a";i:1042;s:1:"b";s:12:"exams.delete";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:98;}}i:70;a:4:{s:1:"a";i:1043;s:1:"b";s:14:"exams.register";s:1:"c";s:3:"web";s:1:"r";a:3:{i:0;i:97;i:1;i:98;i:2;i:101;}}i:71;a:4:{s:1:"a";i:1044;s:1:"b";s:13:"exams.results";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:98;}}i:72;a:4:{s:1:"a";i:1045;s:1:"b";s:12:"reports.view";s:1:"c";s:3:"web";s:1:"r";a:5:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;}}i:73;a:4:{s:1:"a";i:1046;s:1:"b";s:14:"reports.export";s:1:"c";s:3:"web";s:1:"r";a:5:{i:0;i:97;i:1;i:98;i:2;i:99;i:3;i:100;i:4;i:101;}}i:74;a:4:{s:1:"a";i:1047;s:1:"b";s:10:"audit.view";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:98;}}i:75;a:4:{s:1:"a";i:1048;s:1:"b";s:14:"users.view-any";s:1:"c";s:3:"web";s:1:"r";a:3:{i:0;i:97;i:1;i:98;i:2;i:99;}}i:76;a:4:{s:1:"a";i:1049;s:1:"b";s:10:"users.view";s:1:"c";s:3:"web";s:1:"r";a:3:{i:0;i:97;i:1;i:98;i:2;i:99;}}i:77;a:4:{s:1:"a";i:1050;s:1:"b";s:12:"users.create";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:98;}}i:78;a:4:{s:1:"a";i:1051;s:1:"b";s:12:"users.update";s:1:"c";s:3:"web";s:1:"r";a:2:{i:0;i:97;i:1;i:98;}}i:79;a:4:{s:1:"a";i:1052;s:1:"b";s:12:"users.delete";s:1:"c";s:3:"web";s:1:"r";a:1:{i:0;i:97;}}i:80;a:4:{s:1:"a";i:1053;s:1:"b";s:17:"users.assign-role";s:1:"c";s:3:"web";s:1:"r";a:1:{i:0;i:97;}}}s:5:"roles";a:8:{i:0;a:3:{s:1:"a";i:97;s:1:"b";s:11:"super_admin";s:1:"c";s:3:"web";}i:1;a:3:{s:1:"a";i:98;s:1:"b";s:14:"admin_national";s:1:"c";s:3:"web";}i:2;a:3:{s:1:"a";i:99;s:1:"b";s:14:"admin_regional";s:1:"c";s:3:"web";}i:3;a:3:{s:1:"a";i:100;s:1:"b";s:10:"inspecteur";s:1:"c";s:3:"web";}i:4;a:3:{s:1:"a";i:101;s:1:"b";s:9:"directeur";s:1:"c";s:3:"web";}i:5;a:3:{s:1:"a";i:102;s:1:"b";s:10:"enseignant";s:1:"c";s:3:"web";}i:6;a:3:{s:1:"a";i:103;s:1:"b";s:6:"parent";s:1:"c";s:3:"web";}i:7;a:3:{s:1:"a";i:104;s:1:"b";s:5:"eleve";s:1:"c";s:3:"web";}}}	1778704624
edupilot_enseignant1@edupilot.td|127.0.0.1:timer	i:1778619766;	1778619766
edupilot_enseignant1@edupilot.td|127.0.0.1	i:1;	1778619766
edupilot_aicha.oumar2@edupilot.td|127.0.0.1:timer	i:1778621829;	1778621829
edupilot_aicha.oumar2@edupilot.td|127.0.0.1	i:1;	1778621829
\.


--
-- Data for Name: cache_locks; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.cache_locks (key, owner, expiration) FROM stdin;
\.


--
-- Data for Name: classes; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.classes (id, name, level, cycle, school_id, school_year_id, main_teacher_id, capacity, room, status, deleted_at, created_at, updated_at) FROM stdin;
1	CP1 A	CP1	primary	1	2	\N	45	Salle 9	active	\N	2026-05-12 20:05:11	2026-05-12 20:05:11
2	CP2 A	CP2	primary	1	2	\N	45	Salle 10	active	\N	2026-05-12 20:05:11	2026-05-12 20:05:11
3	CE1 A	CE1	primary	1	2	\N	45	Salle 10	active	\N	2026-05-12 20:05:11	2026-05-12 20:05:11
4	CE2 A	CE2	primary	1	2	\N	45	Salle 7	active	\N	2026-05-12 20:05:11	2026-05-12 20:05:11
5	CM1 A	CM1	primary	1	2	\N	45	Salle 8	active	\N	2026-05-12 20:05:11	2026-05-12 20:05:11
6	CM2 A	CM2	primary	1	2	\N	45	Salle 6	active	\N	2026-05-12 20:05:11	2026-05-12 20:05:11
7	2nde A	2nde	high	2	2	\N	45	Salle 5	active	\N	2026-05-12 20:05:13	2026-05-12 20:05:13
8	1ère A	1ère	high	2	2	\N	45	Salle 4	active	\N	2026-05-12 20:05:13	2026-05-12 20:05:13
9	Tle A	Tle	high	2	2	\N	45	Salle 4	active	\N	2026-05-12 20:05:13	2026-05-12 20:05:13
10	6ème A	6ème	middle	3	2	\N	45	Salle 3	active	\N	2026-05-12 20:05:15	2026-05-12 20:05:15
11	5ème A	5ème	middle	3	2	\N	45	Salle 2	active	\N	2026-05-12 20:05:15	2026-05-12 20:05:15
12	4ème A	4ème	middle	3	2	\N	45	Salle 3	active	\N	2026-05-12 20:05:15	2026-05-12 20:05:15
13	3ème A	3ème	middle	3	2	\N	45	Salle 6	active	\N	2026-05-12 20:05:15	2026-05-12 20:05:15
\.


--
-- Data for Name: communes; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.communes (id, department_id, name, code, is_active, created_at, updated_at) FROM stdin;
1	1	Commune de N'Djamena	NDJ-C1	t	2026-05-12 20:04:41	2026-05-12 20:04:41
2	2	Commune de Chari-Baguirmi	CB-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
3	3	Commune de Logone Occidental	LO-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
4	4	Commune de Logone Oriental	LOR-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
5	5	Commune de Mayo-Kebbi Est	MKE-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
6	6	Commune de Mayo-Kebbi Ouest	MKO-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
7	7	Commune de Moyen-Chari	MC-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
8	8	Commune de Ouaddaï	OUA-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
9	9	Commune de Borkou	BOR-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
10	10	Commune de Ennedi Est	ENE-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
11	11	Commune de Ennedi Ouest	ENO-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
12	12	Commune de Tibesti	TIB-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
13	13	Commune de Kanem	KAN-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
14	14	Commune de Lac	LAC-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
15	15	Commune de Bahr El Gazel	BEG-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
16	16	Commune de Batha	BAT-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
17	17	Commune de Wadi Fira	WFI-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
18	18	Commune de Sila	SIL-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
19	19	Commune de Hadjer-Lamis	HLM-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
20	20	Commune de Guéra	GUE-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
21	21	Commune de Salamat	SAL-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
22	22	Commune de Mandoul	MAN-C1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
23	23	Commune de Tandjilé	TAN-C1	t	2026-05-12 20:04:43	2026-05-12 20:04:43
\.


--
-- Data for Name: countries; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.countries (id, name, code, phone_code, currency, currency_symbol, is_active, created_at, updated_at) FROM stdin;
1	Tchad	TD	+235	XAF	FCFA	t	2026-05-12 20:04:41	2026-05-12 20:04:41
\.


--
-- Data for Name: departments; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.departments (id, region_id, name, code, is_active, created_at, updated_at) FROM stdin;
1	1	Département de N'Djamena	NDJ-D1	t	2026-05-12 20:04:41	2026-05-12 20:04:41
2	2	Département de Chari-Baguirmi	CB-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
3	3	Département de Logone Occidental	LO-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
4	4	Département de Logone Oriental	LOR-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
5	5	Département de Mayo-Kebbi Est	MKE-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
6	6	Département de Mayo-Kebbi Ouest	MKO-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
7	7	Département de Moyen-Chari	MC-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
8	8	Département de Ouaddaï	OUA-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
9	9	Département de Borkou	BOR-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
10	10	Département de Ennedi Est	ENE-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
11	11	Département de Ennedi Ouest	ENO-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
12	12	Département de Tibesti	TIB-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
13	13	Département de Kanem	KAN-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
14	14	Département de Lac	LAC-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
15	15	Département de Bahr El Gazel	BEG-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
16	16	Département de Batha	BAT-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
17	17	Département de Wadi Fira	WFI-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
18	18	Département de Sila	SIL-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
19	19	Département de Hadjer-Lamis	HLM-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
20	20	Département de Guéra	GUE-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
21	21	Département de Salamat	SAL-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
22	22	Département de Mandoul	MAN-D1	t	2026-05-12 20:04:42	2026-05-12 20:04:42
23	23	Département de Tandjilé	TAN-D1	t	2026-05-12 20:04:43	2026-05-12 20:04:43
\.


--
-- Data for Name: enrollments; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.enrollments (id, student_id, school_class_id, school_year_id, school_id, enrollment_date, status, notes, created_at, updated_at) FROM stdin;
1	1	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:15	2026-05-12 20:05:15
2	2	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:15	2026-05-12 20:05:15
3	3	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:15	2026-05-12 20:05:15
4	4	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:15	2026-05-12 20:05:15
5	5	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
6	6	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
7	7	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
8	8	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
9	9	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
10	10	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
11	11	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
12	12	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
13	13	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
14	14	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
15	15	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
16	16	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
17	17	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
18	18	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
19	19	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
20	20	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
21	21	1	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
22	22	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
23	23	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
24	24	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
25	25	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
26	26	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
27	27	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
28	28	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
29	29	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
30	30	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
31	31	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
32	32	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
33	33	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
34	34	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
35	35	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
36	36	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
37	37	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
38	38	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
39	39	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
40	40	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
41	41	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
42	42	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
43	43	2	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
44	44	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
45	45	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
46	46	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
47	47	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
48	48	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
49	49	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
50	50	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
51	51	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
52	52	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
53	53	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
54	54	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
55	55	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
56	56	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
57	57	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
58	58	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
59	59	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
60	60	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
61	61	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
62	62	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
63	63	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
64	64	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
65	65	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
66	66	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
67	67	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
68	68	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
69	69	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:16	2026-05-12 20:05:16
70	70	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
71	71	3	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
72	72	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
73	73	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
74	74	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
75	75	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
76	76	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
77	77	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
78	78	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
79	79	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
80	80	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
81	81	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
82	82	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
83	83	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
84	84	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
85	85	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
86	86	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
87	87	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
88	88	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
89	89	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
90	90	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
91	91	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
92	92	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
93	93	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
94	94	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
95	95	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
96	96	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
97	97	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
98	98	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
99	99	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
100	100	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
101	101	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
102	102	4	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
103	103	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
104	104	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
105	105	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
106	106	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
107	107	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
108	108	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
109	109	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
110	110	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
111	111	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
112	112	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
113	113	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
114	114	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
115	115	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
116	116	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
117	117	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
118	118	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
119	119	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
120	120	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:17	2026-05-12 20:05:17
121	121	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
122	122	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
123	123	5	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
124	124	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
125	125	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
126	126	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
127	127	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
128	128	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
129	129	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
130	130	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
131	131	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
132	132	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
133	133	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
134	134	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
135	135	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
136	136	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
137	137	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
138	138	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
139	139	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
140	140	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
141	141	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
142	142	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
143	143	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
144	144	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
145	145	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
146	146	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
147	147	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
148	148	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
149	149	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
150	150	6	2	1	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
151	151	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
152	152	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
153	153	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
154	154	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
155	155	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
156	156	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
157	157	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
158	158	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
159	159	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
160	160	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
161	161	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
162	162	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
163	163	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
164	164	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
165	165	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
166	166	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
167	167	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
168	168	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
169	169	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
170	170	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
171	171	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
172	172	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
173	173	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
174	174	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
175	175	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
176	176	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
177	177	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
178	178	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
179	179	7	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
180	180	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
181	181	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
182	182	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
183	183	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
184	184	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
185	185	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
186	186	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
187	187	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
188	188	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
189	189	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
190	190	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
191	191	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:18	2026-05-12 20:05:18
192	192	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
193	193	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
194	194	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
195	195	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
196	196	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
197	197	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
198	198	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
199	199	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
200	200	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
201	201	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
202	202	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
203	203	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
204	204	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
205	205	8	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
206	206	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
207	207	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
208	208	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
209	209	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
210	210	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
211	211	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
212	212	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
213	213	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
214	214	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
215	215	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
216	216	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
217	217	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
218	218	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
219	219	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
220	220	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
221	221	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
222	222	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
223	223	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
224	224	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
225	225	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
226	226	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
227	227	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
228	228	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
229	229	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
230	230	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
231	231	9	2	2	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
232	232	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
233	233	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
234	234	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
235	235	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
236	236	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
237	237	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
238	238	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
239	239	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
240	240	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
241	241	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
242	242	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
243	243	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
244	244	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
245	245	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
246	246	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
247	247	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
248	248	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
249	249	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
250	250	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
251	251	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
252	252	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
253	253	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
254	254	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
255	255	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
256	256	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
257	257	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
258	258	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
259	259	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
260	260	10	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
261	261	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
262	262	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
263	263	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
264	264	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
265	265	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:19	2026-05-12 20:05:19
266	266	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
267	267	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
268	268	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
269	269	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
270	270	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
271	271	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
272	272	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
273	273	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
274	274	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
275	275	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
276	276	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
277	277	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
278	278	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
279	279	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
280	280	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
281	281	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
282	282	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
283	283	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
284	284	11	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
285	285	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
286	286	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
287	287	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
288	288	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
289	289	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
290	290	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
291	291	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
292	292	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
293	293	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
294	294	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
295	295	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
296	296	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
297	297	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
298	298	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
299	299	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
300	300	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
301	301	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
302	302	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
303	303	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
304	304	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
305	305	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
306	306	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
307	307	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
308	308	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
309	309	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
310	310	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
311	311	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
312	312	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
313	313	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
314	314	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
315	315	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
316	316	12	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
317	317	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
318	318	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
319	319	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
320	320	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
321	321	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
322	322	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
323	323	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
324	324	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
325	325	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
326	326	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
327	327	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
328	328	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
329	329	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
330	330	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
331	331	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
332	332	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
333	333	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
334	334	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
335	335	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:20	2026-05-12 20:05:20
336	336	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:21	2026-05-12 20:05:21
337	337	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:21	2026-05-12 20:05:21
338	338	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:21	2026-05-12 20:05:21
339	339	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:21	2026-05-12 20:05:21
340	340	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:21	2026-05-12 20:05:21
341	341	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:21	2026-05-12 20:05:21
342	342	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:21	2026-05-12 20:05:21
343	343	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:21	2026-05-12 20:05:21
344	344	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:21	2026-05-12 20:05:21
345	345	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:21	2026-05-12 20:05:21
346	346	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:21	2026-05-12 20:05:21
347	347	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:21	2026-05-12 20:05:21
348	348	13	2	3	2024-10-01	enrolled	\N	2026-05-12 20:05:21	2026-05-12 20:05:21
\.


--
-- Data for Name: evaluations; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.evaluations (id, school_class_id, subject_id, school_year_id, teacher_id, title, type, period, date, max_grade, coefficient, is_locked, created_at, updated_at) FROM stdin;
1	1	20	2	9	Devoir Mathématiques	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:09	2026-05-12 20:22:09
2	1	20	2	9	Composition Mathématiques	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:10	2026-05-12 20:22:10
3	1	21	2	9	Devoir Français	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:10	2026-05-12 20:22:10
4	1	21	2	9	Composition Français	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:10	2026-05-12 20:22:10
5	1	22	2	9	Devoir Sciences Naturelles	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:10	2026-05-12 20:22:10
6	1	22	2	9	Composition Sciences Naturelles	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:11	2026-05-12 20:22:11
7	1	23	2	9	Devoir Histoire-Géographie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:11	2026-05-12 20:22:11
8	1	23	2	9	Composition Histoire-Géographie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:11	2026-05-12 20:22:11
9	1	24	2	9	Devoir Éducation Civique	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:12	2026-05-12 20:22:12
10	1	24	2	9	Composition Éducation Civique	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:12	2026-05-12 20:22:12
11	1	25	2	9	Devoir Éducation Physique	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:12	2026-05-12 20:22:12
12	1	25	2	9	Composition Éducation Physique	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:12	2026-05-12 20:22:12
13	1	20	2	9	Devoir Mathématiques	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:12	2026-05-12 20:22:12
14	1	20	2	9	Composition Mathématiques	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:13	2026-05-12 20:22:13
15	1	21	2	9	Devoir Français	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:13	2026-05-12 20:22:13
16	1	21	2	9	Composition Français	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:13	2026-05-12 20:22:13
17	1	22	2	9	Devoir Sciences Naturelles	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:13	2026-05-12 20:22:13
18	1	22	2	9	Composition Sciences Naturelles	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:14	2026-05-12 20:22:14
19	1	23	2	9	Devoir Histoire-Géographie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:14	2026-05-12 20:22:14
20	1	23	2	9	Composition Histoire-Géographie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:14	2026-05-12 20:22:14
21	1	24	2	9	Devoir Éducation Civique	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:15	2026-05-12 20:22:15
22	1	24	2	9	Composition Éducation Civique	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:15	2026-05-12 20:22:15
23	1	25	2	9	Devoir Éducation Physique	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:15	2026-05-12 20:22:15
24	1	25	2	9	Composition Éducation Physique	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:15	2026-05-12 20:22:15
25	2	20	2	9	Devoir Mathématiques	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:17	2026-05-12 20:22:17
26	2	20	2	9	Composition Mathématiques	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:17	2026-05-12 20:22:17
27	2	21	2	9	Devoir Français	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:17	2026-05-12 20:22:17
28	2	21	2	9	Composition Français	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:18	2026-05-12 20:22:18
29	2	22	2	9	Devoir Sciences Naturelles	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:18	2026-05-12 20:22:18
30	2	22	2	9	Composition Sciences Naturelles	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:18	2026-05-12 20:22:18
31	2	23	2	9	Devoir Histoire-Géographie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:18	2026-05-12 20:22:18
32	2	23	2	9	Composition Histoire-Géographie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:19	2026-05-12 20:22:19
33	2	24	2	9	Devoir Éducation Civique	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:19	2026-05-12 20:22:19
34	2	24	2	9	Composition Éducation Civique	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:19	2026-05-12 20:22:19
35	2	25	2	9	Devoir Éducation Physique	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:19	2026-05-12 20:22:19
36	2	25	2	9	Composition Éducation Physique	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:20	2026-05-12 20:22:20
37	2	20	2	9	Devoir Mathématiques	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:20	2026-05-12 20:22:20
38	2	20	2	9	Composition Mathématiques	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:20	2026-05-12 20:22:20
39	2	21	2	9	Devoir Français	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:20	2026-05-12 20:22:20
40	2	21	2	9	Composition Français	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:21	2026-05-12 20:22:21
41	2	22	2	9	Devoir Sciences Naturelles	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:21	2026-05-12 20:22:21
42	2	22	2	9	Composition Sciences Naturelles	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:22	2026-05-12 20:22:22
43	2	23	2	9	Devoir Histoire-Géographie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:22	2026-05-12 20:22:22
44	2	23	2	9	Composition Histoire-Géographie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:23	2026-05-12 20:22:23
45	2	24	2	9	Devoir Éducation Civique	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:23	2026-05-12 20:22:23
46	2	24	2	9	Composition Éducation Civique	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:23	2026-05-12 20:22:23
47	2	25	2	9	Devoir Éducation Physique	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:23	2026-05-12 20:22:23
48	2	25	2	9	Composition Éducation Physique	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:24	2026-05-12 20:22:24
49	3	20	2	9	Devoir Mathématiques	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:24	2026-05-12 20:22:24
50	3	20	2	9	Composition Mathématiques	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:24	2026-05-12 20:22:24
51	3	21	2	9	Devoir Français	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:24	2026-05-12 20:22:24
52	3	21	2	9	Composition Français	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:25	2026-05-12 20:22:25
53	3	22	2	9	Devoir Sciences Naturelles	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:25	2026-05-12 20:22:25
54	3	22	2	9	Composition Sciences Naturelles	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:25	2026-05-12 20:22:25
55	3	23	2	9	Devoir Histoire-Géographie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:26	2026-05-12 20:22:26
56	3	23	2	9	Composition Histoire-Géographie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:26	2026-05-12 20:22:26
57	3	24	2	9	Devoir Éducation Civique	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:27	2026-05-12 20:22:27
58	3	24	2	9	Composition Éducation Civique	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:27	2026-05-12 20:22:27
59	3	25	2	9	Devoir Éducation Physique	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:27	2026-05-12 20:22:27
60	3	25	2	9	Composition Éducation Physique	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:28	2026-05-12 20:22:28
61	3	20	2	9	Devoir Mathématiques	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:28	2026-05-12 20:22:28
62	3	20	2	9	Composition Mathématiques	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:28	2026-05-12 20:22:28
63	3	21	2	9	Devoir Français	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:29	2026-05-12 20:22:29
64	3	21	2	9	Composition Français	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:30	2026-05-12 20:22:30
65	3	22	2	9	Devoir Sciences Naturelles	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:30	2026-05-12 20:22:30
66	3	22	2	9	Composition Sciences Naturelles	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:30	2026-05-12 20:22:30
67	3	23	2	9	Devoir Histoire-Géographie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:31	2026-05-12 20:22:31
68	3	23	2	9	Composition Histoire-Géographie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:31	2026-05-12 20:22:31
69	3	24	2	9	Devoir Éducation Civique	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:31	2026-05-12 20:22:31
70	3	24	2	9	Composition Éducation Civique	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:32	2026-05-12 20:22:32
71	3	25	2	9	Devoir Éducation Physique	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:32	2026-05-12 20:22:32
72	3	25	2	9	Composition Éducation Physique	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:32	2026-05-12 20:22:32
73	4	20	2	9	Devoir Mathématiques	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:33	2026-05-12 20:22:33
74	4	20	2	9	Composition Mathématiques	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:34	2026-05-12 20:22:34
75	4	21	2	9	Devoir Français	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:38	2026-05-12 20:22:38
76	4	21	2	9	Composition Français	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:38	2026-05-12 20:22:38
77	4	22	2	9	Devoir Sciences Naturelles	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:39	2026-05-12 20:22:39
78	4	22	2	9	Composition Sciences Naturelles	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:39	2026-05-12 20:22:39
79	4	23	2	9	Devoir Histoire-Géographie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:39	2026-05-12 20:22:39
80	4	23	2	9	Composition Histoire-Géographie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:40	2026-05-12 20:22:40
81	4	24	2	9	Devoir Éducation Civique	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:40	2026-05-12 20:22:40
82	4	24	2	9	Composition Éducation Civique	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:40	2026-05-12 20:22:40
83	4	25	2	9	Devoir Éducation Physique	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:41	2026-05-12 20:22:41
84	4	25	2	9	Composition Éducation Physique	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:41	2026-05-12 20:22:41
85	4	20	2	9	Devoir Mathématiques	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:42	2026-05-12 20:22:42
86	4	20	2	9	Composition Mathématiques	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:42	2026-05-12 20:22:42
87	4	21	2	9	Devoir Français	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:42	2026-05-12 20:22:42
88	4	21	2	9	Composition Français	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:43	2026-05-12 20:22:43
89	4	22	2	9	Devoir Sciences Naturelles	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:43	2026-05-12 20:22:43
90	4	22	2	9	Composition Sciences Naturelles	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:43	2026-05-12 20:22:43
91	4	23	2	9	Devoir Histoire-Géographie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:44	2026-05-12 20:22:44
92	4	23	2	9	Composition Histoire-Géographie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:44	2026-05-12 20:22:44
93	4	24	2	9	Devoir Éducation Civique	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:45	2026-05-12 20:22:45
94	4	24	2	9	Composition Éducation Civique	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:45	2026-05-12 20:22:45
95	4	25	2	9	Devoir Éducation Physique	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:46	2026-05-12 20:22:46
96	4	25	2	9	Composition Éducation Physique	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:46	2026-05-12 20:22:46
97	5	20	2	9	Devoir Mathématiques	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:47	2026-05-12 20:22:47
98	5	20	2	9	Composition Mathématiques	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:47	2026-05-12 20:22:47
99	5	21	2	9	Devoir Français	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:47	2026-05-12 20:22:47
100	5	21	2	9	Composition Français	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:47	2026-05-12 20:22:47
101	5	22	2	9	Devoir Sciences Naturelles	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:48	2026-05-12 20:22:48
102	5	22	2	9	Composition Sciences Naturelles	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:48	2026-05-12 20:22:48
103	5	23	2	9	Devoir Histoire-Géographie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:48	2026-05-12 20:22:48
104	5	23	2	9	Composition Histoire-Géographie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:49	2026-05-12 20:22:49
105	5	24	2	9	Devoir Éducation Civique	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:49	2026-05-12 20:22:49
106	5	24	2	9	Composition Éducation Civique	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:49	2026-05-12 20:22:49
107	5	25	2	9	Devoir Éducation Physique	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:49	2026-05-12 20:22:49
108	5	25	2	9	Composition Éducation Physique	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:50	2026-05-12 20:22:50
109	5	20	2	9	Devoir Mathématiques	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:50	2026-05-12 20:22:50
110	5	20	2	9	Composition Mathématiques	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:50	2026-05-12 20:22:50
111	5	21	2	9	Devoir Français	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:50	2026-05-12 20:22:50
112	5	21	2	9	Composition Français	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:51	2026-05-12 20:22:51
113	5	22	2	9	Devoir Sciences Naturelles	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:51	2026-05-12 20:22:51
114	5	22	2	9	Composition Sciences Naturelles	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:51	2026-05-12 20:22:51
115	5	23	2	9	Devoir Histoire-Géographie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:51	2026-05-12 20:22:51
116	5	23	2	9	Composition Histoire-Géographie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:52	2026-05-12 20:22:52
117	5	24	2	9	Devoir Éducation Civique	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:52	2026-05-12 20:22:52
118	5	24	2	9	Composition Éducation Civique	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:52	2026-05-12 20:22:52
119	5	25	2	9	Devoir Éducation Physique	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:52	2026-05-12 20:22:52
120	5	25	2	9	Composition Éducation Physique	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:53	2026-05-12 20:22:53
121	6	20	2	9	Devoir Mathématiques	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:53	2026-05-12 20:22:53
122	6	20	2	9	Composition Mathématiques	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:53	2026-05-12 20:22:53
123	6	21	2	9	Devoir Français	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:54	2026-05-12 20:22:54
124	6	21	2	9	Composition Français	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:54	2026-05-12 20:22:54
125	6	22	2	9	Devoir Sciences Naturelles	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:54	2026-05-12 20:22:54
126	6	22	2	9	Composition Sciences Naturelles	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:55	2026-05-12 20:22:55
127	6	23	2	9	Devoir Histoire-Géographie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:55	2026-05-12 20:22:55
128	6	23	2	9	Composition Histoire-Géographie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:55	2026-05-12 20:22:55
129	6	24	2	9	Devoir Éducation Civique	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:55	2026-05-12 20:22:55
130	6	24	2	9	Composition Éducation Civique	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:56	2026-05-12 20:22:56
131	6	25	2	9	Devoir Éducation Physique	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:22:56	2026-05-12 20:22:56
132	6	25	2	9	Composition Éducation Physique	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:22:56	2026-05-12 20:22:56
133	6	20	2	9	Devoir Mathématiques	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:57	2026-05-12 20:22:57
134	6	20	2	9	Composition Mathématiques	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:57	2026-05-12 20:22:57
135	6	21	2	9	Devoir Français	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:57	2026-05-12 20:22:57
136	6	21	2	9	Composition Français	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:58	2026-05-12 20:22:58
137	6	22	2	9	Devoir Sciences Naturelles	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:58	2026-05-12 20:22:58
138	6	22	2	9	Composition Sciences Naturelles	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:59	2026-05-12 20:22:59
139	6	23	2	9	Devoir Histoire-Géographie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:22:59	2026-05-12 20:22:59
140	6	23	2	9	Composition Histoire-Géographie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:22:59	2026-05-12 20:22:59
141	6	24	2	9	Devoir Éducation Civique	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:00	2026-05-12 20:23:00
142	6	24	2	9	Composition Éducation Civique	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:00	2026-05-12 20:23:00
143	6	25	2	9	Devoir Éducation Physique	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:00	2026-05-12 20:23:00
144	6	25	2	9	Composition Éducation Physique	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:00	2026-05-12 20:23:00
145	7	33	2	17	Devoir Mathématiques	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:01	2026-05-12 20:23:01
146	7	33	2	17	Composition Mathématiques	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:01	2026-05-12 20:23:01
147	7	34	2	17	Devoir Français	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:02	2026-05-12 20:23:02
148	7	34	2	17	Composition Français	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:02	2026-05-12 20:23:02
149	7	35	2	17	Devoir Anglais	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:02	2026-05-12 20:23:02
150	7	35	2	17	Composition Anglais	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:03	2026-05-12 20:23:03
151	7	36	2	17	Devoir Philosophie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:03	2026-05-12 20:23:03
152	7	36	2	17	Composition Philosophie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:03	2026-05-12 20:23:03
153	7	37	2	17	Devoir Physique-Chimie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:04	2026-05-12 20:23:04
154	7	37	2	17	Composition Physique-Chimie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:04	2026-05-12 20:23:04
155	7	38	2	17	Devoir Sciences de la Vie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:04	2026-05-12 20:23:04
156	7	38	2	17	Composition Sciences de la Vie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:05	2026-05-12 20:23:05
157	7	33	2	17	Devoir Mathématiques	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:05	2026-05-12 20:23:05
158	7	33	2	17	Composition Mathématiques	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:05	2026-05-12 20:23:05
159	7	34	2	17	Devoir Français	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:06	2026-05-12 20:23:06
160	7	34	2	17	Composition Français	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:06	2026-05-12 20:23:06
161	7	35	2	17	Devoir Anglais	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:06	2026-05-12 20:23:06
162	7	35	2	17	Composition Anglais	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:07	2026-05-12 20:23:07
163	7	36	2	17	Devoir Philosophie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:07	2026-05-12 20:23:07
164	7	36	2	17	Composition Philosophie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:08	2026-05-12 20:23:08
165	7	37	2	17	Devoir Physique-Chimie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:08	2026-05-12 20:23:08
166	7	37	2	17	Composition Physique-Chimie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:09	2026-05-12 20:23:09
167	7	38	2	17	Devoir Sciences de la Vie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:09	2026-05-12 20:23:09
168	7	38	2	17	Composition Sciences de la Vie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:10	2026-05-12 20:23:10
169	8	33	2	17	Devoir Mathématiques	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:10	2026-05-12 20:23:10
170	8	33	2	17	Composition Mathématiques	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:11	2026-05-12 20:23:11
171	8	34	2	17	Devoir Français	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:11	2026-05-12 20:23:11
172	8	34	2	17	Composition Français	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:11	2026-05-12 20:23:11
173	8	35	2	17	Devoir Anglais	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:11	2026-05-12 20:23:11
174	8	35	2	17	Composition Anglais	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:12	2026-05-12 20:23:12
175	8	36	2	17	Devoir Philosophie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:12	2026-05-12 20:23:12
176	8	36	2	17	Composition Philosophie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:12	2026-05-12 20:23:12
177	8	37	2	17	Devoir Physique-Chimie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:13	2026-05-12 20:23:13
178	8	37	2	17	Composition Physique-Chimie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:13	2026-05-12 20:23:13
179	8	38	2	17	Devoir Sciences de la Vie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:14	2026-05-12 20:23:14
180	8	38	2	17	Composition Sciences de la Vie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:14	2026-05-12 20:23:14
181	8	33	2	17	Devoir Mathématiques	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:14	2026-05-12 20:23:14
182	8	33	2	17	Composition Mathématiques	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:14	2026-05-12 20:23:14
183	8	34	2	17	Devoir Français	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:15	2026-05-12 20:23:15
184	8	34	2	17	Composition Français	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:15	2026-05-12 20:23:15
185	8	35	2	17	Devoir Anglais	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:15	2026-05-12 20:23:15
186	8	35	2	17	Composition Anglais	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:16	2026-05-12 20:23:16
187	8	36	2	17	Devoir Philosophie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:16	2026-05-12 20:23:16
188	8	36	2	17	Composition Philosophie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:16	2026-05-12 20:23:16
189	8	37	2	17	Devoir Physique-Chimie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:17	2026-05-12 20:23:17
190	8	37	2	17	Composition Physique-Chimie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:17	2026-05-12 20:23:17
191	8	38	2	17	Devoir Sciences de la Vie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:17	2026-05-12 20:23:17
192	8	38	2	17	Composition Sciences de la Vie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:18	2026-05-12 20:23:18
193	9	33	2	17	Devoir Mathématiques	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:18	2026-05-12 20:23:18
194	9	33	2	17	Composition Mathématiques	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:18	2026-05-12 20:23:18
195	9	34	2	17	Devoir Français	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:18	2026-05-12 20:23:18
196	9	34	2	17	Composition Français	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:19	2026-05-12 20:23:19
197	9	35	2	17	Devoir Anglais	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:19	2026-05-12 20:23:19
198	9	35	2	17	Composition Anglais	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:19	2026-05-12 20:23:19
199	9	36	2	17	Devoir Philosophie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:20	2026-05-12 20:23:20
200	9	36	2	17	Composition Philosophie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:20	2026-05-12 20:23:20
201	9	37	2	17	Devoir Physique-Chimie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:20	2026-05-12 20:23:20
202	9	37	2	17	Composition Physique-Chimie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:21	2026-05-12 20:23:21
203	9	38	2	17	Devoir Sciences de la Vie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:21	2026-05-12 20:23:21
204	9	38	2	17	Composition Sciences de la Vie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:21	2026-05-12 20:23:21
205	9	33	2	17	Devoir Mathématiques	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:22	2026-05-12 20:23:22
206	9	33	2	17	Composition Mathématiques	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:22	2026-05-12 20:23:22
207	9	34	2	17	Devoir Français	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:23	2026-05-12 20:23:23
208	9	34	2	17	Composition Français	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:23	2026-05-12 20:23:23
209	9	35	2	17	Devoir Anglais	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:23	2026-05-12 20:23:23
210	9	35	2	17	Composition Anglais	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:23	2026-05-12 20:23:23
211	9	36	2	17	Devoir Philosophie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:24	2026-05-12 20:23:24
212	9	36	2	17	Composition Philosophie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:24	2026-05-12 20:23:24
213	9	37	2	17	Devoir Physique-Chimie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:24	2026-05-12 20:23:24
214	9	37	2	17	Composition Physique-Chimie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:25	2026-05-12 20:23:25
215	9	38	2	17	Devoir Sciences de la Vie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:25	2026-05-12 20:23:25
216	9	38	2	17	Composition Sciences de la Vie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:26	2026-05-12 20:23:26
217	10	26	2	25	Devoir Mathématiques	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:26	2026-05-12 20:23:26
218	10	26	2	25	Composition Mathématiques	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:26	2026-05-12 20:23:26
219	10	27	2	25	Devoir Français	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:27	2026-05-12 20:23:27
220	10	27	2	25	Composition Français	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:27	2026-05-12 20:23:27
221	10	28	2	25	Devoir Anglais	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:27	2026-05-12 20:23:27
222	10	28	2	25	Composition Anglais	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:28	2026-05-12 20:23:28
223	10	29	2	25	Devoir Physique-Chimie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:28	2026-05-12 20:23:28
224	10	29	2	25	Composition Physique-Chimie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:28	2026-05-12 20:23:28
225	10	30	2	25	Devoir Sciences de la Vie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:29	2026-05-12 20:23:29
226	10	30	2	25	Composition Sciences de la Vie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:29	2026-05-12 20:23:29
227	10	31	2	25	Devoir Histoire-Géographie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:30	2026-05-12 20:23:30
228	10	31	2	25	Composition Histoire-Géographie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:30	2026-05-12 20:23:30
229	10	32	2	25	Devoir Éducation Physique	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:30	2026-05-12 20:23:30
230	10	32	2	25	Composition Éducation Physique	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:31	2026-05-12 20:23:31
231	10	26	2	25	Devoir Mathématiques	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:31	2026-05-12 20:23:31
232	10	26	2	25	Composition Mathématiques	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:31	2026-05-12 20:23:31
233	10	27	2	25	Devoir Français	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:32	2026-05-12 20:23:32
234	10	27	2	25	Composition Français	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:32	2026-05-12 20:23:32
235	10	28	2	25	Devoir Anglais	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:32	2026-05-12 20:23:32
236	10	28	2	25	Composition Anglais	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:33	2026-05-12 20:23:33
237	10	29	2	25	Devoir Physique-Chimie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:33	2026-05-12 20:23:33
238	10	29	2	25	Composition Physique-Chimie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:33	2026-05-12 20:23:33
239	10	30	2	25	Devoir Sciences de la Vie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:34	2026-05-12 20:23:34
240	10	30	2	25	Composition Sciences de la Vie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:35	2026-05-12 20:23:35
241	10	31	2	25	Devoir Histoire-Géographie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:37	2026-05-12 20:23:37
242	10	31	2	25	Composition Histoire-Géographie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:38	2026-05-12 20:23:38
243	10	32	2	25	Devoir Éducation Physique	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:38	2026-05-12 20:23:38
244	10	32	2	25	Composition Éducation Physique	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:39	2026-05-12 20:23:39
245	11	26	2	25	Devoir Mathématiques	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:39	2026-05-12 20:23:39
246	11	26	2	25	Composition Mathématiques	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:39	2026-05-12 20:23:39
247	11	27	2	25	Devoir Français	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:39	2026-05-12 20:23:39
248	11	27	2	25	Composition Français	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:40	2026-05-12 20:23:40
249	11	28	2	25	Devoir Anglais	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:40	2026-05-12 20:23:40
250	11	28	2	25	Composition Anglais	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:40	2026-05-12 20:23:40
251	11	29	2	25	Devoir Physique-Chimie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:41	2026-05-12 20:23:41
252	11	29	2	25	Composition Physique-Chimie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:41	2026-05-12 20:23:41
253	11	30	2	25	Devoir Sciences de la Vie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:41	2026-05-12 20:23:41
254	11	30	2	25	Composition Sciences de la Vie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:42	2026-05-12 20:23:42
255	11	31	2	25	Devoir Histoire-Géographie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:42	2026-05-12 20:23:42
256	11	31	2	25	Composition Histoire-Géographie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:42	2026-05-12 20:23:42
257	11	32	2	25	Devoir Éducation Physique	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:43	2026-05-12 20:23:43
258	11	32	2	25	Composition Éducation Physique	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:43	2026-05-12 20:23:43
259	11	26	2	25	Devoir Mathématiques	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:43	2026-05-12 20:23:43
260	11	26	2	25	Composition Mathématiques	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:43	2026-05-12 20:23:43
261	11	27	2	25	Devoir Français	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:44	2026-05-12 20:23:44
262	11	27	2	25	Composition Français	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:44	2026-05-12 20:23:44
263	11	28	2	25	Devoir Anglais	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:44	2026-05-12 20:23:44
264	11	28	2	25	Composition Anglais	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:45	2026-05-12 20:23:45
265	11	29	2	25	Devoir Physique-Chimie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:45	2026-05-12 20:23:45
266	11	29	2	25	Composition Physique-Chimie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:45	2026-05-12 20:23:45
267	11	30	2	25	Devoir Sciences de la Vie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:45	2026-05-12 20:23:45
268	11	30	2	25	Composition Sciences de la Vie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:46	2026-05-12 20:23:46
269	11	31	2	25	Devoir Histoire-Géographie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:46	2026-05-12 20:23:46
270	11	31	2	25	Composition Histoire-Géographie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:46	2026-05-12 20:23:46
271	11	32	2	25	Devoir Éducation Physique	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:46	2026-05-12 20:23:46
272	11	32	2	25	Composition Éducation Physique	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:47	2026-05-12 20:23:47
273	12	26	2	25	Devoir Mathématiques	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:47	2026-05-12 20:23:47
274	12	26	2	25	Composition Mathématiques	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:47	2026-05-12 20:23:47
275	12	27	2	25	Devoir Français	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:48	2026-05-12 20:23:48
276	12	27	2	25	Composition Français	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:49	2026-05-12 20:23:49
277	12	28	2	25	Devoir Anglais	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:49	2026-05-12 20:23:49
278	12	28	2	25	Composition Anglais	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:49	2026-05-12 20:23:49
279	12	29	2	25	Devoir Physique-Chimie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:50	2026-05-12 20:23:50
280	12	29	2	25	Composition Physique-Chimie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:50	2026-05-12 20:23:50
281	12	30	2	25	Devoir Sciences de la Vie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:50	2026-05-12 20:23:50
282	12	30	2	25	Composition Sciences de la Vie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:51	2026-05-12 20:23:51
283	12	31	2	25	Devoir Histoire-Géographie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:51	2026-05-12 20:23:51
284	12	31	2	25	Composition Histoire-Géographie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:52	2026-05-12 20:23:52
285	12	32	2	25	Devoir Éducation Physique	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:52	2026-05-12 20:23:52
286	12	32	2	25	Composition Éducation Physique	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:52	2026-05-12 20:23:52
287	12	26	2	25	Devoir Mathématiques	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:53	2026-05-12 20:23:53
288	12	26	2	25	Composition Mathématiques	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:53	2026-05-12 20:23:53
289	12	27	2	25	Devoir Français	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:54	2026-05-12 20:23:54
290	12	27	2	25	Composition Français	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:54	2026-05-12 20:23:54
291	12	28	2	25	Devoir Anglais	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:54	2026-05-12 20:23:54
292	12	28	2	25	Composition Anglais	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:55	2026-05-12 20:23:55
293	12	29	2	25	Devoir Physique-Chimie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:55	2026-05-12 20:23:55
294	12	29	2	25	Composition Physique-Chimie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:55	2026-05-12 20:23:55
295	12	30	2	25	Devoir Sciences de la Vie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:56	2026-05-12 20:23:56
296	12	30	2	25	Composition Sciences de la Vie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:56	2026-05-12 20:23:56
297	12	31	2	25	Devoir Histoire-Géographie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:57	2026-05-12 20:23:57
298	12	31	2	25	Composition Histoire-Géographie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:57	2026-05-12 20:23:57
299	12	32	2	25	Devoir Éducation Physique	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:23:57	2026-05-12 20:23:57
300	12	32	2	25	Composition Éducation Physique	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:23:58	2026-05-12 20:23:58
301	13	26	2	25	Devoir Mathématiques	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:58	2026-05-12 20:23:58
302	13	26	2	25	Composition Mathématiques	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:23:59	2026-05-12 20:23:59
303	13	27	2	25	Devoir Français	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:23:59	2026-05-12 20:23:59
304	13	27	2	25	Composition Français	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:24:00	2026-05-12 20:24:00
305	13	28	2	25	Devoir Anglais	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:24:00	2026-05-12 20:24:00
306	13	28	2	25	Composition Anglais	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:24:01	2026-05-12 20:24:01
307	13	29	2	25	Devoir Physique-Chimie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:24:01	2026-05-12 20:24:01
308	13	29	2	25	Composition Physique-Chimie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:24:01	2026-05-12 20:24:01
309	13	30	2	25	Devoir Sciences de la Vie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:24:02	2026-05-12 20:24:02
310	13	30	2	25	Composition Sciences de la Vie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:24:02	2026-05-12 20:24:02
311	13	31	2	25	Devoir Histoire-Géographie	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:24:03	2026-05-12 20:24:03
312	13	31	2	25	Composition Histoire-Géographie	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:24:03	2026-05-12 20:24:03
313	13	32	2	25	Devoir Éducation Physique	homework	trimester_1	2024-11-15	20.00	1.00	t	2026-05-12 20:24:04	2026-05-12 20:24:04
314	13	32	2	25	Composition Éducation Physique	composition	trimester_1	2024-11-15	20.00	2.00	t	2026-05-12 20:24:04	2026-05-12 20:24:04
315	13	26	2	25	Devoir Mathématiques	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:24:04	2026-05-12 20:24:04
316	13	26	2	25	Composition Mathématiques	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:24:05	2026-05-12 20:24:05
317	13	27	2	25	Devoir Français	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:24:05	2026-05-12 20:24:05
318	13	27	2	25	Composition Français	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:24:05	2026-05-12 20:24:05
319	13	28	2	25	Devoir Anglais	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:24:06	2026-05-12 20:24:06
320	13	28	2	25	Composition Anglais	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:24:06	2026-05-12 20:24:06
321	13	29	2	25	Devoir Physique-Chimie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:24:07	2026-05-12 20:24:07
322	13	29	2	25	Composition Physique-Chimie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:24:07	2026-05-12 20:24:07
323	13	30	2	25	Devoir Sciences de la Vie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:24:07	2026-05-12 20:24:07
324	13	30	2	25	Composition Sciences de la Vie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:24:08	2026-05-12 20:24:08
325	13	31	2	25	Devoir Histoire-Géographie	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:24:09	2026-05-12 20:24:09
326	13	31	2	25	Composition Histoire-Géographie	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:24:09	2026-05-12 20:24:09
327	13	32	2	25	Devoir Éducation Physique	homework	trimester_2	2025-02-15	20.00	1.00	t	2026-05-12 20:24:09	2026-05-12 20:24:09
328	13	32	2	25	Composition Éducation Physique	composition	trimester_2	2025-02-15	20.00	2.00	t	2026-05-12 20:24:10	2026-05-12 20:24:10
329	7	28	2	\N	Devoir d'Anglais	homework	trimester_2	2026-05-12	20.00	1.00	f	2026-05-12 21:12:41	2026-05-12 21:12:41
\.


--
-- Data for Name: exam_candidates; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.exam_candidates (id, exam_id, student_id, school_id, school_class_id, registration_number, candidate_status, score, mention, is_passed, notes, created_at, updated_at) FROM stdin;
1	1	232	3	10	001	failed	2.50	Ajourné	f	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
2	1	233	3	10	002	failed	9.70	Ajourné	f	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
3	1	234	3	10	003	passed	12.40	Assez bien	t	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
4	1	235	3	10	004	passed	11.10	Passable	t	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
5	1	236	3	10	005	passed	12.22	Assez bien	t	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
6	1	237	3	10	006	passed	12.46	Assez bien	t	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
7	1	238	3	10	007	absent	\N	\N	f	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
8	1	239	3	10	008	failed	9.78	Ajourné	f	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
9	1	240	3	10	009	failed	8.64	Ajourné	f	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
10	1	241	3	10	010	failed	8.52	Ajourné	f	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
11	1	242	3	10	011	passed	11.22	Passable	t	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
12	1	243	3	10	012	passed	11.50	Passable	t	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
13	1	244	3	10	013	passed	12.60	Assez bien	t	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
14	1	245	3	10	014	failed	9.88	Ajourné	f	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
15	1	246	3	10	015	failed	9.02	Ajourné	f	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
16	1	247	3	10	016	failed	8.22	Ajourné	f	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
17	1	248	3	10	017	passed	14.32	Bien	t	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
18	1	249	3	10	018	failed	9.66	Ajourné	f	\N	2026-05-12 20:24:16	2026-05-12 20:24:16
19	1	250	3	10	019	failed	9.28	Ajourné	f	\N	2026-05-12 20:24:16	2026-05-12 20:24:17
20	1	251	3	10	020	failed	6.98	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
21	1	252	3	10	021	passed	13.90	Assez bien	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
22	1	253	3	10	022	failed	7.70	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
23	1	254	3	10	023	passed	14.28	Bien	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
24	1	255	3	10	024	failed	4.25	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
25	1	256	3	10	025	passed	11.74	Passable	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
26	1	257	3	10	026	passed	12.32	Assez bien	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
27	1	258	3	10	027	failed	7.43	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
28	1	259	3	10	028	failed	5.03	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
29	1	260	3	10	029	passed	14.02	Bien	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
30	1	261	3	11	030	failed	9.40	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
31	1	262	3	11	031	failed	8.28	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
32	1	263	3	11	032	passed	10.80	Passable	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
33	1	264	3	11	033	failed	9.78	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
34	1	265	3	11	034	passed	14.70	Bien	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
35	1	266	3	11	035	passed	11.88	Passable	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
36	1	267	3	11	036	failed	9.72	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
37	1	268	3	11	037	absent	\N	\N	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
38	1	269	3	11	038	passed	11.26	Passable	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
39	1	270	3	11	039	failed	9.58	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
40	1	271	3	11	040	passed	14.44	Bien	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
41	1	272	3	11	041	failed	7.13	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
42	1	273	3	11	042	passed	11.66	Passable	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
43	1	274	3	11	043	passed	11.18	Passable	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
44	1	275	3	11	044	failed	8.86	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
45	1	276	3	11	045	passed	10.76	Passable	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
46	1	277	3	11	046	failed	9.48	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
47	1	278	3	11	047	failed	5.12	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
48	1	279	3	11	048	passed	12.66	Assez bien	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
49	1	280	3	11	049	passed	13.16	Assez bien	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
50	1	281	3	11	050	passed	13.98	Assez bien	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
51	1	282	3	11	051	passed	15.52	Bien	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
52	1	283	3	11	052	failed	7.16	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
53	1	284	3	11	053	failed	5.15	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
54	1	285	3	12	054	passed	10.20	Passable	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
55	1	286	3	12	055	passed	13.30	Assez bien	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
56	1	287	3	12	056	passed	10.46	Passable	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
57	1	288	3	12	057	failed	2.35	Ajourné	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
58	1	289	3	12	058	passed	11.04	Passable	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
59	1	290	3	12	059	passed	15.52	Bien	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
60	1	291	3	12	060	passed	12.14	Assez bien	t	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
61	1	292	3	12	061	absent	\N	\N	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
62	1	293	3	12	062	absent	\N	\N	f	\N	2026-05-12 20:24:17	2026-05-12 20:24:17
63	1	294	3	12	063	failed	8.30	Ajourné	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
64	1	295	3	12	064	passed	10.38	Passable	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
65	1	296	3	12	065	failed	5.06	Ajourné	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
66	1	297	3	12	066	failed	9.78	Ajourné	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
67	1	298	3	12	067	passed	10.94	Passable	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
68	1	299	3	12	068	absent	\N	\N	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
69	1	300	3	12	069	passed	14.16	Bien	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
70	1	301	3	12	070	passed	10.44	Passable	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
71	1	302	3	12	071	passed	15.52	Bien	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
72	1	303	3	12	072	passed	10.84	Passable	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
73	1	304	3	12	073	failed	9.82	Ajourné	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
74	1	305	3	12	074	failed	0.60	Ajourné	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
75	1	306	3	12	075	failed	8.40	Ajourné	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
76	1	307	3	12	076	passed	11.50	Passable	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
77	1	308	3	12	077	passed	15.70	Bien	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
78	1	309	3	12	078	failed	9.14	Ajourné	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
79	1	310	3	12	079	passed	13.26	Assez bien	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
80	1	311	3	12	080	passed	11.74	Passable	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
81	1	312	3	12	081	failed	8.34	Ajourné	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
82	1	313	3	12	082	passed	11.76	Passable	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
83	1	314	3	12	083	passed	14.36	Bien	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
84	1	315	3	12	084	absent	\N	\N	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
85	1	316	3	12	085	passed	10.44	Passable	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
86	1	317	3	13	086	absent	\N	\N	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
87	1	318	3	13	087	passed	10.70	Passable	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
88	1	319	3	13	088	passed	14.70	Bien	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
89	1	320	3	13	089	absent	\N	\N	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
90	1	321	3	13	090	passed	17.20	Très bien	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
91	1	322	3	13	091	passed	12.92	Assez bien	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
92	1	323	3	13	092	absent	\N	\N	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
93	1	324	3	13	093	failed	9.68	Ajourné	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
94	1	325	3	13	094	absent	\N	\N	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
95	1	326	3	13	095	absent	\N	\N	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
96	1	327	3	13	096	failed	9.46	Ajourné	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
97	1	328	3	13	097	passed	11.38	Passable	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
98	1	329	3	13	098	passed	12.32	Assez bien	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
99	1	330	3	13	099	failed	5.45	Ajourné	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
100	1	331	3	13	100	passed	11.86	Passable	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
101	1	332	3	13	101	failed	9.54	Ajourné	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
102	1	333	3	13	102	absent	\N	\N	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
103	1	334	3	13	103	failed	9.50	Ajourné	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
104	1	335	3	13	104	passed	10.32	Passable	t	\N	2026-05-12 20:24:18	2026-05-12 20:24:18
105	1	336	3	13	105	failed	8.68	Ajourné	f	\N	2026-05-12 20:24:18	2026-05-12 20:24:19
106	1	337	3	13	106	passed	11.94	Passable	t	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
107	1	338	3	13	107	passed	10.28	Passable	t	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
108	1	339	3	13	108	failed	9.78	Ajourné	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
109	1	340	3	13	109	passed	10.68	Passable	t	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
110	1	341	3	13	110	failed	8.62	Ajourné	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
111	1	342	3	13	111	passed	13.94	Assez bien	t	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
112	1	343	3	13	112	passed	10.02	Passable	t	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
113	1	344	3	13	113	failed	8.54	Ajourné	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
114	1	345	3	13	114	passed	10.00	Passable	t	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
115	1	346	3	13	115	passed	17.68	Très bien	t	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
116	1	347	3	13	116	passed	10.76	Passable	t	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
117	1	348	3	13	117	failed	4.00	Ajourné	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
118	2	151	2	7	001	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
119	2	152	2	7	002	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
120	2	153	2	7	003	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
121	2	154	2	7	004	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
122	2	155	2	7	005	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
123	2	156	2	7	006	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
124	2	157	2	7	007	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
125	2	158	2	7	008	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
126	2	159	2	7	009	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
127	2	160	2	7	010	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
128	2	161	2	7	011	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
129	2	162	2	7	012	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
130	2	163	2	7	013	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
131	2	164	2	7	014	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
132	2	165	2	7	015	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
133	2	166	2	7	016	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
134	2	167	2	7	017	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
135	2	168	2	7	018	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
136	2	169	2	7	019	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
137	2	170	2	7	020	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
138	2	171	2	7	021	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
139	2	172	2	7	022	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
140	2	173	2	7	023	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
141	2	174	2	7	024	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
142	2	175	2	7	025	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
143	2	176	2	7	026	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
144	2	177	2	7	027	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
145	2	178	2	7	028	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
146	2	179	2	7	029	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
147	2	180	2	8	030	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
148	2	181	2	8	031	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
149	2	182	2	8	032	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
150	2	183	2	8	033	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
151	2	184	2	8	034	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
152	2	185	2	8	035	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
153	2	186	2	8	036	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
154	2	187	2	8	037	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
155	2	188	2	8	038	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
156	2	189	2	8	039	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
157	2	190	2	8	040	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
158	2	191	2	8	041	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
159	2	192	2	8	042	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
160	2	193	2	8	043	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
161	2	194	2	8	044	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
162	2	195	2	8	045	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
163	2	196	2	8	046	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
164	2	197	2	8	047	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
165	2	198	2	8	048	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
166	2	199	2	8	049	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
167	2	200	2	8	050	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
168	2	201	2	8	051	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
169	2	202	2	8	052	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
170	2	203	2	8	053	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
171	2	204	2	8	054	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
172	2	205	2	8	055	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
173	2	206	2	9	056	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
174	2	207	2	9	057	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
175	2	208	2	9	058	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
176	2	209	2	9	059	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
177	2	210	2	9	060	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
178	2	211	2	9	061	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
179	2	212	2	9	062	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
180	2	213	2	9	063	registered	\N	\N	f	\N	2026-05-12 20:24:19	2026-05-12 20:24:19
181	2	214	2	9	064	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
182	2	215	2	9	065	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
183	2	216	2	9	066	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
184	2	217	2	9	067	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
185	2	218	2	9	068	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
186	2	219	2	9	069	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
187	2	220	2	9	070	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
188	2	221	2	9	071	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
189	2	222	2	9	072	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
190	2	223	2	9	073	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
191	2	224	2	9	074	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
192	2	225	2	9	075	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
193	2	226	2	9	076	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
194	2	227	2	9	077	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
195	2	228	2	9	078	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
196	2	229	2	9	079	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
197	2	230	2	9	080	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
198	2	231	2	9	081	registered	\N	\N	f	\N	2026-05-12 20:24:20	2026-05-12 20:24:20
\.


--
-- Data for Name: exams; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.exams (id, school_year_id, name, type, status, center, date_start, date_end, registration_deadline, description, created_at, updated_at, deleted_at) FROM stdin;
1	2	BEPC 2025	official_exam	results_published	Centre d'examen de N'Djamena	2025-05-20	2025-05-24	2025-04-15	Brevet d'Études du Premier Cycle — session 2025	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
3	2	Concours d'entrée en 6ème 2025	competition	draft	\N	\N	\N	\N	Concours national d'entrée en classe de 6ème	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
2	2	Baccalauréat 2025	official_exam	results_published	Centre d'examen Lycée National	2025-06-10	2025-06-16	2025-05-01	Baccalauréat général — session 2025	2026-05-12 20:24:16	2026-05-12 20:32:38	\N
\.


--
-- Data for Name: failed_jobs; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.failed_jobs (id, uuid, connection, queue, payload, exception, failed_at) FROM stdin;
\.


--
-- Data for Name: grades; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.grades (id, evaluation_id, student_id, grade, comment, created_at, updated_at) FROM stdin;
1	1	1	12.08	\N	2026-05-12 20:22:09	2026-05-12 20:22:09
2	1	2	5.18	\N	2026-05-12 20:22:09	2026-05-12 20:22:09
3	1	3	11.28	\N	2026-05-12 20:22:09	2026-05-12 20:22:09
4	1	4	19.28	\N	2026-05-12 20:22:09	2026-05-12 20:22:09
5	1	5	8.04	\N	2026-05-12 20:22:09	2026-05-12 20:22:09
6	1	6	8.12	\N	2026-05-12 20:22:09	2026-05-12 20:22:09
7	1	7	16.06	\N	2026-05-12 20:22:09	2026-05-12 20:22:09
8	1	8	13.26	\N	2026-05-12 20:22:09	2026-05-12 20:22:09
9	1	9	10.04	\N	2026-05-12 20:22:09	2026-05-12 20:22:09
10	1	10	9.40	\N	2026-05-12 20:22:09	2026-05-12 20:22:09
11	1	11	13.68	\N	2026-05-12 20:22:09	2026-05-12 20:22:09
12	1	12	12.20	\N	2026-05-12 20:22:09	2026-05-12 20:22:09
13	1	13	8.28	\N	2026-05-12 20:22:09	2026-05-12 20:22:09
14	1	14	10.78	\N	2026-05-12 20:22:09	2026-05-12 20:22:09
15	1	15	10.26	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
16	1	16	12.00	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
17	1	17	7.94	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
18	1	18	12.00	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
19	1	19	7.94	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
20	1	20	6.11	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
21	1	21	5.60	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
22	2	1	11.94	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
23	2	2	11.28	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
24	2	3	8.52	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
25	2	4	14.08	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
26	2	5	8.46	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
27	2	6	1.95	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
28	2	7	15.04	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
29	2	8	15.82	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
30	2	9	12.08	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
31	2	10	11.94	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
32	2	11	10.60	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
33	2	12	8.88	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
34	2	13	11.16	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
35	2	14	8.14	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
36	2	15	6.11	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
37	2	16	8.56	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
38	2	17	12.44	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
39	2	18	16.08	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
40	2	19	10.18	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
41	2	20	9.12	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
42	2	21	10.98	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
43	3	1	15.40	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
44	3	2	9.82	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
45	3	3	9.88	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
46	3	4	6.92	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
47	3	5	12.42	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
48	3	6	9.00	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
49	3	7	10.94	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
50	3	8	9.50	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
51	3	9	5.90	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
52	3	10	8.10	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
53	3	11	0.25	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
54	3	12	12.88	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
55	3	13	3.55	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
56	3	14	14.42	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
57	3	15	14.80	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
58	3	16	14.88	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
59	3	17	14.36	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
60	3	18	9.42	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
61	3	19	14.94	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
62	3	20	13.86	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
63	3	21	10.50	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
64	4	1	10.28	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
65	4	2	10.30	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
66	4	3	12.22	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
67	4	4	8.30	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
68	4	5	13.26	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
69	4	6	5.81	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
70	4	7	12.86	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
71	4	8	9.22	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
72	4	9	14.54	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
73	4	10	9.50	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
74	4	11	10.06	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
75	4	12	10.88	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
76	4	13	13.38	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
77	4	14	11.44	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
78	4	15	9.66	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
79	4	16	12.86	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
80	4	17	10.68	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
81	4	18	10.94	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
82	4	19	15.38	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
83	4	20	11.42	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
84	4	21	12.70	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
85	5	1	0.20	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
86	5	2	11.74	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
87	5	3	8.66	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
88	5	4	9.56	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
89	5	5	12.90	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
90	5	6	13.08	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
91	5	7	8.88	\N	2026-05-12 20:22:10	2026-05-12 20:22:10
92	5	8	2.50	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
93	5	9	11.42	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
94	5	10	12.42	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
95	5	11	11.68	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
96	5	12	12.12	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
97	5	13	10.44	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
98	5	14	7.85	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
99	5	15	0.30	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
100	5	16	11.84	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
101	5	17	11.62	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
102	5	18	13.08	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
103	5	19	5.15	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
104	5	20	6.35	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
105	5	21	11.36	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
106	6	1	7.91	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
107	6	2	4.30	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
108	6	3	9.32	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
109	6	4	11.66	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
110	6	5	19.74	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
111	6	6	8.58	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
112	6	7	15.86	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
113	6	8	13.42	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
114	6	9	9.90	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
115	6	10	13.50	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
116	6	11	11.30	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
117	6	12	15.28	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
118	6	13	11.94	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
119	6	14	10.42	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
120	6	15	13.36	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
121	6	16	7.10	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
122	6	17	7.85	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
123	6	18	13.18	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
124	6	19	9.30	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
125	6	20	9.38	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
126	6	21	12.12	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
127	7	1	5.15	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
128	7	2	13.26	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
129	7	3	13.92	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
130	7	4	9.86	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
131	7	5	1.85	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
132	7	6	8.12	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
133	7	7	13.22	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
134	7	8	6.26	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
135	7	9	10.62	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
136	7	10	8.22	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
137	7	11	10.06	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
138	7	12	18.50	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
139	7	13	14.10	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
140	7	14	6.65	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
141	7	15	14.00	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
142	7	16	12.20	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
143	7	17	15.38	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
144	7	18	14.04	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
145	7	19	7.88	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
146	7	20	10.78	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
147	7	21	6.14	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
148	8	1	12.24	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
149	8	2	0.70	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
150	8	3	10.90	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
151	8	4	13.36	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
152	8	5	8.72	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
153	8	6	10.82	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
154	8	7	8.30	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
155	8	8	10.54	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
156	8	9	12.46	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
157	8	10	5.42	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
158	8	11	10.54	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
159	8	12	8.18	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
160	8	13	11.78	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
161	8	14	17.78	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
162	8	15	5.57	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
163	8	16	17.86	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
164	8	17	14.72	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
165	8	18	1.75	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
166	8	19	14.38	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
167	8	20	15.52	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
168	8	21	8.88	\N	2026-05-12 20:22:11	2026-05-12 20:22:11
169	9	1	7.91	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
170	9	2	8.94	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
171	9	3	9.74	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
172	9	4	15.44	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
173	9	5	8.90	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
174	9	6	5.51	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
175	9	7	17.00	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
176	9	8	15.20	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
177	9	9	13.38	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
178	9	10	4.00	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
179	9	11	6.89	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
180	9	12	11.72	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
181	9	13	9.90	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
182	9	14	16.88	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
183	9	15	12.86	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
184	9	16	10.94	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
185	9	17	8.22	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
186	9	18	0.30	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
187	9	19	11.42	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
188	9	20	8.60	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
189	9	21	11.64	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
190	10	1	9.02	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
191	10	2	9.52	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
192	10	3	12.74	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
193	10	4	10.52	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
194	10	5	13.66	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
195	10	6	10.10	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
196	10	7	8.64	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
197	10	8	15.44	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
198	10	9	4.50	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
199	10	10	6.50	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
200	10	11	11.92	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
201	10	12	11.16	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
202	10	13	11.18	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
203	10	14	8.02	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
204	10	15	12.90	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
205	10	16	8.10	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
206	10	17	14.46	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
207	10	18	4.70	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
208	10	19	16.58	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
209	10	20	17.60	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
210	10	21	13.94	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
211	11	1	11.80	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
212	11	2	15.42	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
213	11	3	17.62	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
214	11	4	13.62	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
215	11	5	11.44	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
216	11	6	9.42	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
217	11	7	13.56	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
218	11	8	14.02	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
219	11	9	17.92	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
220	11	10	8.00	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
221	11	11	10.38	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
222	11	12	17.20	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
223	11	13	8.42	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
224	11	14	2.10	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
225	11	15	13.84	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
226	11	16	12.40	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
227	11	17	13.30	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
228	11	18	9.76	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
229	11	19	11.04	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
230	11	20	8.24	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
231	11	21	13.44	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
232	12	1	12.30	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
233	12	2	10.14	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
234	12	3	8.90	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
235	12	4	9.02	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
236	12	5	11.78	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
237	12	6	9.36	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
238	12	7	14.10	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
239	12	8	8.24	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
240	12	9	7.25	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
241	12	10	13.88	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
242	12	11	11.10	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
243	12	12	14.94	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
244	12	13	17.60	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
245	12	14	15.14	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
246	12	15	12.96	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
247	12	16	19.24	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
248	12	17	11.58	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
249	12	18	15.90	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
250	12	19	15.82	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
251	12	20	14.14	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
252	12	21	11.34	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
253	13	1	18.00	\N	2026-05-12 20:22:12	2026-05-12 20:22:12
254	13	2	6.77	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
255	13	3	8.00	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
256	13	4	2.50	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
257	13	5	12.38	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
258	13	6	15.68	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
259	13	7	5.30	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
260	13	8	14.34	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
261	13	9	16.68	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
262	13	10	6.17	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
263	13	11	12.38	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
264	13	12	11.98	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
265	13	13	11.48	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
266	13	14	9.64	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
267	13	15	12.66	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
268	13	16	10.36	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
269	13	17	12.80	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
270	13	18	17.30	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
271	13	19	9.90	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
272	13	20	17.54	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
273	13	21	13.24	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
274	14	1	15.60	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
275	14	2	12.26	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
276	14	3	11.52	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
277	14	4	14.86	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
278	14	5	11.66	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
279	14	6	11.36	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
280	14	7	12.42	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
281	14	8	12.50	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
282	14	9	4.80	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
283	14	10	18.96	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
284	14	11	5.57	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
285	14	12	10.18	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
286	14	13	13.14	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
287	14	14	11.94	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
288	14	15	12.78	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
289	14	16	11.68	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
290	14	17	11.40	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
291	14	18	8.38	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
292	14	19	13.00	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
293	14	20	5.12	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
294	14	21	0.30	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
295	15	1	10.72	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
296	15	2	12.96	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
297	15	3	11.76	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
298	15	4	6.80	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
299	15	5	10.68	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
300	15	6	9.14	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
301	15	7	10.04	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
302	15	8	1.50	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
303	15	9	10.52	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
304	15	10	13.42	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
305	15	11	15.12	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
306	15	12	14.76	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
307	15	13	13.98	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
308	15	14	12.96	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
309	15	15	16.00	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
310	15	16	13.04	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
311	15	17	10.64	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
312	15	18	14.64	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
313	15	19	14.14	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
314	15	20	11.28	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
315	15	21	5.78	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
316	16	1	14.88	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
317	16	2	12.86	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
318	16	3	17.44	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
319	16	4	14.88	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
320	16	5	10.56	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
321	16	6	8.76	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
322	16	7	13.02	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
323	16	8	8.72	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
324	16	9	11.24	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
325	16	10	16.68	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
326	16	11	13.10	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
327	16	12	12.16	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
328	16	13	11.06	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
329	16	14	10.56	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
330	16	15	13.68	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
331	16	16	2.50	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
332	16	17	9.94	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
333	16	18	12.56	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
334	16	19	10.88	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
335	16	20	10.76	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
336	16	21	14.96	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
337	17	1	11.58	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
338	17	2	5.57	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
339	17	3	10.82	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
340	17	4	10.54	\N	2026-05-12 20:22:13	2026-05-12 20:22:13
341	17	5	17.22	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
342	17	6	17.26	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
343	17	7	16.04	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
344	17	8	13.50	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
345	17	9	8.02	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
346	17	10	11.74	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
347	17	11	14.04	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
348	17	12	8.78	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
349	17	13	10.38	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
350	17	14	9.80	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
351	17	15	4.65	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
352	17	16	9.36	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
353	17	17	9.02	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
354	17	18	6.41	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
355	17	19	11.38	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
356	17	20	10.86	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
357	17	21	17.10	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
358	18	1	6.50	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
359	18	2	8.98	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
360	18	3	10.96	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
361	18	4	15.84	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
362	18	5	13.30	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
363	18	6	8.30	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
364	18	7	18.26	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
365	18	8	12.82	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
366	18	9	2.05	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
367	18	10	13.26	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
368	18	11	6.41	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
369	18	12	3.15	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
370	18	13	9.76	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
371	18	14	12.94	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
372	18	15	8.94	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
373	18	16	8.56	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
374	18	17	14.70	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
375	18	18	7.31	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
376	18	19	10.80	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
377	18	20	5.03	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
378	18	21	10.68	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
379	19	1	17.10	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
380	19	2	7.85	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
381	19	3	11.74	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
382	19	4	8.14	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
383	19	5	12.74	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
384	19	6	12.20	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
385	19	7	15.00	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
386	19	8	15.54	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
387	19	9	14.66	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
388	19	10	12.30	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
389	19	11	15.52	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
390	19	12	10.10	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
391	19	13	13.64	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
392	19	14	0.15	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
393	19	15	12.86	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
394	19	16	13.48	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
395	19	17	7.67	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
396	19	18	9.82	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
397	19	19	11.16	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
398	19	20	14.00	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
399	19	21	11.94	\N	2026-05-12 20:22:14	2026-05-12 20:22:14
400	20	1	9.50	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
401	20	2	14.22	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
402	20	3	10.56	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
403	20	4	7.46	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
404	20	5	14.66	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
405	20	6	8.00	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
406	20	7	5.18	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
407	20	8	12.70	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
408	20	9	11.02	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
409	20	10	9.60	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
410	20	11	8.42	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
411	20	12	19.02	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
412	20	13	16.92	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
413	20	14	11.24	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
414	20	15	12.42	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
415	20	16	9.30	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
416	20	17	13.28	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
417	20	18	14.52	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
418	20	19	7.01	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
419	20	20	11.14	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
420	20	21	15.76	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
421	21	1	13.70	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
422	21	2	11.90	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
423	21	3	11.22	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
424	21	4	18.30	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
425	21	5	12.72	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
426	21	6	8.02	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
427	21	7	15.04	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
428	21	8	12.62	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
429	21	9	6.65	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
430	21	10	12.72	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
431	21	11	11.00	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
432	21	12	13.68	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
433	21	13	13.62	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
434	21	14	11.48	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
435	21	15	12.56	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
436	21	16	10.98	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
437	21	17	12.82	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
438	21	18	14.54	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
439	21	19	15.14	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
440	21	20	11.92	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
441	21	21	10.60	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
442	22	1	14.70	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
443	22	2	2.50	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
444	22	3	18.64	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
445	22	4	5.24	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
446	22	5	9.04	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
447	22	6	13.84	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
448	22	7	10.56	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
449	22	8	9.92	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
450	22	9	1.30	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
451	22	10	9.04	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
452	22	11	16.52	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
453	22	12	3.60	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
454	22	13	8.32	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
455	22	14	13.36	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
456	22	15	12.24	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
457	22	16	16.36	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
458	22	17	5.78	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
459	22	18	8.86	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
460	22	19	11.64	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
461	22	20	10.74	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
462	22	21	14.38	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
463	23	1	11.76	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
464	23	2	8.42	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
465	23	3	13.32	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
466	23	4	6.86	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
467	23	5	19.62	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
468	23	6	10.86	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
469	23	7	9.62	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
470	23	8	9.46	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
471	23	9	10.54	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
472	23	10	12.52	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
473	23	11	5.57	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
474	23	12	9.94	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
475	23	13	13.42	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
476	23	14	14.06	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
477	23	15	5.72	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
478	23	16	12.04	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
479	23	17	9.86	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
480	23	18	10.46	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
481	23	19	10.08	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
482	23	20	11.36	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
483	23	21	12.50	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
484	24	1	8.04	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
485	24	2	15.20	\N	2026-05-12 20:22:15	2026-05-12 20:22:15
486	24	3	11.44	\N	2026-05-12 20:22:16	2026-05-12 20:22:16
487	24	4	18.92	\N	2026-05-12 20:22:16	2026-05-12 20:22:16
488	24	5	15.02	\N	2026-05-12 20:22:16	2026-05-12 20:22:16
489	24	6	11.58	\N	2026-05-12 20:22:16	2026-05-12 20:22:16
490	24	7	15.82	\N	2026-05-12 20:22:16	2026-05-12 20:22:16
491	24	8	11.26	\N	2026-05-12 20:22:16	2026-05-12 20:22:16
492	24	9	13.34	\N	2026-05-12 20:22:16	2026-05-12 20:22:16
493	24	10	17.06	\N	2026-05-12 20:22:16	2026-05-12 20:22:16
494	24	11	15.46	\N	2026-05-12 20:22:16	2026-05-12 20:22:16
495	24	12	6.38	\N	2026-05-12 20:22:16	2026-05-12 20:22:16
496	24	13	13.44	\N	2026-05-12 20:22:16	2026-05-12 20:22:16
497	24	14	17.36	\N	2026-05-12 20:22:16	2026-05-12 20:22:16
498	24	15	5.15	\N	2026-05-12 20:22:16	2026-05-12 20:22:16
499	24	16	12.84	\N	2026-05-12 20:22:16	2026-05-12 20:22:16
500	24	17	13.16	\N	2026-05-12 20:22:16	2026-05-12 20:22:16
501	24	18	11.32	\N	2026-05-12 20:22:16	2026-05-12 20:22:16
502	24	19	11.56	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
503	24	20	11.86	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
504	24	21	8.30	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
505	25	22	13.60	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
506	25	23	6.08	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
507	25	24	14.26	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
508	25	25	10.70	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
509	25	26	11.80	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
510	25	27	8.72	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
511	25	28	6.59	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
512	25	29	12.56	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
513	25	30	15.92	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
514	25	31	8.24	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
515	25	32	12.28	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
516	25	33	13.44	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
517	25	34	16.28	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
518	25	35	8.28	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
519	25	36	12.36	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
520	25	37	7.04	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
521	25	38	10.88	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
522	25	39	16.18	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
523	25	40	11.22	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
524	25	41	13.52	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
525	25	42	8.32	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
526	25	43	9.18	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
527	26	22	9.30	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
528	26	23	0.45	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
529	26	24	14.32	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
530	26	25	14.98	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
531	26	26	17.76	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
532	26	27	9.12	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
533	26	28	6.14	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
534	26	29	13.06	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
535	26	30	16.44	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
536	26	31	15.60	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
537	26	32	12.48	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
538	26	33	10.66	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
539	26	34	13.42	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
540	26	35	5.36	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
541	26	36	14.60	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
542	26	37	10.44	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
543	26	38	14.68	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
544	26	39	8.70	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
545	26	40	14.58	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
546	26	41	8.80	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
547	26	42	5.69	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
548	26	43	10.74	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
549	27	22	9.36	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
550	27	23	10.30	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
551	27	24	12.56	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
552	27	25	13.00	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
553	27	26	8.52	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
554	27	27	13.56	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
555	27	28	6.11	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
556	27	29	19.58	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
557	27	30	12.50	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
558	27	31	13.56	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
559	27	32	8.86	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
560	27	33	10.82	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
561	27	34	11.94	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
562	27	35	10.96	\N	2026-05-12 20:22:17	2026-05-12 20:22:17
563	27	36	10.26	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
564	27	37	10.10	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
565	27	38	16.00	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
566	27	39	11.66	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
567	27	40	8.66	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
568	27	41	13.58	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
569	27	42	13.20	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
570	27	43	14.18	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
571	28	22	4.85	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
572	28	23	19.66	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
573	28	24	12.76	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
574	28	25	17.30	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
575	28	26	11.30	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
576	28	27	3.15	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
577	28	28	10.08	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
578	28	29	19.14	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
579	28	30	10.76	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
580	28	31	9.30	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
581	28	32	10.74	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
582	28	33	11.30	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
583	28	34	17.76	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
584	28	35	14.58	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
585	28	36	10.52	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
586	28	37	4.15	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
587	28	38	8.00	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
588	28	39	13.92	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
589	28	40	10.92	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
590	28	41	13.58	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
591	28	42	12.88	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
592	28	43	13.98	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
593	29	22	11.34	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
594	29	23	5.03	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
595	29	24	10.50	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
596	29	25	11.10	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
597	29	26	10.80	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
598	29	27	18.74	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
599	29	28	16.92	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
600	29	29	8.78	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
601	29	30	8.62	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
602	29	31	7.67	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
603	29	32	14.44	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
604	29	33	12.98	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
605	29	34	17.82	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
606	29	35	7.79	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
607	29	36	14.28	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
608	29	37	14.28	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
609	29	38	11.62	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
610	29	39	8.18	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
611	29	40	11.32	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
612	29	41	17.80	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
613	29	42	14.00	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
614	29	43	2.05	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
615	30	22	12.06	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
616	30	23	18.98	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
617	30	24	9.60	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
618	30	25	4.75	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
619	30	26	6.08	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
620	30	27	10.28	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
621	30	28	11.28	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
622	30	29	11.86	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
623	30	30	7.79	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
624	30	31	5.72	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
625	30	32	12.72	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
626	30	33	12.88	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
627	30	34	12.60	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
628	30	35	9.46	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
629	30	36	8.58	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
630	30	37	15.16	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
631	30	38	8.26	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
632	30	39	15.46	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
633	30	40	11.90	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
634	30	41	7.07	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
635	30	42	14.68	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
636	30	43	14.24	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
637	31	22	11.18	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
638	31	23	13.36	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
639	31	24	13.80	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
640	31	25	12.16	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
641	31	26	10.56	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
642	31	27	15.24	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
643	31	28	9.16	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
644	31	29	13.28	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
645	31	30	7.07	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
646	31	31	11.82	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
647	31	32	15.66	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
648	31	33	0.55	\N	2026-05-12 20:22:18	2026-05-12 20:22:18
649	31	34	12.24	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
650	31	35	11.88	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
651	31	36	10.86	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
652	31	37	13.80	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
653	31	38	9.16	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
654	31	39	2.25	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
655	31	40	10.62	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
656	31	41	12.52	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
657	31	42	13.36	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
658	31	43	10.16	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
659	32	22	14.80	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
660	32	23	13.50	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
661	32	24	0.70	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
662	32	25	10.40	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
663	32	26	5.60	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
664	32	27	12.50	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
665	32	28	14.58	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
666	32	29	18.64	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
667	32	30	13.54	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
668	32	31	12.98	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
669	32	32	10.08	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
670	32	33	11.88	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
671	32	34	7.73	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
672	32	35	11.40	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
673	32	36	11.00	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
674	32	37	8.36	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
675	32	38	9.62	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
676	32	39	11.88	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
677	32	40	14.64	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
678	32	41	14.44	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
679	32	42	9.60	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
680	32	43	5.63	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
681	33	22	9.58	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
682	33	23	11.20	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
683	33	24	8.82	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
684	33	25	14.54	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
685	33	26	15.62	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
686	33	27	17.20	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
687	33	28	9.04	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
688	33	29	10.00	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
689	33	30	14.42	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
690	33	31	10.98	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
691	33	32	11.80	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
692	33	33	11.90	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
693	33	34	6.71	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
694	33	35	11.16	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
695	33	36	13.34	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
696	33	37	6.65	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
697	33	38	19.66	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
698	33	39	9.76	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
699	33	40	11.84	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
700	33	41	9.14	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
701	33	42	11.56	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
702	33	43	17.64	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
703	34	22	10.64	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
704	34	23	16.76	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
705	34	24	11.02	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
706	34	25	11.32	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
707	34	26	13.64	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
708	34	27	8.08	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
709	34	28	7.55	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
710	34	29	5.12	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
711	34	30	9.58	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
712	34	31	9.24	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
713	34	32	14.36	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
714	34	33	7.40	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
715	34	34	15.64	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
716	34	35	13.72	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
717	34	36	8.46	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
718	34	37	14.60	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
719	34	38	9.16	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
720	34	39	16.12	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
721	34	40	10.60	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
722	34	41	12.46	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
723	34	42	12.22	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
724	34	43	5.69	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
725	35	22	11.58	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
726	35	23	11.38	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
727	35	24	14.96	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
728	35	25	16.54	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
729	35	26	9.88	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
730	35	27	9.20	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
731	35	28	8.24	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
732	35	29	15.94	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
733	35	30	9.70	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
734	35	31	11.98	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
735	35	32	5.60	\N	2026-05-12 20:22:19	2026-05-12 20:22:19
736	35	33	9.72	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
737	35	34	18.60	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
738	35	35	11.12	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
739	35	36	9.94	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
740	35	37	8.36	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
741	35	38	13.82	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
742	35	39	17.40	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
743	35	40	6.95	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
744	35	41	12.20	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
745	35	42	14.82	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
746	35	43	13.38	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
747	36	22	12.88	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
748	36	23	11.04	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
749	36	24	12.40	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
750	36	25	14.02	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
751	36	26	13.90	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
752	36	27	13.48	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
753	36	28	6.50	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
754	36	29	8.44	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
755	36	30	12.00	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
756	36	31	9.84	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
757	36	32	12.18	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
758	36	33	10.44	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
759	36	34	9.80	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
760	36	35	13.82	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
761	36	36	10.16	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
762	36	37	10.58	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
763	36	38	12.64	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
764	36	39	10.84	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
765	36	40	11.66	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
766	36	41	12.12	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
767	36	42	13.14	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
768	36	43	0.10	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
769	37	22	14.00	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
770	37	23	8.84	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
771	37	24	8.74	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
772	37	25	7.88	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
773	37	26	14.28	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
774	37	27	12.60	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
775	37	28	9.48	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
776	37	29	8.70	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
777	37	30	5.48	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
778	37	31	8.30	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
779	37	32	11.58	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
780	37	33	16.28	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
781	37	34	15.04	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
782	37	35	12.96	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
783	37	36	12.80	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
784	37	37	14.98	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
785	37	38	11.06	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
786	37	39	10.02	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
787	37	40	14.42	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
788	37	41	10.70	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
789	37	42	15.16	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
790	37	43	12.02	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
791	38	22	13.44	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
792	38	23	17.08	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
793	38	24	18.16	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
794	38	25	9.62	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
795	38	26	11.28	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
796	38	27	10.40	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
797	38	28	11.66	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
798	38	29	13.76	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
799	38	30	11.40	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
800	38	31	5.87	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
801	38	32	11.02	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
802	38	33	10.52	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
803	38	34	13.28	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
804	38	35	13.52	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
805	38	36	14.32	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
806	38	37	17.78	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
807	38	38	11.12	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
808	38	39	3.90	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
809	38	40	11.92	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
810	38	41	16.88	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
811	38	42	11.48	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
812	38	43	9.34	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
813	39	22	9.88	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
814	39	23	18.54	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
815	39	24	11.98	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
816	39	25	7.82	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
817	39	26	8.84	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
818	39	27	7.91	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
819	39	28	15.28	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
820	39	29	16.36	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
821	39	30	10.66	\N	2026-05-12 20:22:20	2026-05-12 20:22:20
822	39	31	14.12	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
823	39	32	5.06	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
824	39	33	3.80	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
825	39	34	10.72	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
826	39	35	12.56	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
827	39	36	10.28	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
828	39	37	10.62	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
829	39	38	3.00	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
830	39	39	5.21	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
831	39	40	10.76	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
832	39	41	6.77	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
833	39	42	13.54	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
834	39	43	12.16	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
835	40	22	16.86	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
836	40	23	11.20	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
837	40	24	12.80	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
838	40	25	9.78	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
839	40	26	14.40	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
840	40	27	10.44	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
841	40	28	9.42	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
842	40	29	11.38	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
843	40	30	9.92	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
844	40	31	10.98	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
845	40	32	11.68	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
846	40	33	14.72	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
847	40	34	15.50	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
848	40	35	10.60	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
849	40	36	9.32	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
850	40	37	12.60	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
851	40	38	6.41	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
852	40	39	12.14	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
853	40	40	10.78	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
854	40	41	13.50	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
855	40	42	11.28	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
856	40	43	2.10	\N	2026-05-12 20:22:21	2026-05-12 20:22:21
857	41	22	16.32	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
858	41	23	15.94	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
859	41	24	12.82	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
860	41	25	8.12	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
861	41	26	9.32	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
862	41	27	11.84	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
863	41	28	10.58	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
864	41	29	11.96	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
865	41	30	10.76	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
866	41	31	6.83	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
867	41	32	11.96	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
868	41	33	13.58	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
869	41	34	8.72	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
870	41	35	9.80	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
871	41	36	12.56	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
872	41	37	9.38	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
873	41	38	16.62	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
874	41	39	9.66	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
875	41	40	1.90	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
876	41	41	11.10	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
877	41	42	8.44	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
878	41	43	11.64	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
879	42	22	15.96	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
880	42	23	11.16	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
881	42	24	13.70	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
882	42	25	11.00	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
883	42	26	8.72	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
884	42	27	9.18	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
885	42	28	5.93	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
886	42	29	11.74	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
887	42	30	10.60	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
888	42	31	8.74	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
889	42	32	5.45	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
890	42	33	10.44	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
891	42	34	16.30	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
892	42	35	10.60	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
893	42	36	13.48	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
894	42	37	11.38	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
895	42	38	10.76	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
896	42	39	10.26	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
897	42	40	10.92	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
898	42	41	15.92	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
899	42	42	8.36	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
900	42	43	11.72	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
901	43	22	8.62	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
902	43	23	9.80	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
903	43	24	13.18	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
904	43	25	12.34	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
905	43	26	11.46	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
906	43	27	10.78	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
907	43	28	13.04	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
908	43	29	12.32	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
909	43	30	14.90	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
910	43	31	8.60	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
911	43	32	13.46	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
912	43	33	9.32	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
913	43	34	15.90	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
914	43	35	13.68	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
915	43	36	15.94	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
916	43	37	11.48	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
917	43	38	8.60	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
918	43	39	8.90	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
919	43	40	10.88	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
920	43	41	13.96	\N	2026-05-12 20:22:22	2026-05-12 20:22:22
921	43	42	11.54	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
922	43	43	15.04	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
923	44	22	3.65	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
924	44	23	12.08	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
925	44	24	6.02	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
926	44	25	12.42	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
927	44	26	10.70	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
928	44	27	17.70	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
929	44	28	9.62	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
930	44	29	15.50	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
931	44	30	11.42	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
932	44	31	2.65	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
933	44	32	13.96	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
934	44	33	10.44	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
935	44	34	12.84	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
936	44	35	14.46	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
937	44	36	13.76	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
938	44	37	9.06	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
939	44	38	10.72	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
940	44	39	16.20	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
941	44	40	15.74	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
942	44	41	13.62	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
943	44	42	11.64	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
944	44	43	6.71	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
945	45	22	12.40	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
946	45	23	15.62	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
947	45	24	14.22	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
948	45	25	11.04	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
949	45	26	6.56	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
950	45	27	11.58	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
951	45	28	10.46	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
952	45	29	12.92	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
953	45	30	15.60	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
954	45	31	10.24	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
955	45	32	10.54	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
956	45	33	17.20	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
957	45	34	14.34	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
958	45	35	8.82	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
959	45	36	10.40	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
960	45	37	13.12	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
961	45	38	8.20	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
962	45	39	3.70	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
963	45	40	7.97	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
964	45	41	8.76	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
965	45	42	7.16	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
966	45	43	13.58	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
967	46	22	13.14	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
968	46	23	15.92	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
969	46	24	3.45	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
970	46	25	9.76	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
971	46	26	10.72	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
972	46	27	14.06	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
973	46	28	7.82	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
974	46	29	12.20	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
975	46	30	11.98	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
976	46	31	15.52	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
977	46	32	4.70	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
978	46	33	12.82	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
979	46	34	8.46	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
980	46	35	12.04	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
981	46	36	11.98	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
982	46	37	13.36	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
983	46	38	9.54	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
984	46	39	11.86	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
985	46	40	9.84	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
986	46	41	11.88	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
987	46	42	12.90	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
988	46	43	7.94	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
989	47	22	13.46	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
990	47	23	8.44	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
991	47	24	5.90	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
992	47	25	10.72	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
993	47	26	6.59	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
994	47	27	13.58	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
995	47	28	12.26	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
996	47	29	15.48	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
997	47	30	2.60	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
998	47	31	9.48	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
999	47	32	11.66	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
1000	47	33	15.24	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
1001	47	34	10.82	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
1002	47	35	14.42	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
1003	47	36	11.60	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
1004	47	37	16.96	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
1005	47	38	10.52	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
1006	47	39	5.21	\N	2026-05-12 20:22:23	2026-05-12 20:22:23
1007	47	40	9.08	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1008	47	41	16.70	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1009	47	42	8.18	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1010	47	43	11.42	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1011	48	22	16.08	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1012	48	23	7.79	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1013	48	24	15.64	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1014	48	25	11.40	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1015	48	26	10.28	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1016	48	27	1.25	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1017	48	28	14.14	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1018	48	29	10.84	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1019	48	30	14.32	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1020	48	31	15.34	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1021	48	32	8.06	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1022	48	33	11.72	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1023	48	34	9.88	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1024	48	35	3.75	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1025	48	36	15.74	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1026	48	37	13.22	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1027	48	38	8.28	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1028	48	39	10.38	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1029	48	40	2.20	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1030	48	41	4.30	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1031	48	42	11.02	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1032	48	43	14.54	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1033	49	44	10.52	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1034	49	45	11.88	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1035	49	46	8.60	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1036	49	47	17.42	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1037	49	48	13.18	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1038	49	49	14.76	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1039	49	50	11.60	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1040	49	51	11.84	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1041	49	52	12.96	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1042	49	53	7.07	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1043	49	54	3.30	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1044	49	55	6.65	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1045	49	56	12.06	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1046	49	57	8.92	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1047	49	58	10.60	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1048	49	59	10.84	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1049	49	60	14.06	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1050	49	61	2.45	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1051	49	62	8.24	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1052	49	63	8.54	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1053	49	64	12.00	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1054	49	65	13.16	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1055	49	66	12.86	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1056	49	67	9.28	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1057	49	68	10.98	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1058	49	69	12.04	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1059	49	70	13.22	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1060	49	71	16.86	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1061	50	44	17.56	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1062	50	45	5.12	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1063	50	46	11.30	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1064	50	47	11.70	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1065	50	48	12.96	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1066	50	49	10.90	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1067	50	50	11.72	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1068	50	51	7.76	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1069	50	52	5.99	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1070	50	53	17.90	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1071	50	54	15.04	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1072	50	55	14.24	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1073	50	56	12.00	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1074	50	57	10.68	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1075	50	58	9.92	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1076	50	59	9.98	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1077	50	60	13.78	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1078	50	61	6.47	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1079	50	62	7.58	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1080	50	63	11.10	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1081	50	64	6.95	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1082	50	65	15.58	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1083	50	66	9.14	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1084	50	67	13.56	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1085	50	68	8.10	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1086	50	69	9.98	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1087	50	70	10.06	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1088	50	71	13.54	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1089	51	44	13.22	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1090	51	45	9.60	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1091	51	46	8.94	\N	2026-05-12 20:22:24	2026-05-12 20:22:24
1092	51	47	4.15	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1093	51	48	13.22	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1094	51	49	10.18	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1095	51	50	15.20	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1096	51	51	11.02	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1097	51	52	17.04	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1098	51	53	14.52	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1099	51	54	14.08	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1100	51	55	9.26	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1101	51	56	8.14	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1102	51	57	0.05	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1103	51	58	11.00	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1104	51	59	14.52	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1105	51	60	5.12	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1106	51	61	11.96	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1107	51	62	15.88	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1108	51	63	16.60	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1109	51	64	14.50	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1110	51	65	15.20	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1111	51	66	12.74	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1112	51	67	12.20	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1113	51	68	15.22	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1114	51	69	14.00	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1115	51	70	18.66	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1116	51	71	8.26	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1117	52	44	15.46	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1118	52	45	13.46	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1119	52	46	12.32	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1120	52	47	15.50	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1121	52	48	6.02	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1122	52	49	14.14	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1123	52	50	10.70	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1124	52	51	2.15	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1125	52	52	11.12	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1126	52	53	11.64	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1127	52	54	8.64	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1128	52	55	10.82	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1129	52	56	12.24	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1130	52	57	9.54	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1131	52	58	13.34	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1132	52	59	8.08	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1133	52	60	13.84	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1134	52	61	15.74	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1135	52	62	8.14	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1136	52	63	16.70	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1137	52	64	6.29	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1138	52	65	12.80	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1139	52	66	5.18	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1140	52	67	12.76	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1141	52	68	13.70	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1142	52	69	17.76	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1143	52	70	9.00	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1144	52	71	12.92	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1145	53	44	16.00	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1146	53	45	15.58	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1147	53	46	12.34	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1148	53	47	19.38	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1149	53	48	13.36	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1150	53	49	7.79	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1151	53	50	7.43	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1152	53	51	11.84	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1153	53	52	10.68	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1154	53	53	11.12	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1155	53	54	12.74	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1156	53	55	11.36	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1157	53	56	9.88	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1158	53	57	15.12	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1159	53	58	10.00	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1160	53	59	12.76	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1161	53	60	8.10	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1162	53	61	13.04	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1163	53	62	12.62	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1164	53	63	12.60	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1165	53	64	15.48	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1166	53	65	12.46	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1167	53	66	8.46	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1168	53	67	4.95	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1169	53	68	12.74	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1170	53	69	8.54	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1171	53	70	7.01	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1172	53	71	2.55	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1173	54	44	11.58	\N	2026-05-12 20:22:25	2026-05-12 20:22:25
1174	54	45	13.44	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1175	54	46	11.64	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1176	54	47	8.28	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1177	54	48	12.98	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1178	54	49	8.68	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1179	54	50	12.30	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1180	54	51	8.86	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1181	54	52	13.60	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1182	54	53	7.94	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1183	54	54	13.30	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1184	54	55	11.02	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1185	54	56	11.92	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1186	54	57	11.56	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1187	54	58	9.34	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1188	54	59	8.00	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1189	54	60	19.84	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1190	54	61	12.92	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1191	54	62	12.88	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1192	54	63	13.44	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1193	54	64	10.56	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1194	54	65	8.72	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1195	54	66	10.54	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1196	54	67	14.96	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1197	54	68	9.02	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1198	54	69	1.40	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1199	54	70	6.26	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1200	54	71	17.06	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1201	55	44	14.96	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1202	55	45	9.98	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1203	55	46	10.56	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1204	55	47	16.74	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1205	55	48	12.90	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1206	55	49	6.23	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1207	55	50	11.08	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1208	55	51	15.12	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1209	55	52	15.26	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1210	55	53	6.08	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1211	55	54	14.90	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1212	55	55	13.12	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1213	55	56	15.70	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1214	55	57	10.48	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1215	55	58	12.56	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1216	55	59	12.78	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1217	55	60	13.28	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1218	55	61	8.04	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1219	55	62	10.26	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1220	55	63	14.60	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1221	55	64	13.24	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1222	55	65	8.68	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1223	55	66	10.90	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1224	55	67	14.04	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1225	55	68	14.74	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1226	55	69	9.36	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1227	55	70	16.08	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1228	55	71	12.00	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1229	56	44	13.18	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1230	56	45	5.81	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1231	56	46	13.60	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1232	56	47	4.55	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1233	56	48	11.64	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1234	56	49	11.72	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1235	56	50	5.99	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1236	56	51	8.36	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1237	56	52	15.46	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1238	56	53	13.06	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1239	56	54	14.18	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1240	56	55	9.02	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1241	56	56	0.65	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1242	56	57	13.38	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1243	56	58	14.54	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1244	56	59	10.96	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1245	56	60	11.22	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1246	56	61	12.38	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1247	56	62	11.32	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1248	56	63	15.42	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1249	56	64	10.02	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1250	56	65	9.36	\N	2026-05-12 20:22:26	2026-05-12 20:22:26
1251	56	66	8.42	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1252	56	67	10.20	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1253	56	68	11.08	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1254	56	69	14.44	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1255	56	70	7.97	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1256	56	71	12.36	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1257	57	44	14.42	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1258	57	45	17.76	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1259	57	46	11.00	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1260	57	47	6.14	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1261	57	48	17.02	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1262	57	49	11.10	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1263	57	50	14.64	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1264	57	51	13.44	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1265	57	52	11.38	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1266	57	53	5.54	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1267	57	54	17.60	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1268	57	55	10.74	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1269	57	56	12.22	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1270	57	57	10.50	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1271	57	58	12.92	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1272	57	59	12.08	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1273	57	60	11.90	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1274	57	61	9.16	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1275	57	62	9.90	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1276	57	63	15.66	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1277	57	64	10.32	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1278	57	65	11.54	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1279	57	66	8.52	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1280	57	67	12.36	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1281	57	68	2.15	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1282	57	69	8.44	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1283	57	70	8.42	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1284	57	71	10.10	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1285	58	44	8.26	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1286	58	45	8.30	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1287	58	46	8.74	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1288	58	47	6.71	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1289	58	48	14.24	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1290	58	49	11.94	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1291	58	50	12.72	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1292	58	51	19.00	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1293	58	52	11.88	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1294	58	53	16.32	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1295	58	54	15.74	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1296	58	55	12.26	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1297	58	56	15.04	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1298	58	57	15.00	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1299	58	58	10.92	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1300	58	59	15.02	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1301	58	60	17.42	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1302	58	61	15.78	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1303	58	62	9.88	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1304	58	63	13.96	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1305	58	64	14.88	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1306	58	65	14.46	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1307	58	66	19.82	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1308	58	67	10.24	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1309	58	68	13.46	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1310	58	69	13.62	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1311	58	70	8.48	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1312	58	71	17.54	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1313	59	44	10.46	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1314	59	45	10.28	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1315	59	46	13.04	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1316	59	47	13.34	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1317	59	48	9.20	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1318	59	49	8.42	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1319	59	50	10.18	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1320	59	51	14.34	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1321	59	52	10.64	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1322	59	53	5.24	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1323	59	54	11.16	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1324	59	55	4.80	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1325	59	56	11.56	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1326	59	57	4.55	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1327	59	58	9.90	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1328	59	59	10.46	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1329	59	60	7.13	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1330	59	61	12.82	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1331	59	62	11.84	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1332	59	63	9.86	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1333	59	64	8.48	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1334	59	65	10.74	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1335	59	66	11.02	\N	2026-05-12 20:22:27	2026-05-12 20:22:27
1336	59	67	10.52	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1337	59	68	18.12	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1338	59	69	13.78	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1339	59	70	18.38	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1340	59	71	6.29	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1341	60	44	11.66	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1342	60	45	8.70	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1343	60	46	13.08	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1344	60	47	9.88	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1345	60	48	12.24	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1346	60	49	10.72	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1347	60	50	8.64	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1348	60	51	8.12	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1349	60	52	10.88	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1350	60	53	8.00	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1351	60	54	5.33	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1352	60	55	12.56	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1353	60	56	15.68	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1354	60	57	10.06	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1355	60	58	15.18	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1356	60	59	10.86	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1357	60	60	8.78	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1358	60	61	13.76	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1359	60	62	10.66	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1360	60	63	0.05	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1361	60	64	12.00	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1362	60	65	11.52	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1363	60	66	5.36	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1364	60	67	7.10	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1365	60	68	18.70	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1366	60	69	10.10	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1367	60	70	9.88	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1368	60	71	4.70	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1369	61	44	19.36	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1370	61	45	4.25	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1371	61	46	11.52	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1372	61	47	10.36	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1373	61	48	17.16	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1374	61	49	12.62	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1375	61	50	15.46	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1376	61	51	5.84	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1377	61	52	10.82	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1378	61	53	12.74	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1379	61	54	10.12	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1380	61	55	10.84	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1381	61	56	9.36	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1382	61	57	14.02	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1383	61	58	18.12	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1384	61	59	6.08	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1385	61	60	2.75	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1386	61	61	18.64	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1387	61	62	9.16	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1388	61	63	9.84	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1389	61	64	18.08	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1390	61	65	8.74	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1391	61	66	17.48	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1392	61	67	10.50	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1393	61	68	9.12	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1394	61	69	12.84	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1395	61	70	14.44	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1396	61	71	13.14	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1397	62	44	9.72	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1398	62	45	11.08	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1399	62	46	8.26	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1400	62	47	14.36	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1401	62	48	9.68	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1402	62	49	13.00	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1403	62	50	12.18	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1404	62	51	13.50	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1405	62	52	2.20	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1406	62	53	10.72	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1407	62	54	6.35	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1408	62	55	15.08	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1409	62	56	6.92	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1410	62	57	11.50	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1411	62	58	6.38	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1412	62	59	12.56	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1413	62	60	17.22	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1414	62	61	14.08	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1415	62	62	9.30	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1416	62	63	12.32	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1417	62	64	11.66	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1418	62	65	13.14	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1419	62	66	11.18	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1420	62	67	9.58	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1421	62	68	13.86	\N	2026-05-12 20:22:28	2026-05-12 20:22:28
1422	62	69	8.86	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1423	62	70	13.58	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1424	62	71	19.20	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1425	63	44	5.09	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1426	63	45	10.76	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1427	63	46	5.81	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1428	63	47	8.34	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1429	63	48	11.12	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1430	63	49	0.95	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1431	63	50	14.28	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1432	63	51	14.90	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1433	63	52	9.22	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1434	63	53	12.20	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1435	63	54	12.88	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1436	63	55	13.16	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1437	63	56	11.42	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1438	63	57	10.34	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1439	63	58	9.22	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1440	63	59	14.06	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1441	63	60	6.38	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1442	63	61	12.62	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1443	63	62	15.30	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1444	63	63	13.18	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1445	63	64	9.80	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1446	63	65	8.56	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1447	63	66	15.98	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1448	63	67	15.24	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1449	63	68	16.20	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1450	63	69	8.62	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1451	63	70	13.78	\N	2026-05-12 20:22:29	2026-05-12 20:22:29
1452	63	71	6.35	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1453	64	44	15.80	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1454	64	45	9.76	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1455	64	46	9.52	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1456	64	47	17.90	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1457	64	48	6.50	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1458	64	49	10.16	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1459	64	50	18.80	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1460	64	51	6.77	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1461	64	52	9.08	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1462	64	53	10.22	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1463	64	54	9.36	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1464	64	55	12.68	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1465	64	56	16.44	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1466	64	57	13.34	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1467	64	58	10.40	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1468	64	59	13.22	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1469	64	60	9.32	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1470	64	61	16.92	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1471	64	62	8.78	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1472	64	63	14.38	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1473	64	64	11.02	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1474	64	65	14.32	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1475	64	66	16.66	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1476	64	67	8.28	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1477	64	68	9.26	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1478	64	69	8.28	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1479	64	70	11.64	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1480	64	71	7.04	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1481	65	44	11.40	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1482	65	45	4.95	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1483	65	46	19.40	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1484	65	47	10.42	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1485	65	48	9.88	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1486	65	49	8.32	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1487	65	50	16.82	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1488	65	51	13.22	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1489	65	52	11.06	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1490	65	53	9.24	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1491	65	54	10.02	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1492	65	55	15.08	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1493	65	56	12.92	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1494	65	57	10.64	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1495	65	58	16.94	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1496	65	59	12.06	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1497	65	60	13.28	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1498	65	61	13.20	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1499	65	62	12.86	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1500	65	63	5.81	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1501	65	64	9.62	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1502	65	65	8.72	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1503	65	66	13.08	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1504	65	67	12.34	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1505	65	68	9.98	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1506	65	69	9.12	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1507	65	70	15.36	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1508	65	71	10.54	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1509	66	44	13.64	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1510	66	45	3.20	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1511	66	46	16.62	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1512	66	47	9.18	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1513	66	48	10.32	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1514	66	49	6.65	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1515	66	50	13.10	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1516	66	51	12.98	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1517	66	52	13.84	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1518	66	53	11.38	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1519	66	54	14.42	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1520	66	55	5.39	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1521	66	56	10.12	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1522	66	57	9.12	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1523	66	58	13.46	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1524	66	59	7.73	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1525	66	60	14.46	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1526	66	61	17.76	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1527	66	62	15.80	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1528	66	63	15.62	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1529	66	64	6.38	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1530	66	65	13.58	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1531	66	66	13.80	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1532	66	67	10.52	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1533	66	68	12.16	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1534	66	69	12.00	\N	2026-05-12 20:22:30	2026-05-12 20:22:30
1535	66	70	8.04	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1536	66	71	8.12	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1537	67	44	11.56	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1538	67	45	9.24	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1539	67	46	12.84	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1540	67	47	8.46	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1541	67	48	10.00	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1542	67	49	12.32	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1543	67	50	0.45	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1544	67	51	7.25	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1545	67	52	12.96	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1546	67	53	7.04	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1547	67	54	12.64	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1548	67	55	17.20	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1549	67	56	16.34	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1550	67	57	14.96	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1551	67	58	11.30	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1552	67	59	13.00	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1553	67	60	12.90	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1554	67	61	11.54	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1555	67	62	8.80	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1556	67	63	17.46	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1557	67	64	15.48	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1558	67	65	14.52	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1559	67	66	10.80	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1560	67	67	10.70	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1561	67	68	12.08	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1562	67	69	15.66	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1563	67	70	7.28	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1564	67	71	14.80	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1565	68	44	8.88	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1566	68	45	8.46	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1567	68	46	5.63	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1568	68	47	13.02	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1569	68	48	15.74	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1570	68	49	8.12	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1571	68	50	0.20	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1572	68	51	13.70	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1573	68	52	13.06	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1574	68	53	2.95	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1575	68	54	9.66	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1576	68	55	10.72	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1577	68	56	14.82	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1578	68	57	9.12	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1579	68	58	5.15	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1580	68	59	14.62	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1581	68	60	17.22	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1582	68	61	9.38	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1583	68	62	11.64	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1584	68	63	15.86	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1585	68	64	14.00	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1586	68	65	4.30	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1587	68	66	10.18	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1588	68	67	6.23	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1589	68	68	4.95	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1590	68	69	10.36	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1591	68	70	11.72	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1592	68	71	14.22	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1593	69	44	14.98	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1594	69	45	13.66	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1595	69	46	12.76	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1596	69	47	0.60	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1597	69	48	11.66	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1598	69	49	11.88	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1599	69	50	12.30	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1600	69	51	11.98	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1601	69	52	9.98	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1602	69	53	10.14	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1603	69	54	8.12	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1604	69	55	15.72	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1605	69	56	15.76	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1606	69	57	5.57	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1607	69	58	12.00	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1608	69	59	15.92	\N	2026-05-12 20:22:31	2026-05-12 20:22:31
1609	69	60	16.00	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1610	69	61	13.42	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1611	69	62	10.96	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1612	69	63	6.08	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1613	69	64	5.81	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1614	69	65	11.20	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1615	69	66	10.68	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1616	69	67	9.34	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1617	69	68	13.82	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1618	69	69	5.06	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1619	69	70	7.46	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1620	69	71	12.72	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1621	70	44	11.56	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1622	70	45	14.56	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1623	70	46	6.05	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1624	70	47	13.40	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1625	70	48	12.60	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1626	70	49	11.32	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1627	70	50	11.06	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1628	70	51	16.48	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1629	70	52	13.88	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1630	70	53	16.42	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1631	70	54	11.40	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1632	70	55	11.64	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1633	70	56	14.16	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1634	70	57	12.18	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1635	70	58	17.74	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1636	70	59	14.06	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1637	70	60	15.66	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1638	70	61	15.54	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1639	70	62	13.92	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1640	70	63	10.46	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1641	70	64	10.28	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1642	70	65	10.16	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1643	70	66	7.07	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1644	70	67	7.88	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1645	70	68	3.65	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1646	70	69	10.56	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1647	70	70	10.46	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1648	70	71	9.70	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1649	71	44	17.90	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1650	71	45	19.04	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1651	71	46	13.18	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1652	71	47	11.02	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1653	71	48	16.14	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1654	71	49	18.08	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1655	71	50	5.30	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1656	71	51	11.98	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1657	71	52	14.50	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1658	71	53	15.32	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1659	71	54	7.31	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1660	71	55	13.34	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1661	71	56	12.58	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1662	71	57	6.86	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1663	71	58	10.90	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1664	71	59	12.08	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1665	71	60	10.82	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1666	71	61	6.35	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1667	71	62	5.87	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1668	71	63	6.77	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1669	71	64	9.72	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1670	71	65	16.04	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1671	71	66	8.66	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1672	71	67	13.20	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1673	71	68	10.98	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1674	71	69	11.34	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1675	71	70	5.21	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1676	71	71	14.76	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1677	72	44	9.80	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1678	72	45	17.54	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1679	72	46	12.14	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1680	72	47	12.14	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1681	72	48	11.12	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1682	72	49	12.24	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1683	72	50	10.88	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1684	72	51	8.76	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1685	72	52	14.88	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1686	72	53	14.28	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1687	72	54	4.40	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1688	72	55	12.78	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1689	72	56	9.66	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1690	72	57	16.32	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1691	72	58	12.14	\N	2026-05-12 20:22:32	2026-05-12 20:22:32
1692	72	59	8.28	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1693	72	60	17.50	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1694	72	61	13.36	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1695	72	62	11.68	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1696	72	63	11.52	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1697	72	64	12.22	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1698	72	65	10.28	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1699	72	66	10.00	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1700	72	67	13.92	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1701	72	68	9.44	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1702	72	69	12.16	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1703	72	70	6.47	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1704	72	71	12.86	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1705	73	72	8.40	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1706	73	73	9.94	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1707	73	74	13.38	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1708	73	75	9.00	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1709	73	76	9.90	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1710	73	77	8.12	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1711	73	78	13.70	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1712	73	79	11.14	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1713	73	80	10.58	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1714	73	81	12.64	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1715	73	82	15.98	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1716	73	83	12.04	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1717	73	84	17.32	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1718	73	85	9.96	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1719	73	86	7.10	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1720	73	87	9.22	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1721	73	88	17.26	\N	2026-05-12 20:22:33	2026-05-12 20:22:33
1722	73	89	5.42	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1723	73	90	5.84	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1724	73	91	11.74	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1725	73	92	17.94	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1726	73	93	0.90	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1727	73	94	17.22	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1728	73	95	8.58	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1729	73	96	12.62	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1730	73	97	15.62	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1731	73	98	14.24	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1732	73	99	3.00	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1733	73	100	8.70	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1734	73	101	15.02	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1735	73	102	10.68	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1736	74	72	8.98	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1737	74	73	8.88	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1738	74	74	10.26	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1739	74	75	8.66	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1740	74	76	5.51	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1741	74	77	14.30	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1742	74	78	9.36	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1743	74	79	10.34	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1744	74	80	14.62	\N	2026-05-12 20:22:34	2026-05-12 20:22:34
1745	74	81	5.63	\N	2026-05-12 20:22:35	2026-05-12 20:22:35
1746	74	82	15.18	\N	2026-05-12 20:22:35	2026-05-12 20:22:35
1747	74	83	15.80	\N	2026-05-12 20:22:35	2026-05-12 20:22:35
1748	74	84	15.74	\N	2026-05-12 20:22:36	2026-05-12 20:22:36
1749	74	85	9.80	\N	2026-05-12 20:22:36	2026-05-12 20:22:36
1750	74	86	13.10	\N	2026-05-12 20:22:36	2026-05-12 20:22:36
1751	74	87	8.30	\N	2026-05-12 20:22:36	2026-05-12 20:22:36
1752	74	88	8.84	\N	2026-05-12 20:22:37	2026-05-12 20:22:37
1753	74	89	16.86	\N	2026-05-12 20:22:37	2026-05-12 20:22:37
1754	74	90	8.16	\N	2026-05-12 20:22:37	2026-05-12 20:22:37
1755	74	91	15.14	\N	2026-05-12 20:22:37	2026-05-12 20:22:37
1756	74	92	17.68	\N	2026-05-12 20:22:37	2026-05-12 20:22:37
1757	74	93	11.84	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1758	74	94	10.36	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1759	74	95	16.22	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1760	74	96	10.48	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1761	74	97	15.42	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1762	74	98	11.76	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1763	74	99	17.62	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1764	74	100	15.16	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1765	74	101	9.00	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1766	74	102	10.66	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1767	75	72	13.66	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1768	75	73	8.84	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1769	75	74	12.78	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1770	75	75	8.20	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1771	75	76	14.20	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1772	75	77	12.54	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1773	75	78	11.24	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1774	75	79	2.60	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1775	75	80	5.09	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1776	75	81	10.94	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1777	75	82	12.26	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1778	75	83	16.88	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1779	75	84	5.42	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1780	75	85	15.20	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1781	75	86	11.94	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1782	75	87	12.72	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1783	75	88	12.38	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1784	75	89	9.96	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1785	75	90	16.20	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1786	75	91	9.66	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1787	75	92	11.76	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1788	75	93	9.16	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1789	75	94	12.84	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1790	75	95	12.50	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1791	75	96	15.24	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1792	75	97	11.72	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1793	75	98	5.90	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1794	75	99	7.01	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1795	75	100	16.70	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1796	75	101	12.46	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1797	75	102	15.08	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1798	76	72	3.30	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1799	76	73	5.51	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1800	76	74	10.50	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1801	76	75	9.88	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1802	76	76	11.72	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1803	76	77	15.60	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1804	76	78	9.72	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1805	76	79	5.21	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1806	76	80	15.72	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1807	76	81	10.84	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1808	76	82	10.10	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1809	76	83	11.32	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1810	76	84	10.08	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1811	76	85	8.90	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1812	76	86	17.34	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1813	76	87	13.34	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1814	76	88	9.00	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1815	76	89	15.98	\N	2026-05-12 20:22:38	2026-05-12 20:22:38
1816	76	90	13.42	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1817	76	91	16.70	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1818	76	92	13.60	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1819	76	93	9.42	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1820	76	94	2.70	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1821	76	95	11.96	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1822	76	96	6.41	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1823	76	97	11.00	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1824	76	98	13.02	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1825	76	99	8.88	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1826	76	100	8.24	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1827	76	101	12.00	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1828	76	102	11.58	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1829	77	72	11.70	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1830	77	73	9.26	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1831	77	74	16.24	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1832	77	75	19.82	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1833	77	76	13.10	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1834	77	77	6.08	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1835	77	78	8.46	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1836	77	79	12.76	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1837	77	80	10.98	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1838	77	81	10.38	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1839	77	82	6.14	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1840	77	83	9.94	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1841	77	84	10.38	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1842	77	85	16.12	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1843	77	86	9.06	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1844	77	87	15.48	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1845	77	88	9.24	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1846	77	89	4.50	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1847	77	90	6.35	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1848	77	91	10.54	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1849	77	92	11.38	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1850	77	93	8.68	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1851	77	94	10.88	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1852	77	95	12.94	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1853	77	96	15.56	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1854	77	97	6.05	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1855	77	98	16.88	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1856	77	99	12.80	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1857	77	100	12.14	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1858	77	101	10.50	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1859	77	102	15.60	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1860	78	72	8.90	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1861	78	73	11.50	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1862	78	74	5.93	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1863	78	75	12.82	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1864	78	76	8.70	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1865	78	77	11.32	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1866	78	78	15.64	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1867	78	79	6.98	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1868	78	80	12.60	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1869	78	81	12.10	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1870	78	82	17.70	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1871	78	83	12.18	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1872	78	84	3.20	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1873	78	85	13.60	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1874	78	86	12.90	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1875	78	87	12.42	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1876	78	88	11.62	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1877	78	89	11.84	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1878	78	90	7.91	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1879	78	91	11.32	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1880	78	92	15.42	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1881	78	93	16.20	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1882	78	94	11.84	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1883	78	95	15.82	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1884	78	96	5.75	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1885	78	97	11.72	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1886	78	98	15.72	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1887	78	99	16.32	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1888	78	100	13.88	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1889	78	101	12.76	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1890	78	102	13.44	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1891	79	72	9.68	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1892	79	73	9.56	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1893	79	74	10.64	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1894	79	75	9.50	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1895	79	76	15.20	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1896	79	77	13.34	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1897	79	78	15.58	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1898	79	79	12.98	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1899	79	80	13.52	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1900	79	81	11.96	\N	2026-05-12 20:22:39	2026-05-12 20:22:39
1901	79	82	14.32	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1902	79	83	11.94	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1903	79	84	15.86	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1904	79	85	13.48	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1905	79	86	17.00	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1906	79	87	12.44	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1907	79	88	10.92	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1908	79	89	10.22	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1909	79	90	8.66	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1910	79	91	8.10	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1911	79	92	12.42	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1912	79	93	12.18	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1913	79	94	17.28	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1914	79	95	9.82	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1915	79	96	14.40	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1916	79	97	10.98	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1917	79	98	12.58	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1918	79	99	15.00	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1919	79	100	11.58	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1920	79	101	19.38	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1921	79	102	10.60	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1922	80	72	1.00	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1923	80	73	11.98	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1924	80	74	17.34	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1925	80	75	16.08	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1926	80	76	11.38	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1927	80	77	15.56	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1928	80	78	13.42	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1929	80	79	16.96	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1930	80	80	11.26	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1931	80	81	15.66	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1932	80	82	17.38	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1933	80	83	17.86	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1934	80	84	8.76	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1935	80	85	11.08	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1936	80	86	13.06	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1937	80	87	13.78	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1938	80	88	2.30	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1939	80	89	10.42	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1940	80	90	9.54	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1941	80	91	13.50	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1942	80	92	16.24	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1943	80	93	15.12	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1944	80	94	11.32	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1945	80	95	0.05	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1946	80	96	7.82	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1947	80	97	8.50	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1948	80	98	9.18	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1949	80	99	10.48	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1950	80	100	11.98	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1951	80	101	13.08	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1952	80	102	15.20	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1953	81	72	12.94	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1954	81	73	4.65	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1955	81	74	11.30	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1956	81	75	12.70	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1957	81	76	9.06	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1958	81	77	9.80	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1959	81	78	12.78	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1960	81	79	7.67	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1961	81	80	16.48	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1962	81	81	13.86	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1963	81	82	16.92	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1964	81	83	13.32	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1965	81	84	0.00	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1966	81	85	7.55	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1967	81	86	17.72	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1968	81	87	9.94	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1969	81	88	15.64	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1970	81	89	0.90	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1971	81	90	6.02	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1972	81	91	8.10	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1973	81	92	17.50	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1974	81	93	7.73	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1975	81	94	13.32	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1976	81	95	14.76	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1977	81	96	11.28	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1978	81	97	12.30	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1979	81	98	10.24	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1980	81	99	13.80	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1981	81	100	11.46	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1982	81	101	16.54	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1983	81	102	10.16	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1984	82	72	6.14	\N	2026-05-12 20:22:40	2026-05-12 20:22:40
1985	82	73	11.28	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
1986	82	74	9.16	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
1987	82	75	15.94	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
1988	82	76	10.44	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
1989	82	77	16.20	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
1990	82	78	6.05	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
1991	82	79	10.28	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
1992	82	80	8.28	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
1993	82	81	13.68	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
1994	82	82	14.02	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
1995	82	83	5.48	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
1996	82	84	11.76	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
1997	82	85	8.88	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
1998	82	86	6.86	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
1999	82	87	10.38	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2000	82	88	10.86	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2001	82	89	10.04	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2002	82	90	13.68	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2003	82	91	19.44	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2004	82	92	14.10	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2005	82	93	6.23	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2006	82	94	8.54	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2007	82	95	14.54	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2008	82	96	5.09	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2009	82	97	8.48	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2010	82	98	5.60	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2011	82	99	9.38	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2012	82	100	9.74	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2013	82	101	15.32	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2014	82	102	13.54	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2015	83	72	6.62	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2016	83	73	10.90	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2017	83	74	11.96	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2018	83	75	12.94	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2019	83	76	12.40	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2020	83	77	2.70	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2021	83	78	11.32	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2022	83	79	11.94	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2023	83	80	13.22	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2024	83	81	0.50	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2025	83	82	9.30	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2026	83	83	18.64	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2027	83	84	12.00	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2028	83	85	8.20	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2029	83	86	14.00	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2030	83	87	12.04	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2031	83	88	10.86	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2032	83	89	14.32	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2033	83	90	6.83	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2034	83	91	16.48	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2035	83	92	10.82	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2036	83	93	13.24	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2037	83	94	12.70	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2038	83	95	13.90	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2039	83	96	12.36	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2040	83	97	13.14	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2041	83	98	11.00	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2042	83	99	9.70	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2043	83	100	7.61	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2044	83	101	11.94	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2045	83	102	8.38	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2046	84	72	10.20	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2047	84	73	11.72	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2048	84	74	9.84	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2049	84	75	13.66	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2050	84	76	8.32	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2051	84	77	7.55	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2052	84	78	9.76	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2053	84	79	10.64	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2054	84	80	12.50	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2055	84	81	7.37	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2056	84	82	15.04	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2057	84	83	10.64	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2058	84	84	8.58	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2059	84	85	13.56	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2060	84	86	5.42	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2061	84	87	14.80	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2062	84	88	9.78	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2063	84	89	17.64	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2064	84	90	5.87	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2065	84	91	15.38	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2066	84	92	13.42	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2067	84	93	11.82	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2068	84	94	15.10	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2069	84	95	10.62	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2070	84	96	15.46	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2071	84	97	11.12	\N	2026-05-12 20:22:41	2026-05-12 20:22:41
2072	84	98	9.40	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2073	84	99	16.86	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2074	84	100	15.08	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2075	84	101	12.82	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2076	84	102	8.84	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2077	85	72	9.22	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2078	85	73	16.24	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2079	85	74	14.72	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2080	85	75	17.12	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2081	85	76	13.60	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2082	85	77	14.38	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2083	85	78	11.58	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2084	85	79	9.02	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2085	85	80	9.32	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2086	85	81	12.44	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2087	85	82	11.34	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2088	85	83	13.10	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2089	85	84	7.25	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2090	85	85	17.60	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2091	85	86	7.19	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2092	85	87	17.32	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2093	85	88	2.70	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2094	85	89	12.18	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2095	85	90	5.27	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2096	85	91	14.48	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2097	85	92	11.14	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2098	85	93	16.38	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2099	85	94	10.60	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2100	85	95	12.18	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2101	85	96	11.88	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2102	85	97	13.32	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2103	85	98	10.02	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2104	85	99	12.30	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2105	85	100	8.06	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2106	85	101	15.56	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2107	85	102	15.28	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2108	86	72	6.47	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2109	86	73	6.32	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2110	86	74	8.72	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2111	86	75	7.64	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2112	86	76	7.01	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2113	86	77	1.20	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2114	86	78	11.70	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2115	86	79	11.54	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2116	86	80	12.02	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2117	86	81	10.90	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2118	86	82	12.92	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2119	86	83	2.65	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2120	86	84	9.16	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2121	86	85	15.26	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2122	86	86	6.74	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2123	86	87	9.92	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2124	86	88	8.16	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2125	86	89	17.86	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2126	86	90	17.80	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2127	86	91	5.33	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2128	86	92	14.18	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2129	86	93	11.88	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2130	86	94	5.72	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2131	86	95	10.38	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2132	86	96	14.88	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2133	86	97	10.40	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2134	86	98	11.46	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2135	86	99	14.60	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2136	86	100	11.42	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2137	86	101	6.29	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2138	86	102	8.64	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2139	87	72	10.96	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2140	87	73	2.65	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2141	87	74	11.56	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2142	87	75	10.24	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2143	87	76	13.70	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2144	87	77	10.50	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2145	87	78	13.76	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2146	87	79	8.52	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2147	87	80	12.68	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2148	87	81	11.52	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2149	87	82	11.34	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2150	87	83	11.48	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2151	87	84	13.74	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2152	87	85	6.38	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2153	87	86	8.10	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2154	87	87	16.62	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2155	87	88	17.50	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2156	87	89	9.36	\N	2026-05-12 20:22:42	2026-05-12 20:22:42
2157	87	90	12.38	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2158	87	91	6.95	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2159	87	92	8.02	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2160	87	93	13.82	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2161	87	94	0.35	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2162	87	95	17.20	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2163	87	96	12.20	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2164	87	97	10.74	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2165	87	98	11.92	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2166	87	99	17.88	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2167	87	100	9.72	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2168	87	101	10.78	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2169	87	102	11.68	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2170	88	72	15.74	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2171	88	73	11.54	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2172	88	74	16.94	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2173	88	75	17.40	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2174	88	76	11.68	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2175	88	77	18.06	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2176	88	78	0.15	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2177	88	79	15.08	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2178	88	80	12.60	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2179	88	81	4.20	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2180	88	82	11.82	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2181	88	83	8.90	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2182	88	84	9.44	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2183	88	85	7.76	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2184	88	86	8.46	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2185	88	87	11.54	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2186	88	88	15.46	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2187	88	89	9.00	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2188	88	90	5.78	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2189	88	91	13.68	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2190	88	92	4.25	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2191	88	93	9.66	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2192	88	94	8.08	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2193	88	95	8.40	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2194	88	96	12.02	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2195	88	97	2.35	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2196	88	98	9.38	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2197	88	99	8.96	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2198	88	100	5.39	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2199	88	101	9.94	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2200	88	102	8.68	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2201	89	72	8.78	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2202	89	73	8.24	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2203	89	74	8.86	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2204	89	75	17.04	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2205	89	76	9.42	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2206	89	77	10.38	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2207	89	78	8.42	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2208	89	79	9.54	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2209	89	80	15.30	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2210	89	81	9.78	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2211	89	82	6.98	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2212	89	83	6.89	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2213	89	84	12.48	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2214	89	85	17.26	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2215	89	86	12.38	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2216	89	87	15.80	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2217	89	88	10.82	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2218	89	89	9.80	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2219	89	90	11.26	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2220	89	91	14.66	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2221	89	92	8.20	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2222	89	93	11.06	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2223	89	94	5.99	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2224	89	95	18.84	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2225	89	96	11.96	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2226	89	97	15.94	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2227	89	98	17.26	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2228	89	99	9.46	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2229	89	100	12.28	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2230	89	101	8.64	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2231	89	102	12.84	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2232	90	72	9.46	\N	2026-05-12 20:22:43	2026-05-12 20:22:43
2233	90	73	16.94	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2234	90	74	14.30	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2235	90	75	17.72	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2236	90	76	9.98	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2237	90	77	13.22	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2238	90	78	11.78	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2239	90	79	15.72	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2240	90	80	12.70	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2241	90	81	12.30	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2242	90	82	15.66	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2243	90	83	14.38	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2244	90	84	13.26	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2245	90	85	10.18	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2246	90	86	10.30	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2247	90	87	12.88	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2248	90	88	14.80	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2249	90	89	8.00	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2250	90	90	11.42	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2251	90	91	9.20	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2252	90	92	9.90	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2253	90	93	7.31	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2254	90	94	9.58	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2255	90	95	14.84	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2256	90	96	8.46	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2257	90	97	8.90	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2258	90	98	11.92	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2259	90	99	18.38	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2260	90	100	3.00	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2261	90	101	17.02	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2262	90	102	2.20	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2263	91	72	14.44	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2264	91	73	11.04	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2265	91	74	5.42	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2266	91	75	7.73	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2267	91	76	11.68	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2268	91	77	13.68	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2269	91	78	17.62	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2270	91	79	15.48	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2271	91	80	12.62	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2272	91	81	1.20	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2273	91	82	8.84	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2274	91	83	12.04	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2275	91	84	14.04	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2276	91	85	8.36	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2277	91	86	16.14	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2278	91	87	11.60	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2279	91	88	10.16	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2280	91	89	11.04	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2281	91	90	15.32	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2282	91	91	11.84	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2283	91	92	9.64	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2284	91	93	9.84	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2285	91	94	9.44	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2286	91	95	10.76	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2287	91	96	8.00	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2288	91	97	0.10	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2289	91	98	10.54	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2290	91	99	13.90	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2291	91	100	13.34	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2292	91	101	15.60	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2293	91	102	9.46	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2294	92	72	6.83	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2295	92	73	13.76	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2296	92	74	9.00	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2297	92	75	0.80	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2298	92	76	13.56	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2299	92	77	8.04	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2300	92	78	15.06	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2301	92	79	11.84	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2302	92	80	9.26	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2303	92	81	13.38	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2304	92	82	14.64	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2305	92	83	13.40	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2306	92	84	9.84	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2307	92	85	9.38	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2308	92	86	13.32	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2309	92	87	14.48	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2310	92	88	11.16	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2311	92	89	16.00	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2312	92	90	6.41	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2313	92	91	5.93	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2314	92	92	13.96	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2315	92	93	12.94	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2316	92	94	8.30	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2317	92	95	11.92	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2318	92	96	10.50	\N	2026-05-12 20:22:44	2026-05-12 20:22:44
2319	92	97	8.66	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2320	92	98	12.48	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2321	92	99	7.07	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2322	92	100	11.36	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2323	92	101	11.82	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2324	92	102	9.52	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2325	93	72	10.04	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2326	93	73	13.68	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2327	93	74	5.60	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2328	93	75	10.28	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2329	93	76	11.96	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2330	93	77	6.53	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2331	93	78	12.92	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2332	93	79	12.74	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2333	93	80	10.68	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2334	93	81	13.20	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2335	93	82	12.94	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2336	93	83	12.42	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2337	93	84	13.44	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2338	93	85	11.12	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2339	93	86	8.72	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2340	93	87	14.24	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2341	93	88	9.04	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2342	93	89	8.74	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2343	93	90	12.92	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2344	93	91	15.72	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2345	93	92	11.82	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2346	93	93	8.18	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2347	93	94	15.62	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2348	93	95	13.88	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2349	93	96	13.06	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2350	93	97	13.28	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2351	93	98	11.88	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2352	93	99	16.40	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2353	93	100	11.96	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2354	93	101	16.40	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2355	93	102	18.12	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2356	94	72	8.18	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2357	94	73	13.04	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2358	94	74	9.28	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2359	94	75	16.68	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2360	94	76	14.06	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2361	94	77	10.68	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2362	94	78	12.28	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2363	94	79	14.54	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2364	94	80	8.14	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2365	94	81	8.64	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2366	94	82	16.00	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2367	94	83	17.18	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2368	94	84	12.66	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2369	94	85	2.75	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2370	94	86	11.86	\N	2026-05-12 20:22:45	2026-05-12 20:22:45
2371	94	87	10.14	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2372	94	88	5.96	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2373	94	89	15.16	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2374	94	90	12.10	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2375	94	91	9.94	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2376	94	92	6.83	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2377	94	93	17.64	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2378	94	94	11.18	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2379	94	95	7.19	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2380	94	96	9.90	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2381	94	97	0.65	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2382	94	98	13.30	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2383	94	99	10.44	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2384	94	100	11.60	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2385	94	101	9.22	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2386	94	102	17.44	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2387	95	72	11.54	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2388	95	73	13.86	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2389	95	74	10.32	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2390	95	75	13.98	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2391	95	76	9.40	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2392	95	77	8.76	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2393	95	78	9.98	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2394	95	79	11.84	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2395	95	80	12.22	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2396	95	81	17.96	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2397	95	82	11.50	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2398	95	83	12.82	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2399	95	84	1.80	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2400	95	85	17.86	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2401	95	86	10.62	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2402	95	87	17.74	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2403	95	88	3.80	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2404	95	89	11.70	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2405	95	90	8.98	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2406	95	91	9.06	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2407	95	92	11.50	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2408	95	93	12.70	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2409	95	94	13.88	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2410	95	95	11.28	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2411	95	96	18.32	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2412	95	97	13.98	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2413	95	98	11.14	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2414	95	99	12.82	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2415	95	100	15.28	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2416	95	101	5.00	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2417	95	102	7.16	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2418	96	72	12.72	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2419	96	73	12.62	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2420	96	74	15.54	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2421	96	75	13.30	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2422	96	76	7.01	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2423	96	77	12.16	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2424	96	78	17.24	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2425	96	79	13.32	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2426	96	80	3.15	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2427	96	81	5.00	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2428	96	82	8.72	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2429	96	83	11.90	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2430	96	84	15.22	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2431	96	85	10.30	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2432	96	86	13.36	\N	2026-05-12 20:22:46	2026-05-12 20:22:46
2433	96	87	9.64	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2434	96	88	8.60	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2435	96	89	13.42	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2436	96	90	8.14	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2437	96	91	15.38	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2438	96	92	9.38	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2439	96	93	5.30	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2440	96	94	11.92	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2441	96	95	12.00	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2442	96	96	10.46	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2443	96	97	12.00	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2444	96	98	18.94	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2445	96	99	13.58	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2446	96	100	12.64	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2447	96	101	9.62	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2448	96	102	10.22	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2449	97	103	4.05	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2450	97	104	14.76	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2451	97	105	5.96	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2452	97	106	4.60	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2453	97	107	11.64	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2454	97	108	14.58	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2455	97	109	11.30	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2456	97	110	17.86	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2457	97	111	5.78	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2458	97	112	11.48	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2459	97	113	4.30	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2460	97	114	12.20	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2461	97	115	11.00	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2462	97	116	10.76	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2463	97	117	15.42	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2464	97	118	8.46	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2465	97	119	8.06	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2466	97	120	13.64	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2467	97	121	15.62	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2468	97	122	17.14	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2469	97	123	5.81	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2470	98	103	11.30	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2471	98	104	14.10	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2472	98	105	14.20	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2473	98	106	12.78	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2474	98	107	5.33	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2475	98	108	3.05	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2476	98	109	9.36	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2477	98	110	13.00	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2478	98	111	5.78	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2479	98	112	17.54	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2480	98	113	7.31	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2481	98	114	9.44	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2482	98	115	13.70	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2483	98	116	11.88	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2484	98	117	14.12	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2485	98	118	9.82	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2486	98	119	11.48	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2487	98	120	10.84	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2488	98	121	9.88	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2489	98	122	13.90	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2490	98	123	11.04	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2491	99	103	10.76	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2492	99	104	8.06	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2493	99	105	5.00	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2494	99	106	8.44	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2495	99	107	12.60	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2496	99	108	12.02	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2497	99	109	10.26	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2498	99	110	9.96	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2499	99	111	8.52	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2500	99	112	13.50	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2501	99	113	11.50	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2502	99	114	12.16	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2503	99	115	8.86	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2504	99	116	10.12	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2505	99	117	11.34	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2506	99	118	10.18	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2507	99	119	12.66	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2508	99	120	15.50	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2509	99	121	11.32	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2510	99	122	10.36	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2511	99	123	9.46	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2512	100	103	12.78	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2513	100	104	7.85	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2514	100	105	12.86	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2515	100	106	10.38	\N	2026-05-12 20:22:47	2026-05-12 20:22:47
2516	100	107	7.55	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2517	100	108	8.26	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2518	100	109	9.62	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2519	100	110	4.00	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2520	100	111	12.18	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2521	100	112	14.86	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2522	100	113	13.24	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2523	100	114	13.20	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2524	100	115	8.22	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2525	100	116	8.14	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2526	100	117	12.58	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2527	100	118	9.82	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2528	100	119	16.94	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2529	100	120	11.64	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2530	100	121	6.65	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2531	100	122	9.08	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2532	100	123	17.48	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2533	101	103	13.48	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2534	101	104	9.82	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2535	101	105	15.18	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2536	101	106	16.00	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2537	101	107	17.84	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2538	101	108	15.06	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2539	101	109	10.40	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2540	101	110	10.64	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2541	101	111	15.86	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2542	101	112	11.48	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2543	101	113	15.36	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2544	101	114	10.72	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2545	101	115	10.20	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2546	101	116	10.54	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2547	101	117	11.72	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2548	101	118	17.24	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2549	101	119	10.06	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2550	101	120	3.10	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2551	101	121	17.42	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2552	101	122	10.84	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2553	101	123	10.38	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2554	102	103	9.54	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2555	102	104	10.16	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2556	102	105	11.82	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2557	102	106	9.94	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2558	102	107	9.92	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2559	102	108	13.78	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2560	102	109	13.82	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2561	102	110	12.86	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2562	102	111	16.80	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2563	102	112	11.74	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2564	102	113	14.68	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2565	102	114	10.78	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2566	102	115	15.70	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2567	102	116	8.20	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2568	102	117	11.50	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2569	102	118	7.28	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2570	102	119	14.88	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2571	102	120	12.50	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2572	102	121	10.30	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2573	102	122	13.72	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2574	102	123	16.00	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2575	103	103	13.84	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2576	103	104	6.92	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2577	103	105	9.28	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2578	103	106	16.62	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2579	103	107	12.22	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2580	103	108	14.10	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2581	103	109	3.90	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2582	103	110	10.16	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2583	103	111	0.60	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2584	103	112	15.70	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2585	103	113	8.60	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2586	103	114	11.32	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2587	103	115	9.72	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2588	103	116	8.68	\N	2026-05-12 20:22:48	2026-05-12 20:22:48
2589	103	117	13.24	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2590	103	118	14.50	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2591	103	119	8.08	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2592	103	120	9.44	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2593	103	121	10.82	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2594	103	122	6.80	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2595	103	123	13.98	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2596	104	103	12.88	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2597	104	104	15.02	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2598	104	105	10.02	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2599	104	106	9.04	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2600	104	107	10.36	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2601	104	108	8.76	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2602	104	109	6.32	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2603	104	110	8.26	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2604	104	111	13.90	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2605	104	112	8.82	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2606	104	113	11.38	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2607	104	114	13.42	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2608	104	115	14.34	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2609	104	116	12.02	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2610	104	117	10.54	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2611	104	118	14.18	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2612	104	119	5.42	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2613	104	120	5.42	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2614	104	121	1.90	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2615	104	122	5.33	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2616	104	123	6.11	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2617	105	103	12.04	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2618	105	104	9.00	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2619	105	105	13.84	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2620	105	106	15.58	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2621	105	107	8.94	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2622	105	108	9.80	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2623	105	109	11.56	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2624	105	110	13.36	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2625	105	111	10.68	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2626	105	112	15.36	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2627	105	113	10.56	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2628	105	114	11.36	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2629	105	115	8.08	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2630	105	116	9.26	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2631	105	117	8.22	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2632	105	118	13.06	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2633	105	119	15.06	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2634	105	120	9.36	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2635	105	121	14.00	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2636	105	122	16.60	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2637	105	123	17.72	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2638	106	103	9.78	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2639	106	104	10.30	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2640	106	105	14.76	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2641	106	106	12.14	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2642	106	107	3.70	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2643	106	108	8.40	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2644	106	109	10.32	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2645	106	110	10.74	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2646	106	111	0.75	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2647	106	112	11.32	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2648	106	113	6.71	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2649	106	114	10.72	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2650	106	115	9.86	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2651	106	116	12.64	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2652	106	117	12.76	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2653	106	118	12.30	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2654	106	119	18.20	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2655	106	120	13.42	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2656	106	121	8.40	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2657	106	122	14.40	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2658	106	123	7.52	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2659	107	103	12.40	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2660	107	104	11.96	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2661	107	105	9.68	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2662	107	106	4.55	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2663	107	107	8.68	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2664	107	108	8.26	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2665	107	109	5.51	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2666	107	110	15.42	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2667	107	111	11.80	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2668	107	112	9.04	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2669	107	113	16.18	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2670	107	114	14.96	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2671	107	115	6.20	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2672	107	116	9.66	\N	2026-05-12 20:22:49	2026-05-12 20:22:49
2673	107	117	12.84	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2674	107	118	11.24	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2675	107	119	12.00	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2676	107	120	6.17	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2677	107	121	8.34	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2678	107	122	10.86	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2679	107	123	10.60	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2680	108	103	13.00	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2681	108	104	10.78	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2682	108	105	9.44	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2683	108	106	14.04	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2684	108	107	11.16	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2685	108	108	11.04	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2686	108	109	8.54	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2687	108	110	9.42	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2688	108	111	12.64	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2689	108	112	19.46	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2690	108	113	9.54	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2691	108	114	11.20	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2692	108	115	10.40	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2693	108	116	16.58	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2694	108	117	19.58	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2695	108	118	3.70	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2696	108	119	10.52	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2697	108	120	13.50	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2698	108	121	12.62	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2699	108	122	11.80	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2700	108	123	15.68	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2701	109	103	11.68	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2702	109	104	8.38	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2703	109	105	11.44	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2704	109	106	11.76	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2705	109	107	15.00	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2706	109	108	1.85	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2707	109	109	10.00	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2708	109	110	10.06	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2709	109	111	13.72	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2710	109	112	13.64	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2711	109	113	12.80	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2712	109	114	15.86	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2713	109	115	11.72	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2714	109	116	14.22	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2715	109	117	13.62	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2716	109	118	10.42	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2717	109	119	15.34	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2718	109	120	10.90	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2719	109	121	9.50	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2720	109	122	9.10	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2721	109	123	11.48	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2722	110	103	10.58	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2723	110	104	1.35	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2724	110	105	11.74	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2725	110	106	15.04	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2726	110	107	10.00	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2727	110	108	12.26	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2728	110	109	14.76	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2729	110	110	3.10	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2730	110	111	8.88	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2731	110	112	13.54	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2732	110	113	10.50	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2733	110	114	14.24	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2734	110	115	15.54	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2735	110	116	9.92	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2736	110	117	11.48	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2737	110	118	13.52	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2738	110	119	8.80	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2739	110	120	5.36	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2740	110	121	11.80	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2741	110	122	6.26	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2742	110	123	12.22	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2743	111	103	5.09	\N	2026-05-12 20:22:50	2026-05-12 20:22:50
2744	111	104	11.30	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2745	111	105	16.34	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2746	111	106	11.72	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2747	111	107	8.18	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2748	111	108	16.76	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2749	111	109	10.36	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2750	111	110	13.86	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2751	111	111	12.54	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2752	111	112	11.90	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2753	111	113	12.98	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2754	111	114	10.84	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2755	111	115	13.04	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2756	111	116	14.98	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2757	111	117	14.36	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2758	111	118	11.96	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2759	111	119	11.56	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2760	111	120	13.74	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2761	111	121	15.50	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2762	111	122	8.46	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2763	111	123	7.16	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2764	112	103	15.74	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2765	112	104	5.84	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2766	112	105	11.82	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2767	112	106	9.86	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2768	112	107	12.80	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2769	112	108	15.72	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2770	112	109	9.12	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2771	112	110	12.02	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2772	112	111	18.00	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2773	112	112	12.44	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2774	112	113	14.56	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2775	112	114	9.36	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2776	112	115	11.32	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2777	112	116	6.35	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2778	112	117	11.24	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2779	112	118	8.04	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2780	112	119	9.52	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2781	112	120	15.14	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2782	112	121	6.65	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2783	112	122	11.98	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2784	112	123	8.80	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2785	113	103	17.90	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2786	113	104	15.12	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2787	113	105	6.08	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2788	113	106	10.30	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2789	113	107	8.28	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2790	113	108	8.04	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2791	113	109	15.52	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2792	113	110	5.06	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2793	113	111	16.54	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2794	113	112	15.80	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2795	113	113	14.54	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2796	113	114	11.18	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2797	113	115	8.86	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2798	113	116	8.48	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2799	113	117	10.20	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2800	113	118	0.20	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2801	113	119	5.78	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2802	113	120	13.26	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2803	113	121	6.41	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2804	113	122	13.64	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2805	113	123	14.64	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2806	114	103	10.32	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2807	114	104	7.79	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2808	114	105	2.80	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2809	114	106	18.66	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2810	114	107	8.34	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2811	114	108	13.90	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2812	114	109	10.94	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2813	114	110	4.75	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2814	114	111	10.54	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2815	114	112	7.82	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2816	114	113	11.00	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2817	114	114	9.96	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2818	114	115	9.68	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2819	114	116	11.78	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2820	114	117	6.98	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2821	114	118	12.90	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2822	114	119	10.24	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2823	114	120	14.00	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2824	114	121	11.36	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2825	114	122	15.76	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2826	114	123	9.48	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2827	115	103	9.88	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2828	115	104	14.32	\N	2026-05-12 20:22:51	2026-05-12 20:22:51
2829	115	105	5.60	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2830	115	106	9.74	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2831	115	107	9.68	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2832	115	108	9.04	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2833	115	109	18.94	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2834	115	110	11.10	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2835	115	111	13.18	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2836	115	112	13.34	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2837	115	113	5.45	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2838	115	114	5.63	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2839	115	115	10.82	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2840	115	116	9.06	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2841	115	117	4.45	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2842	115	118	13.06	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2843	115	119	10.44	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2844	115	120	15.06	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2845	115	121	15.14	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2846	115	122	9.24	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2847	115	123	10.10	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2848	116	103	12.18	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2849	116	104	8.54	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2850	116	105	10.98	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2851	116	106	16.90	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2852	116	107	15.86	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2853	116	108	14.26	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2854	116	109	15.96	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2855	116	110	9.36	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2856	116	111	12.08	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2857	116	112	6.83	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2858	116	113	9.68	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2859	116	114	3.10	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2860	116	115	7.55	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2861	116	116	8.12	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2862	116	117	6.62	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2863	116	118	19.26	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2864	116	119	11.06	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2865	116	120	11.00	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2866	116	121	8.48	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2867	116	122	7.76	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2868	116	123	9.74	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2869	117	103	10.30	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2870	117	104	10.58	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2871	117	105	11.02	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2872	117	106	7.04	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2873	117	107	14.32	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2874	117	108	8.74	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2875	117	109	8.00	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2876	117	110	14.00	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2877	117	111	12.64	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2878	117	112	7.43	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2879	117	113	11.08	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2880	117	114	18.20	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2881	117	115	10.48	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2882	117	116	12.42	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2883	117	117	15.60	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2884	117	118	10.62	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2885	117	119	15.70	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2886	117	120	12.42	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2887	117	121	11.30	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2888	117	122	12.82	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2889	117	123	17.70	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2890	118	103	15.72	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2891	118	104	3.50	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2892	118	105	17.00	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2893	118	106	19.60	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2894	118	107	13.38	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2895	118	108	11.62	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2896	118	109	8.08	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2897	118	110	11.10	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2898	118	111	6.68	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2899	118	112	18.28	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2900	118	113	11.06	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2901	118	114	9.50	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2902	118	115	14.90	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2903	118	116	10.84	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2904	118	117	7.64	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2905	118	118	2.60	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2906	118	119	11.26	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2907	118	120	15.30	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2908	118	121	14.72	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2909	118	122	10.36	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2910	118	123	11.08	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2911	119	103	13.80	\N	2026-05-12 20:22:52	2026-05-12 20:22:52
2912	119	104	8.96	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2913	119	105	17.54	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2914	119	106	8.76	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2915	119	107	10.06	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2916	119	108	10.04	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2917	119	109	3.70	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2918	119	110	10.06	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2919	119	111	14.16	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2920	119	112	17.48	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2921	119	113	11.72	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2922	119	114	13.80	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2923	119	115	13.70	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2924	119	116	16.86	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2925	119	117	17.96	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2926	119	118	12.22	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2927	119	119	10.36	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2928	119	120	8.82	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2929	119	121	10.12	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2930	119	122	4.45	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2931	119	123	7.22	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2932	120	103	1.85	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2933	120	104	14.20	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2934	120	105	9.34	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2935	120	106	13.14	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2936	120	107	6.65	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2937	120	108	15.44	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2938	120	109	14.02	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2939	120	110	10.32	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2940	120	111	9.54	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2941	120	112	13.80	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2942	120	113	14.30	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2943	120	114	9.64	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2944	120	115	12.34	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2945	120	116	8.80	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2946	120	117	10.26	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2947	120	118	8.38	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2948	120	119	5.66	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2949	120	120	13.58	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2950	120	121	10.74	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2951	120	122	11.18	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2952	120	123	13.04	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2953	121	124	9.74	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2954	121	125	13.38	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2955	121	126	9.70	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2956	121	127	16.70	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2957	121	128	4.25	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2958	121	129	9.22	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2959	121	130	19.76	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2960	121	131	13.26	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2961	121	132	8.02	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2962	121	133	3.45	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2963	121	134	15.24	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2964	121	135	14.78	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2965	121	136	10.66	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2966	121	137	18.14	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2967	121	138	9.80	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2968	121	139	13.58	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2969	121	140	8.86	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2970	121	141	13.72	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2971	121	142	11.80	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2972	121	143	9.84	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2973	121	144	9.74	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2974	121	145	11.92	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2975	121	146	12.94	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2976	121	147	11.36	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2977	121	148	10.24	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2978	121	149	15.92	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2979	121	150	13.84	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2980	122	124	8.10	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2981	122	125	10.18	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2982	122	126	6.74	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2983	122	127	10.24	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2984	122	128	12.38	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2985	122	129	8.14	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2986	122	130	13.54	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2987	122	131	8.14	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2988	122	132	16.58	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2989	122	133	5.12	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2990	122	134	11.62	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2991	122	135	11.76	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2992	122	136	10.22	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2993	122	137	8.60	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2994	122	138	6.98	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2995	122	139	5.03	\N	2026-05-12 20:22:53	2026-05-12 20:22:53
2996	122	140	16.18	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
2997	122	141	15.52	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
2998	122	142	15.04	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
2999	122	143	6.68	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3000	122	144	8.90	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3001	122	145	11.76	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3002	122	146	17.12	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3003	122	147	16.88	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3004	122	148	5.42	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3005	122	149	9.44	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3006	122	150	9.18	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3007	123	124	8.00	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3008	123	125	9.14	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3009	123	126	15.06	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3010	123	127	17.04	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3011	123	128	15.22	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3012	123	129	12.28	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3013	123	130	6.05	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3014	123	131	14.64	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3015	123	132	19.76	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3016	123	133	2.00	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3017	123	134	12.94	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3018	123	135	13.28	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3019	123	136	13.08	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3020	123	137	8.82	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3021	123	138	16.44	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3022	123	139	16.50	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3023	123	140	10.64	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3024	123	141	11.68	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3025	123	142	13.32	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3026	123	143	11.86	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3027	123	144	7.28	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3028	123	145	12.92	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3029	123	146	0.60	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3030	123	147	17.86	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3031	123	148	9.80	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3032	123	149	12.48	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3033	123	150	10.10	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3034	124	124	7.49	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3035	124	125	10.42	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3036	124	126	15.40	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3037	124	127	15.68	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3038	124	128	11.24	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3039	124	129	15.64	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3040	124	130	9.06	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3041	124	131	9.66	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3042	124	132	19.60	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3043	124	133	7.22	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3044	124	134	10.44	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3045	124	135	13.62	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3046	124	136	11.08	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3047	124	137	15.36	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3048	124	138	4.85	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3049	124	139	13.80	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3050	124	140	12.74	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3051	124	141	8.18	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3052	124	142	8.12	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3053	124	143	15.14	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3054	124	144	10.28	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3055	124	145	13.50	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3056	124	146	19.40	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3057	124	147	11.92	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3058	124	148	14.86	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3059	124	149	8.78	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3060	124	150	14.00	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3061	125	124	14.14	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3062	125	125	11.04	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3063	125	126	10.30	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3064	125	127	7.73	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3065	125	128	13.86	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3066	125	129	10.44	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3067	125	130	13.48	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3068	125	131	11.38	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3069	125	132	11.40	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3070	125	133	10.90	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3071	125	134	15.64	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3072	125	135	11.48	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3073	125	136	5.96	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3074	125	137	6.29	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3075	125	138	9.44	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3076	125	139	10.80	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3077	125	140	11.26	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3078	125	141	14.18	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3079	125	142	12.80	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3080	125	143	11.46	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3081	125	144	8.88	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3082	125	145	8.46	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3083	125	146	12.92	\N	2026-05-12 20:22:54	2026-05-12 20:22:54
3084	125	147	10.74	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3085	125	148	10.56	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3086	125	149	9.46	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3087	125	150	9.60	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3088	126	124	14.86	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3089	126	125	10.94	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3090	126	126	17.54	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3091	126	127	4.40	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3092	126	128	9.02	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3093	126	129	13.24	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3094	126	130	19.06	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3095	126	131	11.52	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3096	126	132	18.50	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3097	126	133	12.86	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3098	126	134	9.92	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3099	126	135	10.34	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3100	126	136	10.50	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3101	126	137	9.50	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3102	126	138	11.12	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3103	126	139	15.80	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3104	126	140	8.72	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3105	126	141	10.00	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3106	126	142	13.84	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3107	126	143	10.54	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3108	126	144	3.35	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3109	126	145	7.88	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3110	126	146	15.98	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3111	126	147	10.70	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3112	126	148	14.58	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3113	126	149	13.38	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3114	126	150	7.46	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3115	127	124	14.42	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3116	127	125	11.88	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3117	127	126	9.26	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3118	127	127	11.26	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3119	127	128	10.84	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3120	127	129	15.44	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3121	127	130	11.58	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3122	127	131	12.62	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3123	127	132	12.46	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3124	127	133	11.24	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3125	127	134	11.58	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3126	127	135	12.90	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3127	127	136	10.96	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3128	127	137	12.52	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3129	127	138	10.46	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3130	127	139	11.04	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3131	127	140	9.24	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3132	127	141	7.37	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3133	127	142	13.32	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3134	127	143	8.26	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3135	127	144	11.50	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3136	127	145	8.34	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3137	127	146	11.10	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3138	127	147	4.80	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3139	127	148	13.10	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3140	127	149	14.62	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3141	127	150	14.90	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3142	128	124	12.40	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3143	128	125	11.08	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3144	128	126	5.33	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3145	128	127	13.44	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3146	128	128	9.96	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3147	128	129	10.46	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3148	128	130	13.52	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3149	128	131	3.95	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3150	128	132	16.30	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3151	128	133	9.16	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3152	128	134	5.12	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3153	128	135	13.86	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3154	128	136	9.02	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3155	128	137	15.78	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3156	128	138	15.40	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3157	128	139	10.68	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3158	128	140	17.98	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3159	128	141	11.24	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3160	128	142	9.92	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3161	128	143	10.70	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3162	128	144	11.72	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3163	128	145	12.94	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3164	128	146	12.82	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3165	128	147	12.74	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3166	128	148	10.90	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3167	128	149	15.28	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3168	128	150	15.44	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3169	129	124	8.76	\N	2026-05-12 20:22:55	2026-05-12 20:22:55
3170	129	125	10.26	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3171	129	126	12.58	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3172	129	127	13.12	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3173	129	128	9.28	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3174	129	129	8.76	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3175	129	130	9.38	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3176	129	131	12.58	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3177	129	132	12.68	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3178	129	133	19.50	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3179	129	134	19.62	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3180	129	135	4.00	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3181	129	136	1.55	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3182	129	137	8.24	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3183	129	138	10.92	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3184	129	139	10.54	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3185	129	140	10.62	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3186	129	141	12.74	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3187	129	142	15.06	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3188	129	143	14.48	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3189	129	144	13.36	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3190	129	145	1.25	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3191	129	146	8.90	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3192	129	147	8.16	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3193	129	148	15.44	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3194	129	149	15.12	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3195	129	150	12.92	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3196	130	124	12.38	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3197	130	125	6.47	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3198	130	126	10.94	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3199	130	127	14.80	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3200	130	128	15.10	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3201	130	129	8.78	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3202	130	130	7.07	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3203	130	131	15.18	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3204	130	132	9.32	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3205	130	133	10.64	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3206	130	134	9.96	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3207	130	135	14.76	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3208	130	136	9.72	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3209	130	137	12.64	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3210	130	138	10.54	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3211	130	139	11.30	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3212	130	140	16.24	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3213	130	141	15.94	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3214	130	142	16.82	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3215	130	143	14.98	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3216	130	144	8.32	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3217	130	145	15.56	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3218	130	146	5.81	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3219	130	147	2.85	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3220	130	148	14.44	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3221	130	149	2.55	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3222	130	150	6.26	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3223	131	124	6.47	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3224	131	125	8.82	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3225	131	126	17.06	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3226	131	127	11.78	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3227	131	128	10.92	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3228	131	129	8.12	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3229	131	130	14.88	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3230	131	131	12.16	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3231	131	132	10.00	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3232	131	133	6.29	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3233	131	134	12.74	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3234	131	135	10.72	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3235	131	136	10.04	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3236	131	137	12.38	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3237	131	138	7.40	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3238	131	139	6.92	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3239	131	140	12.60	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3240	131	141	5.39	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3241	131	142	10.44	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3242	131	143	10.94	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3243	131	144	16.64	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3244	131	145	11.18	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3245	131	146	12.62	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3246	131	147	10.86	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3247	131	148	12.32	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3248	131	149	13.72	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3249	131	150	15.26	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3250	132	124	1.10	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3251	132	125	0.15	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3252	132	126	8.32	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3253	132	127	10.30	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3254	132	128	13.20	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3255	132	129	7.49	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3256	132	130	5.09	\N	2026-05-12 20:22:56	2026-05-12 20:22:56
3257	132	131	11.80	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3258	132	132	5.60	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3259	132	133	14.32	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3260	132	134	14.02	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3261	132	135	16.38	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3262	132	136	11.48	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3263	132	137	12.70	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3264	132	138	8.06	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3265	132	139	9.06	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3266	132	140	6.53	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3267	132	141	10.50	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3268	132	142	0.65	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3269	132	143	15.04	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3270	132	144	19.52	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3271	132	145	9.98	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3272	132	146	14.80	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3273	132	147	10.46	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3274	132	148	13.60	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3275	132	149	13.30	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3276	132	150	10.86	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3277	133	124	12.04	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3278	133	125	14.80	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3279	133	126	9.32	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3280	133	127	8.64	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3281	133	128	10.16	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3282	133	129	11.92	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3283	133	130	10.82	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3284	133	131	9.78	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3285	133	132	13.74	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3286	133	133	13.42	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3287	133	134	9.64	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3288	133	135	8.66	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3289	133	136	13.10	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3290	133	137	11.10	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3291	133	138	12.12	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3292	133	139	10.48	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3293	133	140	9.78	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3294	133	141	13.90	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3295	133	142	10.14	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3296	133	143	8.86	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3297	133	144	6.98	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3298	133	145	9.54	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3299	133	146	8.74	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3300	133	147	12.88	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3301	133	148	8.10	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3302	133	149	5.96	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3303	133	150	13.14	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3304	134	124	9.12	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3305	134	125	4.25	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3306	134	126	12.76	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3307	134	127	19.22	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3308	134	128	9.30	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3309	134	129	1.90	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3310	134	130	12.58	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3311	134	131	14.48	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3312	134	132	10.66	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3313	134	133	10.74	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3314	134	134	15.58	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3315	134	135	11.78	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3316	134	136	10.44	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3317	134	137	13.66	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3318	134	138	7.55	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3319	134	139	19.30	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3320	134	140	11.36	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3321	134	141	0.15	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3322	134	142	11.64	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3323	134	143	14.22	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3324	134	144	8.28	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3325	134	145	13.44	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3326	134	146	7.79	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3327	134	147	10.84	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3328	134	148	17.64	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3329	134	149	11.86	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3330	134	150	10.60	\N	2026-05-12 20:22:57	2026-05-12 20:22:57
3331	135	124	10.24	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3332	135	125	13.42	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3333	135	126	10.90	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3334	135	127	14.76	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3335	135	128	9.12	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3336	135	129	10.18	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3337	135	130	9.72	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3338	135	131	13.92	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3339	135	132	13.38	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3340	135	133	15.98	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3341	135	134	11.84	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3342	135	135	6.68	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3343	135	136	11.46	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3344	135	137	10.94	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3345	135	138	13.08	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3346	135	139	3.30	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3347	135	140	13.80	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3348	135	141	14.52	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3349	135	142	16.68	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3350	135	143	12.80	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3351	135	144	11.52	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3352	135	145	8.02	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3353	135	146	5.63	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3354	135	147	9.86	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3355	135	148	12.38	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3356	135	149	11.26	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3357	135	150	7.79	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3358	136	124	9.08	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3359	136	125	17.04	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3360	136	126	6.71	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3361	136	127	11.70	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3362	136	128	12.70	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3363	136	129	15.14	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3364	136	130	12.44	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3365	136	131	13.98	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3366	136	132	10.02	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3367	136	133	13.14	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3368	136	134	10.96	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3369	136	135	11.42	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3370	136	136	8.82	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3371	136	137	7.88	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3372	136	138	9.24	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3373	136	139	3.65	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3374	136	140	8.04	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3375	136	141	11.88	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3376	136	142	11.56	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3377	136	143	12.36	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3378	136	144	5.57	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3379	136	145	11.24	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3380	136	146	14.34	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3381	136	147	15.64	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3382	136	148	11.80	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3383	136	149	6.02	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3384	136	150	11.10	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3385	137	124	12.00	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3386	137	125	8.16	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3387	137	126	14.12	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3388	137	127	17.90	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3389	137	128	14.90	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3390	137	129	9.58	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3391	137	130	10.00	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3392	137	131	9.84	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3393	137	132	11.04	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3394	137	133	15.02	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3395	137	134	11.38	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3396	137	135	13.38	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3397	137	136	8.74	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3398	137	137	13.60	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3399	137	138	13.88	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3400	137	139	9.24	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3401	137	140	13.42	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3402	137	141	5.66	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3403	137	142	12.58	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3404	137	143	3.75	\N	2026-05-12 20:22:58	2026-05-12 20:22:58
3405	137	144	9.32	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3406	137	145	14.34	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3407	137	146	14.36	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3408	137	147	9.32	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3409	137	148	10.16	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3410	137	149	12.70	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3411	137	150	8.72	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3412	138	124	12.68	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3413	138	125	15.38	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3414	138	126	10.84	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3415	138	127	12.78	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3416	138	128	9.52	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3417	138	129	15.78	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3418	138	130	13.02	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3419	138	131	11.42	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3420	138	132	10.32	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3421	138	133	12.48	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3422	138	134	8.00	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3423	138	135	10.60	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3424	138	136	9.20	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3425	138	137	6.74	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3426	138	138	9.10	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3427	138	139	7.73	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3428	138	140	12.90	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3429	138	141	10.10	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3430	138	142	8.86	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3431	138	143	10.16	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3432	138	144	11.38	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3433	138	145	10.12	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3434	138	146	9.90	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3435	138	147	11.06	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3436	138	148	10.44	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3437	138	149	10.38	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3438	138	150	9.54	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3439	139	124	10.22	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3440	139	125	10.28	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3441	139	126	8.68	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3442	139	127	11.40	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3443	139	128	5.39	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3444	139	129	10.32	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3445	139	130	15.84	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3446	139	131	5.21	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3447	139	132	12.16	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3448	139	133	15.08	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3449	139	134	9.26	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3450	139	135	14.68	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3451	139	136	10.40	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3452	139	137	5.51	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3453	139	138	16.72	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3454	139	139	10.50	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3455	139	140	11.88	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3456	139	141	8.76	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3457	139	142	9.88	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3458	139	143	11.76	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3459	139	144	10.90	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3460	139	145	3.70	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3461	139	146	16.12	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3462	139	147	19.16	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3463	139	148	11.82	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3464	139	149	12.78	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3465	139	150	9.06	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3466	140	124	11.66	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3467	140	125	15.04	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3468	140	126	8.08	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3469	140	127	8.44	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3470	140	128	17.32	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3471	140	129	6.41	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3472	140	130	8.00	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3473	140	131	8.00	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3474	140	132	15.40	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3475	140	133	13.08	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3476	140	134	9.14	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3477	140	135	9.52	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3478	140	136	11.72	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3479	140	137	9.18	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3480	140	138	8.88	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3481	140	139	11.42	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3482	140	140	9.90	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3483	140	141	8.64	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3484	140	142	9.44	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3485	140	143	1.65	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3486	140	144	10.04	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3487	140	145	6.32	\N	2026-05-12 20:22:59	2026-05-12 20:22:59
3488	140	146	11.46	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3489	140	147	11.96	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3490	140	148	10.78	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3491	140	149	16.28	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3492	140	150	15.26	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3493	141	124	8.68	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3494	141	125	13.00	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3495	141	126	15.28	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3496	141	127	8.80	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3497	141	128	8.74	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3498	141	129	12.78	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3499	141	130	18.78	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3500	141	131	11.68	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3501	141	132	9.16	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3502	141	133	17.74	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3503	141	134	12.12	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3504	141	135	9.74	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3505	141	136	12.60	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3506	141	137	11.62	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3507	141	138	17.42	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3508	141	139	5.09	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3509	141	140	5.00	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3510	141	141	12.94	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3511	141	142	17.46	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3512	141	143	12.90	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3513	141	144	0.80	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3514	141	145	8.04	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3515	141	146	9.96	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3516	141	147	12.06	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3517	141	148	8.64	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3518	141	149	14.20	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3519	141	150	7.19	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3520	142	124	7.91	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3521	142	125	11.92	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3522	142	126	11.68	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3523	142	127	9.72	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3524	142	128	6.38	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3525	142	129	11.24	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3526	142	130	6.86	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3527	142	131	7.55	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3528	142	132	17.96	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3529	142	133	7.16	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3530	142	134	9.58	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3531	142	135	18.26	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3532	142	136	7.70	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3533	142	137	10.20	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3534	142	138	8.62	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3535	142	139	7.61	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3536	142	140	14.88	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3537	142	141	6.68	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3538	142	142	16.70	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3539	142	143	11.24	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3540	142	144	11.22	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3541	142	145	11.98	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3542	142	146	11.36	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3543	142	147	8.64	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3544	142	148	5.54	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3545	142	149	10.56	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3546	142	150	6.89	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3547	143	124	9.30	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3548	143	125	5.27	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3549	143	126	11.86	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3550	143	127	13.00	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3551	143	128	15.82	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3552	143	129	9.68	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3553	143	130	11.88	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3554	143	131	11.60	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3555	143	132	13.24	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3556	143	133	2.00	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3557	143	134	8.58	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3558	143	135	13.56	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3559	143	136	12.64	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3560	143	137	13.84	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3561	143	138	10.78	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3562	143	139	6.74	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3563	143	140	2.90	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3564	143	141	5.96	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3565	143	142	6.77	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3566	143	143	13.62	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3567	143	144	13.84	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3568	143	145	9.62	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3569	143	146	11.92	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3570	143	147	5.90	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3571	143	148	17.96	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3572	143	149	15.92	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3573	143	150	19.88	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3574	144	124	7.07	\N	2026-05-12 20:23:00	2026-05-12 20:23:00
3575	144	125	15.48	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3576	144	126	5.69	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3577	144	127	14.96	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3578	144	128	7.55	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3579	144	129	11.84	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3580	144	130	12.54	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3581	144	131	11.68	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3582	144	132	10.50	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3583	144	133	17.50	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3584	144	134	14.00	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3585	144	135	10.16	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3586	144	136	9.90	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3587	144	137	13.80	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3588	144	138	11.14	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3589	144	139	10.22	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3590	144	140	8.30	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3591	144	141	14.40	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3592	144	142	14.54	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3593	144	143	11.94	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3594	144	144	9.70	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3595	144	145	15.40	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3596	144	146	9.96	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3597	144	147	11.64	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3598	144	148	11.48	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3599	144	149	12.82	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3600	144	150	10.24	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3601	145	151	16.92	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3602	145	152	10.82	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3603	145	153	11.44	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3604	145	154	9.94	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3605	145	155	13.78	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3606	145	156	12.12	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3607	145	157	13.94	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3608	145	158	14.62	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3609	145	159	6.62	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3610	145	160	17.44	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3611	145	161	16.18	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3612	145	162	10.28	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3613	145	163	11.88	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3614	145	164	8.80	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3615	145	165	11.08	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3616	145	166	15.10	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3617	145	167	12.70	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3618	145	168	7.76	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3619	145	169	11.30	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3620	145	170	11.40	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3621	145	171	8.26	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3622	145	172	14.92	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3623	145	173	11.62	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3624	145	174	8.76	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3625	145	175	6.74	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3626	145	176	9.00	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3627	145	177	14.66	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3628	145	178	10.76	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3629	145	179	11.08	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3630	146	151	16.00	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3631	146	152	5.75	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3632	146	153	3.10	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3633	146	154	8.06	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3634	146	155	8.34	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3635	146	156	8.54	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3636	146	157	6.26	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3637	146	158	15.52	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3638	146	159	10.44	\N	2026-05-12 20:23:01	2026-05-12 20:23:01
3639	146	160	14.34	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3640	146	161	15.10	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3641	146	162	1.00	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3642	146	163	14.48	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3643	146	164	2.95	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3644	146	165	8.92	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3645	146	166	13.60	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3646	146	167	12.38	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3647	146	168	10.30	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3648	146	169	13.20	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3649	146	170	8.72	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3650	146	171	13.78	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3651	146	172	5.00	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3652	146	173	13.40	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3653	146	174	11.96	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3654	146	175	8.48	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3655	146	176	8.12	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3656	146	177	13.14	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3657	146	178	15.00	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3658	146	179	13.46	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3659	147	151	8.14	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3660	147	152	8.76	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3661	147	153	7.61	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3662	147	154	13.98	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3663	147	155	14.02	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3664	147	156	9.02	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3665	147	157	11.84	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3666	147	158	11.60	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3667	147	159	13.60	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3668	147	160	13.20	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3669	147	161	10.82	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3670	147	162	8.52	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3671	147	163	11.86	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3672	147	164	13.42	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3673	147	165	8.98	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3674	147	166	11.72	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3675	147	167	13.42	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3676	147	168	4.35	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3677	147	169	9.20	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3678	147	170	8.02	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3679	147	171	13.42	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3680	147	172	8.58	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3681	147	173	14.86	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3682	147	174	9.24	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3683	147	175	15.74	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3684	147	176	9.28	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3685	147	177	17.20	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3686	147	178	11.24	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3687	147	179	14.26	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3688	148	151	13.18	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3689	148	152	12.10	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3690	148	153	9.42	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3691	148	154	8.54	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3692	148	155	10.14	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3693	148	156	12.26	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3694	148	157	10.68	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3695	148	158	15.72	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3696	148	159	8.06	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3697	148	160	9.84	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3698	148	161	11.98	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3699	148	162	19.00	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3700	148	163	16.54	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3701	148	164	13.64	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3702	148	165	11.38	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3703	148	166	14.78	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3704	148	167	7.55	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3705	148	168	11.78	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3706	148	169	4.35	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3707	148	170	14.54	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3708	148	171	7.25	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3709	148	172	10.06	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3710	148	173	15.76	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3711	148	174	9.50	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3712	148	175	10.12	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3713	148	176	10.32	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3714	148	177	12.40	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3715	148	178	12.78	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3716	148	179	14.48	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3717	149	151	11.16	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3718	149	152	11.46	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3719	149	153	14.44	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3720	149	154	11.76	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3721	149	155	12.56	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3722	149	156	10.44	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3723	149	157	11.24	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3724	149	158	13.24	\N	2026-05-12 20:23:02	2026-05-12 20:23:02
3725	149	159	8.56	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3726	149	160	8.66	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3727	149	161	10.78	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3728	149	162	11.78	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3729	149	163	10.42	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3730	149	164	8.52	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3731	149	165	13.92	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3732	149	166	8.10	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3733	149	167	14.22	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3734	149	168	11.10	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3735	149	169	11.56	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3736	149	170	12.34	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3737	149	171	12.00	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3738	149	172	13.48	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3739	149	173	5.30	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3740	149	174	11.54	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3741	149	175	14.94	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3742	149	176	14.04	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3743	149	177	12.08	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3744	149	178	10.22	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3745	149	179	1.60	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3746	150	151	14.54	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3747	150	152	13.36	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3748	150	153	16.60	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3749	150	154	13.64	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3750	150	155	5.06	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3751	150	156	8.22	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3752	150	157	5.00	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3753	150	158	0.10	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3754	150	159	13.96	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3755	150	160	17.62	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3756	150	161	8.90	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3757	150	162	11.72	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3758	150	163	17.94	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3759	150	164	8.82	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3760	150	165	17.22	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3761	150	166	10.58	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3762	150	167	10.02	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3763	150	168	14.02	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3764	150	169	12.08	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3765	150	170	11.34	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3766	150	171	15.86	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3767	150	172	7.70	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3768	150	173	8.52	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3769	150	174	10.96	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3770	150	175	14.34	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3771	150	176	11.50	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3772	150	177	10.90	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3773	150	178	9.60	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3774	150	179	9.44	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3775	151	151	9.26	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3776	151	152	10.12	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3777	151	153	1.90	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3778	151	154	12.40	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3779	151	155	9.18	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3780	151	156	14.98	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3781	151	157	6.08	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3782	151	158	15.62	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3783	151	159	13.96	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3784	151	160	9.52	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3785	151	161	12.24	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3786	151	162	9.56	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3787	151	163	11.10	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3788	151	164	13.72	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3789	151	165	1.05	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3790	151	166	9.90	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3791	151	167	8.24	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3792	151	168	11.42	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3793	151	169	10.00	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3794	151	170	15.24	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3795	151	171	7.70	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3796	151	172	7.82	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3797	151	173	6.05	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3798	151	174	12.98	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3799	151	175	9.48	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3800	151	176	9.94	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3801	151	177	14.26	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3802	151	178	10.56	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3803	151	179	15.96	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3804	152	151	9.82	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3805	152	152	9.30	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3806	152	153	13.60	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3807	152	154	12.48	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3808	152	155	11.16	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3809	152	156	8.88	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3810	152	157	8.00	\N	2026-05-12 20:23:03	2026-05-12 20:23:03
3811	152	158	11.02	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3812	152	159	6.05	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3813	152	160	8.16	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3814	152	161	9.74	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3815	152	162	13.36	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3816	152	163	10.26	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3817	152	164	9.04	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3818	152	165	18.44	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3819	152	166	11.82	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3820	152	167	11.62	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3821	152	168	17.46	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3822	152	169	13.88	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3823	152	170	11.06	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3824	152	171	11.78	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3825	152	172	11.46	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3826	152	173	18.28	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3827	152	174	13.76	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3828	152	175	8.46	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3829	152	176	8.60	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3830	152	177	9.94	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3831	152	178	7.85	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3832	152	179	8.66	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3833	153	151	10.58	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3834	153	152	13.66	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3835	153	153	10.64	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3836	153	154	15.06	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3837	153	155	17.32	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3838	153	156	12.88	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3839	153	157	8.94	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3840	153	158	8.54	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3841	153	159	1.20	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3842	153	160	8.18	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3843	153	161	11.70	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3844	153	162	13.26	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3845	153	163	11.96	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3846	153	164	19.30	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3847	153	165	13.58	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3848	153	166	10.34	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3849	153	167	12.22	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3850	153	168	13.56	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3851	153	169	5.39	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3852	153	170	12.28	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3853	153	171	12.28	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3854	153	172	10.48	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3855	153	173	7.52	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3856	153	174	8.58	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3857	153	175	14.88	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3858	153	176	8.24	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3859	153	177	19.00	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3860	153	178	10.66	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3861	153	179	12.02	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3862	154	151	11.34	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3863	154	152	11.46	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3864	154	153	15.68	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3865	154	154	9.24	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3866	154	155	11.36	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3867	154	156	13.52	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3868	154	157	8.42	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3869	154	158	6.47	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3870	154	159	15.08	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3871	154	160	6.80	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3872	154	161	6.29	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3873	154	162	9.80	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3874	154	163	6.89	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3875	154	164	16.58	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3876	154	165	16.58	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3877	154	166	13.26	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3878	154	167	13.72	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3879	154	168	8.32	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3880	154	169	9.28	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3881	154	170	8.72	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3882	154	171	10.48	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3883	154	172	8.72	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3884	154	173	11.26	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3885	154	174	5.24	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3886	154	175	12.48	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3887	154	176	10.50	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3888	154	177	11.80	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3889	154	178	15.22	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3890	154	179	8.02	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3891	155	151	3.40	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3892	155	152	4.60	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3893	155	153	3.75	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3894	155	154	10.16	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3895	155	155	10.66	\N	2026-05-12 20:23:04	2026-05-12 20:23:04
3896	155	156	9.68	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3897	155	157	5.18	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3898	155	158	13.14	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3899	155	159	11.50	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3900	155	160	12.08	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3901	155	161	3.80	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3902	155	162	13.10	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3903	155	163	9.62	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3904	155	164	9.92	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3905	155	165	10.88	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3906	155	166	14.96	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3907	155	167	10.32	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3908	155	168	11.14	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3909	155	169	11.82	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3910	155	170	9.44	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3911	155	171	12.18	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3912	155	172	12.68	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3913	155	173	11.16	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3914	155	174	13.70	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3915	155	175	14.76	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3916	155	176	14.08	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3917	155	177	9.96	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3918	155	178	14.52	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3919	155	179	6.35	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3920	156	151	9.54	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3921	156	152	11.76	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3922	156	153	11.46	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3923	156	154	8.12	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3924	156	155	9.96	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3925	156	156	10.28	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3926	156	157	4.35	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3927	156	158	3.00	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3928	156	159	11.02	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3929	156	160	6.20	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3930	156	161	11.66	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3931	156	162	11.08	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3932	156	163	10.42	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3933	156	164	8.42	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3934	156	165	10.86	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3935	156	166	9.24	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3936	156	167	11.54	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3937	156	168	13.76	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3938	156	169	14.10	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3939	156	170	14.82	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3940	156	171	7.55	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3941	156	172	13.04	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3942	156	173	11.38	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3943	156	174	14.60	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3944	156	175	9.50	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3945	156	176	0.25	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3946	156	177	9.48	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3947	156	178	10.46	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3948	156	179	8.34	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3949	157	151	12.26	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3950	157	152	10.62	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3951	157	153	10.92	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3952	157	154	8.82	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3953	157	155	14.48	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3954	157	156	10.80	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3955	157	157	9.70	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3956	157	158	13.52	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3957	157	159	9.88	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3958	157	160	14.86	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3959	157	161	12.40	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3960	157	162	10.92	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3961	157	163	14.98	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3962	157	164	11.20	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3963	157	165	13.58	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3964	157	166	6.80	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3965	157	167	10.58	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3966	157	168	12.36	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3967	157	169	12.64	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3968	157	170	18.88	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3969	157	171	5.00	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3970	157	172	8.64	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3971	157	173	13.72	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3972	157	174	8.50	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3973	157	175	13.34	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3974	157	176	6.83	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3975	157	177	11.14	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3976	157	178	10.72	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3977	157	179	8.46	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3978	158	151	11.02	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3979	158	152	8.62	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3980	158	153	13.32	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3981	158	154	13.88	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3982	158	155	5.72	\N	2026-05-12 20:23:05	2026-05-12 20:23:05
3983	158	156	11.82	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
3984	158	157	10.68	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
3985	158	158	8.72	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
3986	158	159	9.14	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
3987	158	160	12.50	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
3988	158	161	9.74	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
3989	158	162	11.34	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
3990	158	163	11.38	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
3991	158	164	8.14	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
3992	158	165	14.80	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
3993	158	166	16.54	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
3994	158	167	6.92	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
3995	158	168	9.40	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
3996	158	169	16.26	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
3997	158	170	10.54	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
3998	158	171	16.82	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
3999	158	172	10.22	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4000	158	173	8.98	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4001	158	174	8.02	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4002	158	175	4.40	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4003	158	176	11.56	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4004	158	177	10.40	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4005	158	178	16.30	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4006	158	179	16.24	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4007	159	151	9.66	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4008	159	152	10.30	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4009	159	153	10.42	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4010	159	154	6.32	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4011	159	155	5.24	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4012	159	156	11.54	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4013	159	157	12.44	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4014	159	158	8.04	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4015	159	159	11.94	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4016	159	160	10.80	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4017	159	161	8.32	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4018	159	162	9.38	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4019	159	163	0.60	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4020	159	164	9.60	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4021	159	165	11.80	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4022	159	166	10.88	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4023	159	167	14.60	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4024	159	168	10.28	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4025	159	169	9.02	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4026	159	170	9.38	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4027	159	171	8.08	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4028	159	172	13.76	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4029	159	173	14.40	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4030	159	174	14.94	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4031	159	175	11.86	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4032	159	176	17.16	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4033	159	177	15.82	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4034	159	178	19.36	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4035	159	179	13.22	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4036	160	151	11.70	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4037	160	152	6.68	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4038	160	153	12.32	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4039	160	154	8.08	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4040	160	155	12.24	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4041	160	156	13.08	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4042	160	157	9.02	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4043	160	158	5.63	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4044	160	159	10.76	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4045	160	160	14.86	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4046	160	161	8.14	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4047	160	162	11.88	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4048	160	163	12.86	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4049	160	164	11.32	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4050	160	165	14.44	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4051	160	166	5.60	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4052	160	167	9.96	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4053	160	168	11.52	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4054	160	169	7.22	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4055	160	170	5.12	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4056	160	171	13.28	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4057	160	172	10.96	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4058	160	173	9.12	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4059	160	174	13.76	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4060	160	175	8.90	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4061	160	176	12.72	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4062	160	177	7.13	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4063	160	178	18.86	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4064	160	179	13.06	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4065	161	151	11.68	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4066	161	152	8.48	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4067	161	153	2.60	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4068	161	154	9.64	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4069	161	155	14.30	\N	2026-05-12 20:23:06	2026-05-12 20:23:06
4070	161	156	13.22	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4071	161	157	7.49	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4072	161	158	9.96	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4073	161	159	17.14	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4074	161	160	12.60	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4075	161	161	13.40	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4076	161	162	9.60	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4077	161	163	13.46	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4078	161	164	9.66	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4079	161	165	11.30	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4080	161	166	13.28	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4081	161	167	9.66	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4082	161	168	10.68	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4083	161	169	5.39	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4084	161	170	11.50	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4085	161	171	12.96	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4086	161	172	11.50	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4087	161	173	11.38	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4088	161	174	11.62	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4089	161	175	9.82	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4090	161	176	17.32	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4091	161	177	9.30	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4092	161	178	10.28	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4093	161	179	19.54	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4094	162	151	7.46	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4095	162	152	10.70	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4096	162	153	8.52	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4097	162	154	11.36	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4098	162	155	11.68	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4099	162	156	15.22	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4100	162	157	8.66	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4101	162	158	13.38	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4102	162	159	6.89	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4103	162	160	12.72	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4104	162	161	9.80	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4105	162	162	17.98	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4106	162	163	13.10	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4107	162	164	10.52	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4108	162	165	8.22	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4109	162	166	18.86	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4110	162	167	18.68	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4111	162	168	13.32	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4112	162	169	9.06	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4113	162	170	14.02	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4114	162	171	11.12	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4115	162	172	12.82	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4116	162	173	12.96	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4117	162	174	15.06	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4118	162	175	13.88	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4119	162	176	12.98	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4120	162	177	11.78	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4121	162	178	14.98	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4122	162	179	5.84	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4123	163	151	10.74	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4124	163	152	9.20	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4125	163	153	12.94	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4126	163	154	12.98	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4127	163	155	10.84	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4128	163	156	19.26	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4129	163	157	17.64	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4130	163	158	9.86	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4131	163	159	10.00	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4132	163	160	9.40	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4133	163	161	17.52	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4134	163	162	7.04	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4135	163	163	8.44	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4136	163	164	10.58	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4137	163	165	11.52	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4138	163	166	13.06	\N	2026-05-12 20:23:07	2026-05-12 20:23:07
4139	163	167	13.76	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4140	163	168	11.06	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4141	163	169	5.93	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4142	163	170	10.06	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4143	163	171	8.64	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4144	163	172	12.14	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4145	163	173	17.16	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4146	163	174	14.68	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4147	163	175	16.54	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4148	163	176	12.12	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4149	163	177	3.45	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4150	163	178	13.44	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4151	163	179	12.22	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4152	164	151	10.90	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4153	164	152	17.50	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4154	164	153	0.05	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4155	164	154	10.14	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4156	164	155	17.76	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4157	164	156	9.04	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4158	164	157	17.56	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4159	164	158	16.52	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4160	164	159	12.36	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4161	164	160	13.54	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4162	164	161	11.04	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4163	164	162	11.86	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4164	164	163	13.36	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4165	164	164	9.44	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4166	164	165	5.09	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4167	164	166	13.76	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4168	164	167	13.80	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4169	164	168	12.40	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4170	164	169	11.42	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4171	164	170	9.98	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4172	164	171	11.02	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4173	164	172	11.96	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4174	164	173	15.50	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4175	164	174	12.44	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4176	164	175	1.90	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4177	164	176	14.24	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4178	164	177	10.72	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4179	164	178	9.10	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4180	164	179	12.00	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4181	165	151	11.54	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4182	165	152	15.14	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4183	165	153	12.92	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4184	165	154	10.80	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4185	165	155	14.68	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4186	165	156	10.40	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4187	165	157	13.22	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4188	165	158	15.82	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4189	165	159	7.19	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4190	165	160	12.84	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4191	165	161	6.20	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4192	165	162	12.06	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4193	165	163	7.49	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4194	165	164	8.56	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4195	165	165	11.48	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4196	165	166	10.00	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4197	165	167	7.01	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4198	165	168	9.78	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4199	165	169	13.26	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4200	165	170	8.52	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4201	165	171	6.98	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4202	165	172	6.65	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4203	165	173	13.48	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4204	165	174	10.28	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4205	165	175	9.50	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4206	165	176	10.70	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4207	165	177	15.68	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4208	165	178	8.58	\N	2026-05-12 20:23:08	2026-05-12 20:23:08
4209	165	179	6.44	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4210	166	151	15.60	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4211	166	152	14.16	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4212	166	153	13.40	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4213	166	154	8.90	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4214	166	155	12.36	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4215	166	156	13.56	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4216	166	157	10.32	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4217	166	158	10.02	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4218	166	159	9.40	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4219	166	160	14.08	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4220	166	161	11.68	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4221	166	162	11.28	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4222	166	163	14.96	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4223	166	164	16.06	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4224	166	165	10.08	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4225	166	166	11.72	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4226	166	167	6.89	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4227	166	168	1.35	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4228	166	169	3.45	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4229	166	170	11.94	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4230	166	171	10.66	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4231	166	172	19.00	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4232	166	173	11.64	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4233	166	174	18.36	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4234	166	175	13.90	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4235	166	176	10.82	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4236	166	177	12.36	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4237	166	178	7.28	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4238	166	179	17.42	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4239	167	151	11.68	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4240	167	152	15.14	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4241	167	153	13.12	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4242	167	154	9.10	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4243	167	155	11.56	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4244	167	156	16.78	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4245	167	157	11.12	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4246	167	158	10.96	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4247	167	159	12.86	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4248	167	160	17.88	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4249	167	161	3.35	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4250	167	162	14.14	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4251	167	163	12.16	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4252	167	164	10.68	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4253	167	165	8.46	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4254	167	166	11.32	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4255	167	167	15.54	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4256	167	168	9.86	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4257	167	169	13.44	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4258	167	170	10.32	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4259	167	171	8.42	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4260	167	172	10.02	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4261	167	173	13.16	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4262	167	174	8.42	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4263	167	175	12.18	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4264	167	176	5.12	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4265	167	177	12.94	\N	2026-05-12 20:23:09	2026-05-12 20:23:09
4266	167	178	8.64	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4267	167	179	10.50	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4268	168	151	9.56	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4269	168	152	11.10	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4270	168	153	14.90	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4271	168	154	10.02	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4272	168	155	17.90	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4273	168	156	11.44	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4274	168	157	10.82	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4275	168	158	11.86	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4276	168	159	11.40	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4277	168	160	8.86	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4278	168	161	14.64	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4279	168	162	16.14	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4280	168	163	14.18	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4281	168	164	11.54	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4282	168	165	10.20	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4283	168	166	14.22	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4284	168	167	11.12	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4285	168	168	11.12	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4286	168	169	5.54	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4287	168	170	5.57	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4288	168	171	12.32	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4289	168	172	5.39	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4290	168	173	10.68	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4291	168	174	8.98	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4292	168	175	9.42	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4293	168	176	9.10	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4294	168	177	11.48	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4295	168	178	14.82	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4296	168	179	13.70	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4297	169	180	11.80	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4298	169	181	12.22	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4299	169	182	9.78	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4300	169	183	10.72	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4301	169	184	13.90	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4302	169	185	13.54	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4303	169	186	15.44	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4304	169	187	12.08	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4305	169	188	14.20	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4306	169	189	14.76	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4307	169	190	8.06	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4308	169	191	1.60	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4309	169	192	13.58	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4310	169	193	8.94	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4311	169	194	17.04	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4312	169	195	12.22	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4313	169	196	8.30	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4314	169	197	10.08	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4315	169	198	6.74	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4316	169	199	9.66	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4317	169	200	8.16	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4318	169	201	13.82	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4319	169	202	13.14	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4320	169	203	10.64	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4321	169	204	14.50	\N	2026-05-12 20:23:10	2026-05-12 20:23:10
4322	169	205	13.72	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4323	170	180	8.14	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4324	170	181	11.88	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4325	170	182	9.96	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4326	170	183	10.16	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4327	170	184	8.40	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4328	170	185	1.05	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4329	170	186	1.85	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4330	170	187	8.74	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4331	170	188	16.02	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4332	170	189	13.48	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4333	170	190	11.68	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4334	170	191	16.76	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4335	170	192	10.16	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4336	170	193	12.92	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4337	170	194	1.20	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4338	170	195	8.34	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4339	170	196	11.60	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4340	170	197	4.95	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4341	170	198	10.64	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4342	170	199	4.15	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4343	170	200	10.00	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4344	170	201	8.92	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4345	170	202	14.18	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4346	170	203	9.68	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4347	170	204	9.50	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4348	170	205	12.78	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4349	171	180	15.00	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4350	171	181	10.28	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4351	171	182	9.54	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4352	171	183	13.40	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4353	171	184	13.46	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4354	171	185	11.90	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4355	171	186	8.24	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4356	171	187	11.82	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4357	171	188	8.04	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4358	171	189	13.06	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4359	171	190	15.88	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4360	171	191	17.52	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4361	171	192	10.24	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4362	171	193	14.80	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4363	171	194	19.46	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4364	171	195	10.82	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4365	171	196	12.24	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4366	171	197	8.92	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4367	171	198	13.96	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4368	171	199	16.48	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4369	171	200	7.16	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4370	171	201	12.74	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4371	171	202	12.50	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4372	171	203	19.66	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4373	171	204	18.00	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4374	171	205	7.91	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4375	172	180	15.38	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4376	172	181	5.00	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4377	172	182	10.34	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4378	172	183	19.36	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4379	172	184	9.86	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4380	172	185	13.52	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4381	172	186	11.78	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4382	172	187	10.38	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4383	172	188	11.34	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4384	172	189	9.58	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4385	172	190	9.02	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4386	172	191	14.18	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4387	172	192	12.08	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4388	172	193	15.98	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4389	172	194	14.76	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4390	172	195	9.58	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4391	172	196	13.44	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4392	172	197	13.78	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4393	172	198	10.12	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4394	172	199	7.61	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4395	172	200	8.84	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4396	172	201	18.52	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4397	172	202	12.96	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4398	172	203	11.10	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4399	172	204	9.18	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4400	172	205	7.61	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4401	173	180	12.90	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4402	173	181	11.52	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4403	173	182	14.30	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4404	173	183	18.14	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4405	173	184	6.02	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4406	173	185	7.64	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4407	173	186	10.60	\N	2026-05-12 20:23:11	2026-05-12 20:23:11
4408	173	187	15.74	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4409	173	188	17.52	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4410	173	189	11.76	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4411	173	190	10.06	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4412	173	191	10.48	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4413	173	192	6.71	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4414	173	193	8.68	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4415	173	194	13.62	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4416	173	195	11.60	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4417	173	196	13.40	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4418	173	197	10.88	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4419	173	198	9.74	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4420	173	199	12.80	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4421	173	200	9.70	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4422	173	201	12.26	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4423	173	202	6.02	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4424	173	203	13.64	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4425	173	204	8.30	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4426	173	205	5.72	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4427	174	180	8.42	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4428	174	181	16.60	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4429	174	182	10.16	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4430	174	183	14.90	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4431	174	184	9.10	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4432	174	185	9.92	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4433	174	186	5.36	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4434	174	187	15.70	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4435	174	188	9.20	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4436	174	189	13.20	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4437	174	190	12.28	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4438	174	191	5.45	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4439	174	192	8.06	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4440	174	193	11.96	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4441	174	194	17.54	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4442	174	195	12.60	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4443	174	196	5.69	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4444	174	197	1.15	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4445	174	198	10.40	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4446	174	199	10.48	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4447	174	200	9.30	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4448	174	201	10.30	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4449	174	202	8.56	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4450	174	203	12.64	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4451	174	204	17.08	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4452	174	205	14.62	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4453	175	180	7.10	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4454	175	181	8.46	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4455	175	182	14.60	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4456	175	183	5.57	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4457	175	184	8.80	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4458	175	185	13.04	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4459	175	186	10.12	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4460	175	187	13.44	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4461	175	188	11.76	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4462	175	189	11.72	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4463	175	190	5.18	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4464	175	191	0.30	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4465	175	192	16.68	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4466	175	193	12.90	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4467	175	194	13.52	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4468	175	195	16.58	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4469	175	196	8.10	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4470	175	197	11.24	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4471	175	198	11.44	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4472	175	199	10.46	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4473	175	200	11.30	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4474	175	201	10.90	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4475	175	202	8.22	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4476	175	203	15.18	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4477	175	204	19.94	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4478	175	205	8.28	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4479	176	180	13.22	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4480	176	181	15.10	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4481	176	182	8.30	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4482	176	183	14.68	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4483	176	184	10.24	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4484	176	185	15.42	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4485	176	186	13.60	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4486	176	187	14.18	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4487	176	188	9.66	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4488	176	189	1.90	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4489	176	190	9.76	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4490	176	191	11.38	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4491	176	192	11.24	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4492	176	193	12.70	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4493	176	194	6.95	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4494	176	195	18.70	\N	2026-05-12 20:23:12	2026-05-12 20:23:12
4495	176	196	13.88	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4496	176	197	14.38	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4497	176	198	9.38	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4498	176	199	6.29	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4499	176	200	8.52	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4500	176	201	19.54	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4501	176	202	12.18	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4502	176	203	13.52	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4503	176	204	13.64	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4504	176	205	9.88	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4505	177	180	8.78	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4506	177	181	11.78	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4507	177	182	15.68	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4508	177	183	8.36	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4509	177	184	15.72	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4510	177	185	10.42	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4511	177	186	13.62	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4512	177	187	13.62	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4513	177	188	15.22	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4514	177	189	11.74	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4515	177	190	13.72	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4516	177	191	10.28	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4517	177	192	12.48	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4518	177	193	14.84	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4519	177	194	5.81	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4520	177	195	11.98	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4521	177	196	8.58	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4522	177	197	1.75	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4523	177	198	16.04	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4524	177	199	12.90	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4525	177	200	10.00	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4526	177	201	13.28	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4527	177	202	7.13	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4528	177	203	14.84	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4529	177	204	15.24	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4530	177	205	10.84	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4531	178	180	13.62	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4532	178	181	5.42	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4533	178	182	7.97	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4534	178	183	6.89	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4535	178	184	13.76	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4536	178	185	10.48	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4537	178	186	12.38	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4538	178	187	7.25	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4539	178	188	3.35	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4540	178	189	8.92	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4541	178	190	8.10	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4542	178	191	7.25	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4543	178	192	7.01	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4544	178	193	11.00	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4545	178	194	9.52	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4546	178	195	16.82	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4547	178	196	12.98	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4548	178	197	19.86	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4549	178	198	5.03	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4550	178	199	11.62	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4551	178	200	13.84	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4552	178	201	14.98	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4553	178	202	11.02	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4554	178	203	13.82	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4555	178	204	8.70	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4556	178	205	6.20	\N	2026-05-12 20:23:13	2026-05-12 20:23:13
4557	179	180	13.58	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4558	179	181	11.32	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4559	179	182	10.00	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4560	179	183	8.62	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4561	179	184	8.10	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4562	179	185	11.38	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4563	179	186	12.24	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4564	179	187	14.58	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4565	179	188	15.82	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4566	179	189	10.34	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4567	179	190	11.84	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4568	179	191	10.48	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4569	179	192	15.12	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4570	179	193	6.95	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4571	179	194	19.82	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4572	179	195	14.96	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4573	179	196	9.46	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4574	179	197	12.94	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4575	179	198	5.09	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4576	179	199	10.88	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4577	179	200	9.32	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4578	179	201	12.28	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4579	179	202	9.98	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4580	179	203	10.48	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4581	179	204	12.96	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4582	179	205	11.18	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4583	180	180	16.24	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4584	180	181	9.56	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4585	180	182	12.02	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4586	180	183	18.50	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4587	180	184	13.86	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4588	180	185	9.58	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4589	180	186	11.36	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4590	180	187	13.02	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4591	180	188	2.10	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4592	180	189	14.84	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4593	180	190	14.70	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4594	180	191	14.08	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4595	180	192	9.66	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4596	180	193	13.88	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4597	180	194	10.40	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4598	180	195	17.32	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4599	180	196	12.70	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4600	180	197	11.02	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4601	180	198	5.27	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4602	180	199	4.05	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4603	180	200	12.90	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4604	180	201	8.56	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4605	180	202	12.84	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4606	180	203	15.10	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4607	180	204	6.05	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4608	180	205	10.96	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4609	181	180	11.38	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4610	181	181	16.00	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4611	181	182	8.04	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4612	181	183	12.12	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4613	181	184	11.74	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4614	181	185	9.18	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4615	181	186	9.98	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4616	181	187	9.94	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4617	181	188	14.94	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4618	181	189	9.86	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4619	181	190	10.34	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4620	181	191	11.40	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4621	181	192	11.92	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4622	181	193	11.30	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4623	181	194	1.95	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4624	181	195	9.40	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4625	181	196	8.20	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4626	181	197	7.10	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4627	181	198	14.96	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4628	181	199	9.92	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4629	181	200	1.65	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4630	181	201	15.96	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4631	181	202	11.82	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4632	181	203	16.18	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4633	181	204	5.18	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4634	181	205	13.78	\N	2026-05-12 20:23:14	2026-05-12 20:23:14
4635	182	180	17.90	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4636	182	181	11.76	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4637	182	182	5.09	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4638	182	183	6.47	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4639	182	184	9.66	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4640	182	185	15.32	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4641	182	186	17.58	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4642	182	187	11.74	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4643	182	188	9.64	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4644	182	189	1.40	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4645	182	190	17.00	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4646	182	191	8.94	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4647	182	192	13.46	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4648	182	193	8.80	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4649	182	194	8.70	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4650	182	195	11.66	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4651	182	196	9.74	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4652	182	197	18.18	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4653	182	198	17.88	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4654	182	199	11.00	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4655	182	200	8.64	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4656	182	201	8.40	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4657	182	202	15.50	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4658	182	203	16.76	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4659	182	204	11.22	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4660	182	205	8.08	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4661	183	180	11.68	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4662	183	181	4.20	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4663	183	182	1.50	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4664	183	183	5.21	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4665	183	184	13.38	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4666	183	185	5.30	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4667	183	186	19.84	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4668	183	187	8.20	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4669	183	188	10.64	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4670	183	189	8.24	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4671	183	190	10.86	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4672	183	191	8.82	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4673	183	192	11.22	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4674	183	193	10.90	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4675	183	194	13.86	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4676	183	195	11.36	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4677	183	196	10.96	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4678	183	197	3.45	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4679	183	198	9.70	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4680	183	199	15.12	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4681	183	200	8.84	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4682	183	201	9.38	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4683	183	202	12.14	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4684	183	203	12.46	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4685	183	204	9.64	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4686	183	205	18.38	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4687	184	180	10.04	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4688	184	181	13.22	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4689	184	182	0.20	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4690	184	183	6.95	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4691	184	184	15.68	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4692	184	185	13.66	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4693	184	186	6.68	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4694	184	187	8.86	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4695	184	188	15.26	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4696	184	189	1.60	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4697	184	190	5.03	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4698	184	191	10.36	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4699	184	192	11.52	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4700	184	193	11.80	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4701	184	194	13.26	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4702	184	195	5.69	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4703	184	196	7.01	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4704	184	197	14.14	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4705	184	198	14.84	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4706	184	199	12.22	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4707	184	200	13.10	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4708	184	201	10.76	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4709	184	202	8.98	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4710	184	203	10.84	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4711	184	204	9.86	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4712	184	205	13.72	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4713	185	180	13.28	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4714	185	181	12.72	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4715	185	182	12.70	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4716	185	183	12.82	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4717	185	184	12.00	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4718	185	185	10.22	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4719	185	186	11.46	\N	2026-05-12 20:23:15	2026-05-12 20:23:15
4720	185	187	8.56	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4721	185	188	11.88	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4722	185	189	11.62	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4723	185	190	10.92	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4724	185	191	13.92	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4725	185	192	12.12	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4726	185	193	8.40	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4727	185	194	11.76	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4728	185	195	9.64	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4729	185	196	9.44	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4730	185	197	13.40	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4731	185	198	10.68	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4732	185	199	12.10	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4733	185	200	12.28	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4734	185	201	14.60	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4735	185	202	14.44	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4736	185	203	13.50	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4737	185	204	11.68	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4738	185	205	11.24	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4739	186	180	14.12	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4740	186	181	14.88	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4741	186	182	12.68	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4742	186	183	7.70	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4743	186	184	12.04	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4744	186	185	11.94	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4745	186	186	10.10	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4746	186	187	12.78	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4747	186	188	14.82	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4748	186	189	13.26	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4749	186	190	9.20	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4750	186	191	7.55	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4751	186	192	12.70	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4752	186	193	10.28	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4753	186	194	6.62	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4754	186	195	16.96	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4755	186	196	8.28	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4756	186	197	11.76	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4757	186	198	9.54	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4758	186	199	11.60	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4759	186	200	15.06	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4760	186	201	13.80	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4761	186	202	11.00	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4762	186	203	7.85	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4763	186	204	8.42	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4764	186	205	10.54	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4765	187	180	8.88	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4766	187	181	11.52	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4767	187	182	10.04	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4768	187	183	12.52	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4769	187	184	13.12	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4770	187	185	15.08	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4771	187	186	17.92	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4772	187	187	11.64	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4773	187	188	12.72	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4774	187	189	13.10	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4775	187	190	8.00	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4776	187	191	4.20	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4777	187	192	14.80	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4778	187	193	9.28	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4779	187	194	9.68	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4780	187	195	12.72	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4781	187	196	5.18	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4782	187	197	8.08	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4783	187	198	2.45	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4784	187	199	13.38	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4785	187	200	12.60	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4786	187	201	17.88	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4787	187	202	5.72	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4788	187	203	13.62	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4789	187	204	10.60	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4790	187	205	2.20	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4791	188	180	5.12	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4792	188	181	12.84	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4793	188	182	14.64	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4794	188	183	13.68	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4795	188	184	13.28	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4796	188	185	14.80	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4797	188	186	10.26	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4798	188	187	10.92	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4799	188	188	8.32	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4800	188	189	11.84	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4801	188	190	10.74	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4802	188	191	11.44	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4803	188	192	10.52	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4804	188	193	13.26	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4805	188	194	10.82	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4806	188	195	13.02	\N	2026-05-12 20:23:16	2026-05-12 20:23:16
4807	188	196	13.34	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4808	188	197	14.28	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4809	188	198	14.90	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4810	188	199	8.64	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4811	188	200	14.94	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4812	188	201	13.64	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4813	188	202	14.60	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4814	188	203	5.78	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4815	188	204	13.12	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4816	188	205	5.33	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4817	189	180	12.00	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4818	189	181	8.70	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4819	189	182	12.76	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4820	189	183	15.50	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4821	189	184	8.04	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4822	189	185	10.50	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4823	189	186	14.66	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4824	189	187	8.16	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4825	189	188	0.85	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4826	189	189	15.68	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4827	189	190	14.12	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4828	189	191	17.40	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4829	189	192	17.64	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4830	189	193	16.04	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4831	189	194	5.12	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4832	189	195	10.04	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4833	189	196	13.18	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4834	189	197	8.74	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4835	189	198	7.07	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4836	189	199	17.82	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4837	189	200	8.76	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4838	189	201	5.87	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4839	189	202	17.62	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4840	189	203	9.62	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4841	189	204	9.80	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4842	189	205	17.84	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4843	190	180	11.82	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4844	190	181	11.40	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4845	190	182	11.40	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4846	190	183	8.72	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4847	190	184	11.12	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4848	190	185	5.21	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4849	190	186	10.62	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4850	190	187	11.78	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4851	190	188	13.86	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4852	190	189	11.84	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4853	190	190	11.32	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4854	190	191	11.96	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4855	190	192	12.20	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4856	190	193	12.08	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4857	190	194	9.92	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4858	190	195	15.34	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4859	190	196	14.50	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4860	190	197	12.86	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4861	190	198	14.62	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4862	190	199	15.90	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4863	190	200	13.56	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4864	190	201	9.40	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4865	190	202	19.08	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4866	190	203	15.46	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4867	190	204	6.77	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4868	190	205	4.60	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4869	191	180	8.84	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4870	191	181	12.40	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4871	191	182	13.90	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4872	191	183	9.18	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4873	191	184	11.08	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4874	191	185	15.24	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4875	191	186	11.76	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4876	191	187	2.95	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4877	191	188	9.28	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4878	191	189	10.80	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4879	191	190	7.67	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4880	191	191	15.16	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4881	191	192	10.02	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4882	191	193	9.84	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4883	191	194	12.42	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4884	191	195	10.20	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4885	191	196	10.08	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4886	191	197	13.10	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4887	191	198	9.80	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4888	191	199	11.56	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4889	191	200	13.82	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4890	191	201	14.32	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4891	191	202	15.50	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4892	191	203	11.50	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4893	191	204	17.52	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4894	191	205	8.90	\N	2026-05-12 20:23:17	2026-05-12 20:23:17
4895	192	180	12.80	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4896	192	181	2.20	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4897	192	182	6.68	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4898	192	183	9.56	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4899	192	184	14.50	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4900	192	185	9.16	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4901	192	186	12.68	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4902	192	187	12.56	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4903	192	188	9.02	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4904	192	189	14.42	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4905	192	190	10.16	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4906	192	191	5.00	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4907	192	192	11.82	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4908	192	193	13.60	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4909	192	194	9.24	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4910	192	195	13.86	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4911	192	196	15.62	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4912	192	197	14.00	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4913	192	198	5.09	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4914	192	199	14.70	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4915	192	200	8.28	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4916	192	201	6.26	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4917	192	202	13.08	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4918	192	203	12.00	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4919	192	204	10.46	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4920	192	205	8.94	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4921	193	206	8.38	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4922	193	207	10.62	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4923	193	208	11.40	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4924	193	209	14.84	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4925	193	210	14.08	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4926	193	211	9.92	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4927	193	212	14.76	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4928	193	213	14.10	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4929	193	214	19.56	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4930	193	215	15.44	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4931	193	216	11.34	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4932	193	217	5.45	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4933	193	218	17.22	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4934	193	219	11.64	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4935	193	220	10.28	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4936	193	221	8.74	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4937	193	222	9.02	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4938	193	223	11.30	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4939	193	224	8.66	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4940	193	225	12.38	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4941	193	226	12.90	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4942	193	227	5.51	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4943	193	228	17.04	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4944	193	229	17.02	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4945	193	230	15.48	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4946	193	231	13.20	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4947	194	206	12.16	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4948	194	207	15.80	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4949	194	208	15.18	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4950	194	209	19.70	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4951	194	210	13.34	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4952	194	211	11.10	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4953	194	212	5.60	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4954	194	213	16.48	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4955	194	214	10.12	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4956	194	215	11.34	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4957	194	216	12.12	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4958	194	217	14.08	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4959	194	218	13.88	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4960	194	219	13.94	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4961	194	220	12.12	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4962	194	221	10.82	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4963	194	222	11.88	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4964	194	223	9.86	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4965	194	224	8.38	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4966	194	225	1.30	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4967	194	226	2.65	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4968	194	227	13.56	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4969	194	228	8.04	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4970	194	229	7.94	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4971	194	230	11.94	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4972	194	231	17.72	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4973	195	206	8.78	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4974	195	207	12.20	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4975	195	208	10.02	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4976	195	209	8.96	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4977	195	210	5.96	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4978	195	211	11.32	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4979	195	212	16.38	\N	2026-05-12 20:23:18	2026-05-12 20:23:18
4980	195	213	11.20	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4981	195	214	15.46	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4982	195	215	10.48	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4983	195	216	5.45	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4984	195	217	7.79	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4985	195	218	12.60	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4986	195	219	10.58	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4987	195	220	9.64	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4988	195	221	12.26	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4989	195	222	11.38	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4990	195	223	12.84	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4991	195	224	12.10	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4992	195	225	15.08	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4993	195	226	14.72	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4994	195	227	9.10	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4995	195	228	12.52	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4996	195	229	8.34	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4997	195	230	8.72	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4998	195	231	9.52	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
4999	196	206	7.46	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5000	196	207	9.78	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5001	196	208	16.84	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5002	196	209	10.60	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5003	196	210	13.24	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5004	196	211	11.44	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5005	196	212	16.04	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5006	196	213	16.74	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5007	196	214	13.20	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5008	196	215	11.64	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5009	196	216	11.00	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5010	196	217	14.28	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5011	196	218	8.88	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5012	196	219	17.40	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5013	196	220	1.45	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5014	196	221	11.44	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5015	196	222	13.24	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5016	196	223	16.08	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5017	196	224	16.00	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5018	196	225	15.10	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5019	196	226	6.32	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5020	196	227	8.74	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5021	196	228	9.60	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5022	196	229	5.48	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5023	196	230	12.92	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5024	196	231	12.00	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5025	197	206	15.70	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5026	197	207	10.82	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5027	197	208	5.84	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5028	197	209	9.18	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5029	197	210	17.70	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5030	197	211	10.52	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5031	197	212	11.10	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5032	197	213	12.36	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5033	197	214	11.80	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5034	197	215	3.90	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5035	197	216	10.04	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5036	197	217	12.12	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5037	197	218	9.12	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5038	197	219	13.14	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5039	197	220	15.70	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5040	197	221	11.52	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5041	197	222	11.02	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5042	197	223	7.61	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5043	197	224	13.74	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5044	197	225	15.22	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5045	197	226	10.36	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5046	197	227	12.70	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5047	197	228	16.48	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5048	197	229	9.22	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5049	197	230	13.36	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5050	197	231	14.68	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5051	198	206	17.46	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5052	198	207	14.64	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5053	198	208	8.38	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5054	198	209	16.36	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5055	198	210	11.20	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5056	198	211	12.00	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5057	198	212	13.70	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5058	198	213	9.08	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5059	198	214	16.74	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5060	198	215	14.34	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5061	198	216	10.50	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5062	198	217	6.41	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5063	198	218	9.04	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5064	198	219	13.00	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5065	198	220	4.55	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5066	198	221	9.48	\N	2026-05-12 20:23:19	2026-05-12 20:23:19
5067	198	222	11.46	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5068	198	223	11.84	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5069	198	224	10.00	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5070	198	225	11.40	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5071	198	226	8.76	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5072	198	227	12.06	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5073	198	228	10.66	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5074	198	229	11.70	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5075	198	230	16.86	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5076	198	231	2.30	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5077	199	206	12.48	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5078	199	207	19.64	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5079	199	208	16.28	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5080	199	209	14.52	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5081	199	210	1.55	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5082	199	211	12.32	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5083	199	212	11.92	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5084	199	213	13.10	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5085	199	214	8.04	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5086	199	215	9.38	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5087	199	216	10.48	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5088	199	217	8.32	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5089	199	218	16.48	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5090	199	219	11.84	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5091	199	220	19.06	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5092	199	221	6.26	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5093	199	222	10.48	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5094	199	223	9.02	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5095	199	224	12.76	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5096	199	225	12.68	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5097	199	226	10.62	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5098	199	227	12.80	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5099	199	228	10.76	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5100	199	229	14.34	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5101	199	230	10.88	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5102	199	231	10.70	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5103	200	206	13.62	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5104	200	207	10.34	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5105	200	208	19.98	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5106	200	209	13.24	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5107	200	210	10.90	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5108	200	211	7.37	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5109	200	212	13.24	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5110	200	213	15.38	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5111	200	214	14.86	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5112	200	215	13.28	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5113	200	216	4.80	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5114	200	217	8.42	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5115	200	218	2.70	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5116	200	219	9.68	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5117	200	220	12.60	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5118	200	221	13.02	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5119	200	222	9.92	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5120	200	223	10.38	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5121	200	224	11.96	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5122	200	225	9.64	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5123	200	226	12.64	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5124	200	227	10.66	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5125	200	228	12.40	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5126	200	229	14.32	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5127	200	230	8.40	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5128	200	231	1.00	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5129	201	206	8.00	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5130	201	207	8.52	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5131	201	208	1.95	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5132	201	209	12.66	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5133	201	210	12.26	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5134	201	211	15.42	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5135	201	212	6.05	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5136	201	213	10.70	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5137	201	214	11.98	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5138	201	215	8.96	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5139	201	216	15.64	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5140	201	217	10.98	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5141	201	218	15.64	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5142	201	219	15.36	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5143	201	220	12.28	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5144	201	221	15.78	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5145	201	222	12.32	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5146	201	223	7.43	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5147	201	224	0.00	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5148	201	225	11.56	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5149	201	226	7.79	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5150	201	227	16.04	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5151	201	228	15.46	\N	2026-05-12 20:23:20	2026-05-12 20:23:20
5152	201	229	11.14	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5153	201	230	13.54	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5154	201	231	15.62	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5155	202	206	16.28	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5156	202	207	10.30	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5157	202	208	16.66	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5158	202	209	12.22	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5159	202	210	8.68	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5160	202	211	9.84	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5161	202	212	11.74	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5162	202	213	10.02	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5163	202	214	9.80	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5164	202	215	13.24	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5165	202	216	11.68	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5166	202	217	10.48	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5167	202	218	8.94	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5168	202	219	8.26	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5169	202	220	9.44	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5170	202	221	6.92	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5171	202	222	9.72	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5172	202	223	13.34	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5173	202	224	11.18	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5174	202	225	15.26	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5175	202	226	3.35	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5176	202	227	13.50	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5177	202	228	12.84	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5178	202	229	15.66	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5179	202	230	12.00	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5180	202	231	10.90	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5181	203	206	12.44	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5182	203	207	13.88	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5183	203	208	10.96	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5184	203	209	9.48	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5185	203	210	8.88	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5186	203	211	10.48	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5187	203	212	9.68	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5188	203	213	15.54	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5189	203	214	17.24	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5190	203	215	11.58	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5191	203	216	12.10	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5192	203	217	13.96	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5193	203	218	10.06	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5194	203	219	9.18	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5195	203	220	5.72	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5196	203	221	13.04	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5197	203	222	5.00	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5198	203	223	9.38	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5199	203	224	11.08	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5200	203	225	8.14	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5201	203	226	5.48	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5202	203	227	17.58	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5203	203	228	9.94	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5204	203	229	5.24	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5205	203	230	8.78	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5206	203	231	11.50	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5207	204	206	15.08	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5208	204	207	11.30	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5209	204	208	0.05	\N	2026-05-12 20:23:21	2026-05-12 20:23:21
5210	204	209	2.40	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5211	204	210	9.38	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5212	204	211	9.64	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5213	204	212	11.68	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5214	204	213	7.70	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5215	204	214	10.44	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5216	204	215	3.75	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5217	204	216	6.92	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5218	204	217	12.24	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5219	204	218	12.32	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5220	204	219	10.46	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5221	204	220	10.72	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5222	204	221	9.44	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5223	204	222	5.72	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5224	204	223	9.50	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5225	204	224	16.68	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5226	204	225	15.26	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5227	204	226	10.26	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5228	204	227	17.78	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5229	204	228	12.64	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5230	204	229	12.94	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5231	204	230	11.46	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5232	204	231	12.82	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5233	205	206	10.32	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5234	205	207	14.54	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5235	205	208	14.76	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5236	205	209	9.54	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5237	205	210	16.04	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5238	205	211	9.12	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5239	205	212	15.12	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5240	205	213	11.16	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5241	205	214	11.80	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5242	205	215	5.33	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5243	205	216	5.03	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5244	205	217	9.46	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5245	205	218	7.94	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5246	205	219	9.72	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5247	205	220	10.00	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5248	205	221	11.48	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5249	205	222	3.15	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5250	205	223	9.24	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5251	205	224	11.20	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5252	205	225	10.12	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5253	205	226	4.60	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5254	205	227	13.14	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5255	205	228	8.28	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5256	205	229	11.88	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5257	205	230	17.06	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5258	205	231	15.36	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5259	206	206	13.58	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5260	206	207	10.66	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5261	206	208	8.72	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5262	206	209	5.99	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5263	206	210	6.35	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5264	206	211	10.16	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5265	206	212	12.20	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5266	206	213	13.28	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5267	206	214	6.56	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5268	206	215	10.60	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5269	206	216	3.65	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5270	206	217	4.15	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5271	206	218	2.65	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5272	206	219	15.22	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5273	206	220	13.60	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5274	206	221	5.12	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5275	206	222	0.95	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5276	206	223	8.30	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5277	206	224	11.66	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5278	206	225	16.14	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5279	206	226	9.50	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5280	206	227	6.95	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5281	206	228	11.66	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5282	206	229	8.84	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5283	206	230	15.28	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5284	206	231	10.80	\N	2026-05-12 20:23:22	2026-05-12 20:23:22
5285	207	206	8.00	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5286	207	207	12.42	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5287	207	208	15.96	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5288	207	209	19.86	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5289	207	210	12.20	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5290	207	211	10.56	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5291	207	212	9.82	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5292	207	213	10.84	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5293	207	214	10.20	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5294	207	215	8.42	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5295	207	216	15.72	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5296	207	217	13.08	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5297	207	218	19.52	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5298	207	219	9.54	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5299	207	220	9.88	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5300	207	221	9.02	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5301	207	222	10.18	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5302	207	223	12.48	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5303	207	224	12.34	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5304	207	225	8.72	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5305	207	226	8.86	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5306	207	227	15.44	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5307	207	228	13.74	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5308	207	229	14.56	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5309	207	230	15.40	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5310	207	231	11.28	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5311	208	206	1.65	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5312	208	207	9.96	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5313	208	208	14.42	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5314	208	209	11.42	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5315	208	210	10.10	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5316	208	211	0.55	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5317	208	212	16.54	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5318	208	213	11.58	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5319	208	214	10.78	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5320	208	215	14.64	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5321	208	216	12.92	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5322	208	217	10.28	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5323	208	218	14.80	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5324	208	219	11.48	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5325	208	220	10.40	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5326	208	221	10.52	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5327	208	222	17.22	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5328	208	223	11.10	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5329	208	224	16.00	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5330	208	225	13.24	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5331	208	226	10.54	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5332	208	227	8.18	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5333	208	228	11.50	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5334	208	229	11.62	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5335	208	230	19.44	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5336	208	231	16.32	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5337	209	206	13.16	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5338	209	207	10.52	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5339	209	208	11.30	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5340	209	209	16.08	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5341	209	210	14.96	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5342	209	211	16.70	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5343	209	212	5.36	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5344	209	213	15.44	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5345	209	214	15.00	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5346	209	215	8.04	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5347	209	216	10.28	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5348	209	217	12.94	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5349	209	218	12.62	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5350	209	219	14.48	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5351	209	220	5.24	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5352	209	221	5.45	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5353	209	222	13.06	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5354	209	223	13.84	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5355	209	224	19.80	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5356	209	225	14.68	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5357	209	226	11.74	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5358	209	227	13.70	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5359	209	228	10.08	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5360	209	229	9.56	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5361	209	230	8.92	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5362	209	231	13.54	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5363	210	206	5.78	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5364	210	207	8.92	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5365	210	208	3.75	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5366	210	209	7.10	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5367	210	210	8.24	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5368	210	211	11.88	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5369	210	212	13.94	\N	2026-05-12 20:23:23	2026-05-12 20:23:23
5370	210	213	12.70	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5371	210	214	5.93	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5372	210	215	14.36	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5373	210	216	8.92	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5374	210	217	12.08	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5375	210	218	7.16	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5376	210	219	8.42	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5377	210	220	9.22	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5378	210	221	0.25	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5379	210	222	9.18	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5380	210	223	16.78	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5381	210	224	13.74	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5382	210	225	15.90	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5383	210	226	13.70	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5384	210	227	10.52	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5385	210	228	8.80	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5386	210	229	10.22	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5387	210	230	14.00	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5388	210	231	10.42	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5389	211	206	8.78	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5390	211	207	9.24	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5391	211	208	11.54	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5392	211	209	9.70	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5393	211	210	11.68	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5394	211	211	15.46	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5395	211	212	8.42	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5396	211	213	13.02	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5397	211	214	6.38	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5398	211	215	9.14	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5399	211	216	9.98	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5400	211	217	8.96	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5401	211	218	5.06	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5402	211	219	12.36	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5403	211	220	13.84	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5404	211	221	9.96	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5405	211	222	11.06	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5406	211	223	12.76	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5407	211	224	9.28	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5408	211	225	19.04	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5409	211	226	8.82	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5410	211	227	11.04	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5411	211	228	9.96	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5412	211	229	14.20	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5413	211	230	9.00	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5414	211	231	13.94	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5415	212	206	9.86	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5416	212	207	12.72	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5417	212	208	12.92	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5418	212	209	10.54	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5419	212	210	9.84	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5420	212	211	8.98	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5421	212	212	10.66	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5422	212	213	6.14	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5423	212	214	14.12	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5424	212	215	10.62	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5425	212	216	8.78	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5426	212	217	11.32	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5427	212	218	15.52	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5428	212	219	10.78	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5429	212	220	12.00	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5430	212	221	11.18	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5431	212	222	13.52	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5432	212	223	18.38	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5433	212	224	13.90	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5434	212	225	10.00	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5435	212	226	2.90	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5436	212	227	10.66	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5437	212	228	10.22	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5438	212	229	15.16	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5439	212	230	9.02	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5440	212	231	12.80	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5441	213	206	10.78	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5442	213	207	14.30	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5443	213	208	4.20	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5444	213	209	15.74	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5445	213	210	11.72	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5446	213	211	12.80	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5447	213	212	15.04	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5448	213	213	7.07	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5449	213	214	10.10	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5450	213	215	12.06	\N	2026-05-12 20:23:24	2026-05-12 20:23:24
5451	213	216	12.32	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5452	213	217	13.20	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5453	213	218	8.90	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5454	213	219	11.40	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5455	213	220	14.46	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5456	213	221	13.16	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5457	213	222	12.00	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5458	213	223	11.80	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5459	213	224	9.64	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5460	213	225	13.70	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5461	213	226	11.06	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5462	213	227	9.96	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5463	213	228	8.64	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5464	213	229	11.76	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5465	213	230	3.55	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5466	213	231	9.22	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5467	214	206	12.80	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5468	214	207	9.60	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5469	214	208	13.34	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5470	214	209	8.20	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5471	214	210	6.14	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5472	214	211	12.10	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5473	214	212	12.22	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5474	214	213	19.64	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5475	214	214	5.06	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5476	214	215	13.62	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5477	214	216	11.50	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5478	214	217	8.14	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5479	214	218	9.72	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5480	214	219	7.76	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5481	214	220	14.42	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5482	214	221	11.22	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5483	214	222	13.90	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5484	214	223	10.68	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5485	214	224	19.70	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5486	214	225	11.62	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5487	214	226	13.40	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5488	214	227	11.52	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5489	214	228	9.12	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5490	214	229	10.86	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5491	214	230	6.86	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5492	214	231	12.46	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5493	215	206	9.88	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5494	215	207	2.20	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5495	215	208	13.06	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5496	215	209	6.92	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5497	215	210	10.62	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5498	215	211	11.06	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5499	215	212	9.74	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5500	215	213	9.48	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5501	215	214	6.26	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5502	215	215	8.44	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5503	215	216	8.62	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5504	215	217	0.80	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5505	215	218	11.24	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5506	215	219	4.95	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5507	215	220	16.58	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5508	215	221	12.10	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5509	215	222	2.90	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5510	215	223	9.90	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5511	215	224	11.58	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5512	215	225	19.22	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5513	215	226	19.12	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5514	215	227	8.62	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5515	215	228	13.48	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5516	215	229	9.68	\N	2026-05-12 20:23:25	2026-05-12 20:23:25
5517	215	230	15.48	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5518	215	231	10.82	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5519	216	206	8.02	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5520	216	207	11.86	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5521	216	208	8.80	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5522	216	209	10.02	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5523	216	210	12.80	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5524	216	211	12.94	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5525	216	212	12.90	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5526	216	213	11.96	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5527	216	214	11.20	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5528	216	215	11.20	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5529	216	216	10.24	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5530	216	217	12.12	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5531	216	218	9.76	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5532	216	219	10.06	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5533	216	220	5.39	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5534	216	221	10.28	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5535	216	222	13.60	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5536	216	223	7.13	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5537	216	224	12.00	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5538	216	225	15.96	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5539	216	226	14.48	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5540	216	227	18.06	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5541	216	228	10.52	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5542	216	229	9.48	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5543	216	230	8.02	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5544	216	231	11.36	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5545	217	232	17.84	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5546	217	233	1.50	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5547	217	234	11.60	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5548	217	235	10.50	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5549	217	236	11.72	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5550	217	237	15.44	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5551	217	238	18.16	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5552	217	239	15.22	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5553	217	240	5.15	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5554	217	241	13.24	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5555	217	242	12.34	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5556	217	243	14.76	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5557	217	244	11.76	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5558	217	245	8.28	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5559	217	246	9.26	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5560	217	247	7.16	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5561	217	248	16.66	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5562	217	249	11.92	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5563	217	250	10.06	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5564	217	251	14.78	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5565	217	252	10.90	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5566	217	253	5.87	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5567	217	254	14.04	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5568	217	255	8.10	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5569	217	256	8.28	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5570	217	257	13.30	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5571	217	258	11.44	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5572	217	259	5.36	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5573	217	260	13.94	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5574	218	232	14.80	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5575	218	233	5.21	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5576	218	234	8.24	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5577	218	235	14.96	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5578	218	236	0.25	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5579	218	237	8.64	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5580	218	238	11.74	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5581	218	239	14.36	\N	2026-05-12 20:23:26	2026-05-12 20:23:26
5582	218	240	13.28	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5583	218	241	10.74	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5584	218	242	14.02	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5585	218	243	4.90	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5586	218	244	13.46	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5587	218	245	12.34	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5588	218	246	12.46	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5589	218	247	12.90	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5590	218	248	9.22	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5591	218	249	15.64	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5592	218	250	2.05	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5593	218	251	1.65	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5594	218	252	13.10	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5595	218	253	2.85	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5596	218	254	16.98	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5597	218	255	2.75	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5598	218	256	9.78	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5599	218	257	13.58	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5600	218	258	12.26	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5601	218	259	12.10	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5602	218	260	8.68	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5603	219	232	10.86	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5604	219	233	17.10	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5605	219	234	15.30	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5606	219	235	8.94	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5607	219	236	10.06	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5608	219	237	11.16	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5609	219	238	11.76	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5610	219	239	13.26	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5611	219	240	14.02	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5612	219	241	13.64	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5613	219	242	10.78	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5614	219	243	10.72	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5615	219	244	16.46	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5616	219	245	6.05	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5617	219	246	9.00	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5618	219	247	8.00	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5619	219	248	11.88	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5620	219	249	10.96	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5621	219	250	16.10	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5622	219	251	12.20	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5623	219	252	11.76	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5624	219	253	5.36	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5625	219	254	12.52	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5626	219	255	9.20	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5627	219	256	9.52	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5628	219	257	13.46	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5629	219	258	8.62	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5630	219	259	5.84	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5631	219	260	10.88	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5632	220	232	13.46	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5633	220	233	8.82	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5634	220	234	12.24	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5635	220	235	11.64	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5636	220	236	12.10	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5637	220	237	14.56	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5638	220	238	9.22	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5639	220	239	8.28	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5640	220	240	13.78	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5641	220	241	14.72	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5642	220	242	13.50	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5643	220	243	14.50	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5644	220	244	12.86	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5645	220	245	11.98	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5646	220	246	11.44	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5647	220	247	7.31	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5648	220	248	10.52	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5649	220	249	7.76	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5650	220	250	13.22	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5651	220	251	8.60	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5652	220	252	10.16	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5653	220	253	5.39	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5654	220	254	10.02	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5655	220	255	12.54	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5656	220	256	8.56	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5657	220	257	14.96	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5658	220	258	10.90	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5659	220	259	11.16	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5660	220	260	8.06	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5661	221	232	16.44	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5662	221	233	9.80	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5663	221	234	12.72	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5664	221	235	14.42	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5665	221	236	8.54	\N	2026-05-12 20:23:27	2026-05-12 20:23:27
5666	221	237	17.50	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5667	221	238	13.36	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5668	221	239	12.98	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5669	221	240	9.40	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5670	221	241	12.86	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5671	221	242	8.12	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5672	221	243	10.20	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5673	221	244	15.32	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5674	221	245	13.68	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5675	221	246	10.58	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5676	221	247	12.16	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5677	221	248	11.30	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5678	221	249	1.65	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5679	221	250	9.80	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5680	221	251	9.44	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5681	221	252	10.82	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5682	221	253	10.10	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5683	221	254	11.10	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5684	221	255	12.08	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5685	221	256	13.42	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5686	221	257	13.56	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5687	221	258	13.62	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5688	221	259	8.36	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5689	221	260	8.98	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5690	222	232	1.85	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5691	222	233	1.05	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5692	222	234	14.52	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5693	222	235	14.40	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5694	222	236	6.17	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5695	222	237	16.52	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5696	222	238	13.74	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5697	222	239	10.02	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5698	222	240	0.30	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5699	222	241	11.84	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5700	222	242	12.78	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5701	222	243	10.58	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5702	222	244	7.82	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5703	222	245	8.98	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5704	222	246	9.40	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5705	222	247	13.40	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5706	222	248	16.52	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5707	222	249	8.54	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5708	222	250	8.66	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5709	222	251	10.62	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5710	222	252	2.15	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5711	222	253	6.05	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5712	222	254	13.34	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5713	222	255	11.72	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5714	222	256	11.04	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5715	222	257	16.46	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5716	222	258	8.86	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5717	222	259	10.00	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5718	222	260	7.25	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5719	223	232	5.33	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5720	223	233	19.54	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5721	223	234	13.90	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5722	223	235	12.16	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5723	223	236	8.98	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5724	223	237	9.74	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5725	223	238	0.60	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5726	223	239	11.96	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5727	223	240	11.36	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5728	223	241	10.00	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5729	223	242	1.90	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5730	223	243	13.66	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5731	223	244	8.96	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5732	223	245	18.64	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5733	223	246	12.06	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5734	223	247	13.48	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5735	223	248	15.98	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5736	223	249	13.74	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5737	223	250	8.66	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5738	223	251	5.36	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5739	223	252	13.56	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5740	223	253	10.80	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5741	223	254	7.46	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5742	223	255	13.48	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5743	223	256	12.98	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5744	223	257	5.57	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5745	223	258	16.74	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5746	223	259	12.58	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5747	223	260	16.46	\N	2026-05-12 20:23:28	2026-05-12 20:23:28
5748	224	232	9.12	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5749	224	233	8.30	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5750	224	234	14.80	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5751	224	235	8.96	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5752	224	236	15.18	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5753	224	237	16.34	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5754	224	238	8.70	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5755	224	239	12.38	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5756	224	240	6.92	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5757	224	241	12.68	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5758	224	242	11.00	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5759	224	243	10.00	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5760	224	244	9.34	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5761	224	245	12.78	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5762	224	246	5.72	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5763	224	247	9.68	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5764	224	248	12.38	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5765	224	249	11.58	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5766	224	250	14.70	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5767	224	251	16.22	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5768	224	252	10.62	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5769	224	253	15.66	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5770	224	254	9.68	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5771	224	255	5.99	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5772	224	256	8.32	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5773	224	257	13.46	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5774	224	258	9.76	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5775	224	259	6.50	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5776	224	260	10.10	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5777	225	232	7.76	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5778	225	233	14.56	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5779	225	234	13.92	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5780	225	235	11.34	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5781	225	236	12.12	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5782	225	237	10.82	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5783	225	238	13.00	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5784	225	239	11.10	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5785	225	240	5.75	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5786	225	241	9.66	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5787	225	242	15.22	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5788	225	243	11.52	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5789	225	244	8.02	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5790	225	245	10.80	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5791	225	246	12.80	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5792	225	247	13.46	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5793	225	248	5.93	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5794	225	249	6.92	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5795	225	250	11.60	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5796	225	251	13.82	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5797	225	252	10.46	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5798	225	253	10.82	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5799	225	254	8.76	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5800	225	255	6.17	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5801	225	256	9.76	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5802	225	257	12.72	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5803	225	258	5.45	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5804	225	259	9.70	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5805	225	260	10.00	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5806	226	232	14.74	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5807	226	233	13.52	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5808	226	234	11.82	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5809	226	235	12.78	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5810	226	236	11.04	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5811	226	237	10.14	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5812	226	238	8.52	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5813	226	239	3.80	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5814	226	240	11.12	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5815	226	241	13.66	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5816	226	242	15.40	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5817	226	243	11.94	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5818	226	244	15.34	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5819	226	245	13.52	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5820	226	246	13.20	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5821	226	247	16.90	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5822	226	248	9.16	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5823	226	249	9.74	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5824	226	250	9.92	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5825	226	251	12.42	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5826	226	252	9.76	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5827	226	253	8.78	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5828	226	254	14.16	\N	2026-05-12 20:23:29	2026-05-12 20:23:29
5829	226	255	17.80	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5830	226	256	4.15	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5831	226	257	11.82	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5832	226	258	7.37	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5833	226	259	11.18	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5834	226	260	8.94	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5835	227	232	10.30	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5836	227	233	14.96	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5837	227	234	8.02	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5838	227	235	11.30	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5839	227	236	8.34	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5840	227	237	13.64	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5841	227	238	11.22	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5842	227	239	11.14	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5843	227	240	12.00	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5844	227	241	10.18	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5845	227	242	12.58	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5846	227	243	10.14	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5847	227	244	5.15	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5848	227	245	13.28	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5849	227	246	16.06	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5850	227	247	8.80	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5851	227	248	15.46	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5852	227	249	8.02	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5853	227	250	10.48	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5854	227	251	1.30	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5855	227	252	11.28	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5856	227	253	6.23	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5857	227	254	11.08	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5858	227	255	10.44	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5859	227	256	8.12	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5860	227	257	15.36	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5861	227	258	11.82	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5862	227	259	8.24	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5863	227	260	14.22	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5864	228	232	11.08	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5865	228	233	8.16	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5866	228	234	12.48	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5867	228	235	9.94	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5868	228	236	11.16	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5869	228	237	10.62	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5870	228	238	9.50	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5871	228	239	8.84	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5872	228	240	11.84	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5873	228	241	8.26	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5874	228	242	10.98	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5875	228	243	11.14	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5876	228	244	11.06	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5877	228	245	13.76	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5878	228	246	16.76	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5879	228	247	8.14	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5880	228	248	15.80	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5881	228	249	13.60	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5882	228	250	16.74	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5883	228	251	12.78	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5884	228	252	1.85	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5885	228	253	12.20	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5886	228	254	9.56	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5887	228	255	15.54	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5888	228	256	11.26	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5889	228	257	10.80	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5890	228	258	7.64	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5891	228	259	11.90	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5892	228	260	7.22	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5893	229	232	18.18	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5894	229	233	10.42	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5895	229	234	15.22	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5896	229	235	10.18	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5897	229	236	17.62	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5898	229	237	9.76	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5899	229	238	7.67	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5900	229	239	13.42	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5901	229	240	11.26	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5902	229	241	14.94	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5903	229	242	11.26	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5904	229	243	14.54	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5905	229	244	10.60	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5906	229	245	10.00	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5907	229	246	12.64	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5908	229	247	15.48	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5909	229	248	13.70	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5910	229	249	16.18	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5911	229	250	10.66	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5912	229	251	12.64	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5913	229	252	1.95	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5914	229	253	16.10	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5915	229	254	9.16	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5916	229	255	10.26	\N	2026-05-12 20:23:30	2026-05-12 20:23:30
5917	229	256	13.38	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5918	229	257	1.35	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5919	229	258	11.44	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5920	229	259	14.00	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5921	229	260	6.35	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5922	230	232	17.82	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5923	230	233	11.68	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5924	230	234	9.32	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5925	230	235	12.52	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5926	230	236	17.56	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5927	230	237	13.44	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5928	230	238	13.00	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5929	230	239	12.96	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5930	230	240	13.00	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5931	230	241	12.18	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5932	230	242	3.30	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5933	230	243	5.33	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5934	230	244	12.68	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5935	230	245	1.00	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5936	230	246	10.96	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5937	230	247	14.84	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5938	230	248	1.35	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5939	230	249	13.40	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5940	230	250	15.60	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5941	230	251	17.00	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5942	230	252	12.48	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5943	230	253	10.30	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5944	230	254	10.46	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5945	230	255	11.58	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5946	230	256	8.44	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5947	230	257	11.70	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5948	230	258	12.64	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5949	230	259	9.38	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5950	230	260	14.92	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5951	231	232	5.21	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5952	231	233	13.46	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5953	231	234	5.63	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5954	231	235	11.14	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5955	231	236	9.72	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5956	231	237	12.42	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5957	231	238	8.58	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5958	231	239	13.66	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5959	231	240	8.34	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5960	231	241	8.54	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5961	231	242	3.95	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5962	231	243	3.70	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5963	231	244	10.68	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5964	231	245	9.08	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5965	231	246	10.18	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5966	231	247	12.10	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5967	231	248	14.38	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5968	231	249	1.30	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5969	231	250	10.34	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5970	231	251	11.98	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5971	231	252	9.32	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5972	231	253	10.64	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5973	231	254	12.10	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5974	231	255	15.56	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5975	231	256	8.66	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5976	231	257	13.58	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5977	231	258	9.58	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5978	231	259	6.65	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5979	231	260	13.60	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5980	232	232	5.57	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5981	232	233	10.00	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5982	232	234	17.64	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5983	232	235	14.00	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5984	232	236	11.36	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5985	232	237	16.82	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5986	232	238	11.04	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5987	232	239	11.60	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5988	232	240	8.44	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5989	232	241	5.39	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5990	232	242	13.62	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5991	232	243	8.92	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5992	232	244	9.92	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5993	232	245	19.10	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5994	232	246	15.62	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5995	232	247	8.60	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5996	232	248	15.80	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5997	232	249	10.84	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5998	232	250	10.74	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
5999	232	251	15.14	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
6000	232	252	9.22	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
6001	232	253	10.98	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
6002	232	254	8.46	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
6003	232	255	8.24	\N	2026-05-12 20:23:31	2026-05-12 20:23:31
6004	232	256	8.98	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6005	232	257	12.64	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6006	232	258	11.34	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6007	232	259	7.88	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6008	232	260	15.42	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6009	233	232	11.38	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6010	233	233	16.94	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6011	233	234	12.08	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6012	233	235	13.98	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6013	233	236	12.70	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6014	233	237	12.08	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6015	233	238	11.08	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6016	233	239	12.68	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6017	233	240	10.24	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6018	233	241	13.88	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6019	233	242	11.52	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6020	233	243	10.62	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6021	233	244	11.32	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6022	233	245	13.44	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6023	233	246	10.74	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6024	233	247	17.96	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6025	233	248	10.00	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6026	233	249	8.10	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6027	233	250	3.00	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6028	233	251	10.62	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6029	233	252	14.00	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6030	233	253	6.29	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6031	233	254	17.10	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6032	233	255	19.70	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6033	233	256	14.88	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6034	233	257	14.00	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6035	233	258	9.94	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6036	233	259	11.76	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6037	233	260	9.80	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6038	234	232	15.08	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6039	234	233	7.73	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6040	234	234	13.10	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6041	234	235	6.41	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6042	234	236	11.38	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6043	234	237	15.52	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6044	234	238	10.62	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6045	234	239	5.90	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6046	234	240	11.30	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6047	234	241	11.04	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6048	234	242	8.52	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6049	234	243	17.38	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6050	234	244	11.12	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6051	234	245	11.94	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6052	234	246	8.08	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6053	234	247	13.34	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6054	234	248	8.52	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6055	234	249	6.86	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6056	234	250	11.68	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6057	234	251	11.78	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6058	234	252	5.93	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6059	234	253	11.66	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6060	234	254	17.44	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6061	234	255	10.46	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6062	234	256	8.18	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6063	234	257	14.24	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6064	234	258	12.70	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6065	234	259	8.62	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6066	234	260	10.58	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6067	235	232	13.96	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6068	235	233	13.06	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6069	235	234	6.74	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6070	235	235	5.03	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6071	235	236	9.14	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6072	235	237	13.52	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6073	235	238	12.98	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6074	235	239	11.18	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6075	235	240	4.35	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6076	235	241	14.62	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6077	235	242	15.20	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6078	235	243	18.00	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6079	235	244	13.56	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6080	235	245	6.11	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6081	235	246	14.52	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6082	235	247	10.74	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6083	235	248	14.74	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6084	235	249	15.32	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6085	235	250	16.38	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6086	235	251	13.66	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6087	235	252	10.16	\N	2026-05-12 20:23:32	2026-05-12 20:23:32
6088	235	253	6.59	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6089	235	254	14.78	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6090	235	255	17.92	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6091	235	256	8.50	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6092	235	257	16.02	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6093	235	258	12.58	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6094	235	259	10.48	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6095	235	260	8.62	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6096	236	232	16.96	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6097	236	233	9.68	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6098	236	234	9.28	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6099	236	235	2.85	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6100	236	236	15.86	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6101	236	237	9.16	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6102	236	238	6.20	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6103	236	239	10.26	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6104	236	240	8.64	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6105	236	241	6.53	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6106	236	242	9.02	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6107	236	243	8.76	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6108	236	244	15.42	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6109	236	245	5.00	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6110	236	246	13.70	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6111	236	247	17.30	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6112	236	248	11.26	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6113	236	249	14.04	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6114	236	250	10.42	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6115	236	251	13.74	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6116	236	252	9.28	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6117	236	253	13.32	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6118	236	254	19.94	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6119	236	255	10.10	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6120	236	256	14.22	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6121	236	257	11.62	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6122	236	258	6.32	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6123	236	259	14.00	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6124	236	260	11.56	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6125	237	232	8.22	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6126	237	233	11.34	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6127	237	234	12.32	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6128	237	235	9.04	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6129	237	236	12.88	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6130	237	237	10.74	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6131	237	238	13.42	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6132	237	239	13.62	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6133	237	240	12.94	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6134	237	241	14.92	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6135	237	242	9.46	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6136	237	243	13.56	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6137	237	244	14.40	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6138	237	245	5.15	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6139	237	246	17.50	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6140	237	247	9.10	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6141	237	248	6.95	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6142	237	249	11.72	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6143	237	250	14.04	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6144	237	251	10.26	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6145	237	252	11.28	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6146	237	253	17.82	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6147	237	254	15.62	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6148	237	255	2.20	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6149	237	256	8.96	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6150	237	257	11.00	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6151	237	258	10.54	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6152	237	259	15.16	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6153	237	260	13.60	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6154	238	232	13.28	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6155	238	233	13.42	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6156	238	234	14.40	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6157	238	235	8.86	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6158	238	236	18.14	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6159	238	237	17.48	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6160	238	238	6.62	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6161	238	239	12.16	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6162	238	240	16.82	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6163	238	241	3.20	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6164	238	242	10.20	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6165	238	243	15.46	\N	2026-05-12 20:23:33	2026-05-12 20:23:33
6166	238	244	12.38	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6167	238	245	18.62	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6168	238	246	7.22	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6169	238	247	12.10	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6170	238	248	11.24	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6171	238	249	15.28	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6172	238	250	13.00	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6173	238	251	11.92	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6174	238	252	15.26	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6175	238	253	10.74	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6176	238	254	9.82	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6177	238	255	11.86	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6178	238	256	11.02	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6179	238	257	13.58	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6180	238	258	12.06	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6181	238	259	14.54	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6182	238	260	10.74	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6183	239	232	15.54	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6184	239	233	3.85	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6185	239	234	6.44	\N	2026-05-12 20:23:34	2026-05-12 20:23:34
6186	239	235	13.72	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6187	239	236	8.46	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6188	239	237	8.52	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6189	239	238	11.16	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6190	239	239	15.20	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6191	239	240	3.00	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6192	239	241	8.76	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6193	239	242	11.50	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6194	239	243	12.22	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6195	239	244	11.76	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6196	239	245	11.30	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6197	239	246	9.04	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6198	239	247	8.54	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6199	239	248	13.70	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6200	239	249	9.40	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6201	239	250	4.85	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6202	239	251	8.24	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6203	239	252	12.82	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6204	239	253	10.00	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6205	239	254	10.88	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6206	239	255	11.42	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6207	239	256	10.26	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6208	239	257	11.94	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6209	239	258	18.14	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6210	239	259	13.88	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6211	239	260	13.20	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6212	240	232	12.24	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6213	240	233	11.44	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6214	240	234	5.15	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6215	240	235	9.60	\N	2026-05-12 20:23:35	2026-05-12 20:23:35
6216	240	236	12.08	\N	2026-05-12 20:23:36	2026-05-12 20:23:36
6217	240	237	14.22	\N	2026-05-12 20:23:36	2026-05-12 20:23:36
6218	240	238	16.20	\N	2026-05-12 20:23:36	2026-05-12 20:23:36
6219	240	239	11.88	\N	2026-05-12 20:23:36	2026-05-12 20:23:36
6220	240	240	12.34	\N	2026-05-12 20:23:36	2026-05-12 20:23:36
6221	240	241	1.90	\N	2026-05-12 20:23:36	2026-05-12 20:23:36
6222	240	242	9.42	\N	2026-05-12 20:23:36	2026-05-12 20:23:36
6223	240	243	10.78	\N	2026-05-12 20:23:36	2026-05-12 20:23:36
6224	240	244	9.22	\N	2026-05-12 20:23:36	2026-05-12 20:23:36
6225	240	245	2.90	\N	2026-05-12 20:23:36	2026-05-12 20:23:36
6226	240	246	11.14	\N	2026-05-12 20:23:36	2026-05-12 20:23:36
6227	240	247	11.94	\N	2026-05-12 20:23:36	2026-05-12 20:23:36
6228	240	248	17.64	\N	2026-05-12 20:23:37	2026-05-12 20:23:37
6229	240	249	10.14	\N	2026-05-12 20:23:37	2026-05-12 20:23:37
6230	240	250	8.22	\N	2026-05-12 20:23:37	2026-05-12 20:23:37
6231	240	251	10.80	\N	2026-05-12 20:23:37	2026-05-12 20:23:37
6232	240	252	11.74	\N	2026-05-12 20:23:37	2026-05-12 20:23:37
6233	240	253	8.16	\N	2026-05-12 20:23:37	2026-05-12 20:23:37
6234	240	254	7.22	\N	2026-05-12 20:23:37	2026-05-12 20:23:37
6235	240	255	10.38	\N	2026-05-12 20:23:37	2026-05-12 20:23:37
6236	240	256	8.50	\N	2026-05-12 20:23:37	2026-05-12 20:23:37
6237	240	257	13.38	\N	2026-05-12 20:23:37	2026-05-12 20:23:37
6238	240	258	3.40	\N	2026-05-12 20:23:37	2026-05-12 20:23:37
6239	240	259	5.87	\N	2026-05-12 20:23:37	2026-05-12 20:23:37
6240	240	260	10.42	\N	2026-05-12 20:23:37	2026-05-12 20:23:37
6241	241	232	13.58	\N	2026-05-12 20:23:37	2026-05-12 20:23:37
6242	241	233	15.84	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6243	241	234	9.36	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6244	241	235	12.04	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6245	241	236	8.60	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6246	241	237	1.90	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6247	241	238	12.52	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6248	241	239	9.62	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6249	241	240	14.92	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6250	241	241	0.15	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6251	241	242	10.20	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6252	241	243	13.82	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6253	241	244	9.82	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6254	241	245	9.34	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6255	241	246	6.62	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6256	241	247	13.60	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6257	241	248	6.47	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6258	241	249	15.58	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6259	241	250	11.78	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6260	241	251	11.52	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6261	241	252	15.76	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6262	241	253	13.72	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6263	241	254	13.58	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6264	241	255	9.74	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6265	241	256	10.88	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6266	241	257	11.76	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6267	241	258	10.56	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6268	241	259	8.44	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6269	241	260	11.16	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6270	242	232	10.68	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6271	242	233	5.60	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6272	242	234	8.42	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6273	242	235	12.54	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6274	242	236	12.42	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6275	242	237	17.06	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6276	242	238	11.22	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6277	242	239	8.62	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6278	242	240	2.50	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6279	242	241	9.06	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6280	242	242	11.28	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6281	242	243	6.44	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6282	242	244	9.96	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6283	242	245	7.52	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6284	242	246	15.96	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6285	242	247	12.34	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6286	242	248	8.48	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6287	242	249	6.86	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6288	242	250	11.06	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6289	242	251	12.26	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6290	242	252	11.82	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6291	242	253	5.00	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6292	242	254	8.52	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6293	242	255	6.50	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6294	242	256	8.34	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6295	242	257	11.62	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6296	242	258	19.96	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6297	242	259	11.04	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6298	242	260	12.54	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6299	243	232	11.40	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6300	243	233	15.54	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6301	243	234	11.00	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6302	243	235	12.00	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6303	243	236	8.08	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6304	243	237	12.16	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6305	243	238	14.78	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6306	243	239	17.92	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6307	243	240	10.06	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6308	243	241	13.24	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6309	243	242	8.84	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6310	243	243	5.00	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6311	243	244	11.60	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6312	243	245	5.57	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6313	243	246	9.36	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6314	243	247	10.68	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6315	243	248	8.00	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6316	243	249	14.62	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6317	243	250	13.92	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6318	243	251	11.12	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6319	243	252	10.28	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6320	243	253	9.82	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6321	243	254	12.84	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6322	243	255	8.54	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6323	243	256	15.86	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6324	243	257	10.80	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6325	243	258	8.64	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6326	243	259	9.84	\N	2026-05-12 20:23:38	2026-05-12 20:23:38
6327	243	260	11.28	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6328	244	232	0.00	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6329	244	233	8.58	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6330	244	234	6.62	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6331	244	235	2.55	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6332	244	236	3.35	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6333	244	237	10.04	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6334	244	238	8.12	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6335	244	239	8.10	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6336	244	240	7.01	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6337	244	241	4.00	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6338	244	242	14.22	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6339	244	243	12.96	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6340	244	244	6.59	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6341	244	245	15.42	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6342	244	246	5.06	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6343	244	247	10.82	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6344	244	248	15.64	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6345	244	249	13.22	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6346	244	250	6.74	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6347	244	251	13.16	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6348	244	252	13.40	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6349	244	253	9.90	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6350	244	254	11.62	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6351	244	255	13.96	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6352	244	256	16.60	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6353	244	257	11.72	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6354	244	258	10.00	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6355	244	259	18.72	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6356	244	260	6.02	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6357	245	261	17.22	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6358	245	262	8.50	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6359	245	263	10.48	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6360	245	264	8.54	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6361	245	265	9.64	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6362	245	266	12.68	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6363	245	267	8.72	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6364	245	268	11.50	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6365	245	269	8.54	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6366	245	270	12.26	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6367	245	271	12.80	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6368	245	272	11.76	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6369	245	273	8.20	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6370	245	274	11.74	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6371	245	275	17.60	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6372	245	276	15.16	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6373	245	277	10.22	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6374	245	278	12.70	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6375	245	279	13.72	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6376	245	280	11.24	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6377	245	281	9.30	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6378	245	282	11.64	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6379	245	283	0.45	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6380	245	284	8.10	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6381	246	261	10.42	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6382	246	262	8.88	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6383	246	263	16.60	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6384	246	264	13.06	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6385	246	265	12.58	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6386	246	266	6.68	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6387	246	267	8.34	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6388	246	268	11.34	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6389	246	269	10.08	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6390	246	270	17.78	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6391	246	271	9.40	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6392	246	272	12.20	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6393	246	273	10.80	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6394	246	274	11.06	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6395	246	275	9.48	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6396	246	276	6.80	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6397	246	277	0.25	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6398	246	278	14.42	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6399	246	279	10.84	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6400	246	280	8.06	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6401	246	281	12.54	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6402	246	282	12.62	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6403	246	283	10.78	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6404	246	284	18.56	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6405	247	261	10.18	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6406	247	262	16.44	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6407	247	263	7.49	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6408	247	264	12.78	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6409	247	265	15.66	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6410	247	266	17.46	\N	2026-05-12 20:23:39	2026-05-12 20:23:39
6411	247	267	11.22	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6412	247	268	1.65	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6413	247	269	7.97	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6414	247	270	15.96	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6415	247	271	8.54	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6416	247	272	10.18	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6417	247	273	14.30	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6418	247	274	16.38	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6419	247	275	12.92	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6420	247	276	16.30	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6421	247	277	17.52	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6422	247	278	14.32	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6423	247	279	15.46	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6424	247	280	9.88	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6425	247	281	12.62	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6426	247	282	17.50	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6427	247	283	8.46	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6428	247	284	14.70	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6429	248	261	6.50	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6430	248	262	19.24	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6431	248	263	12.42	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6432	248	264	15.12	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6433	248	265	9.56	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6434	248	266	12.74	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6435	248	267	15.32	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6436	248	268	10.78	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6437	248	269	10.82	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6438	248	270	16.26	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6439	248	271	10.48	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6440	248	272	3.90	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6441	248	273	15.40	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6442	248	274	12.68	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6443	248	275	10.16	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6444	248	276	0.00	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6445	248	277	8.60	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6446	248	278	9.22	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6447	248	279	12.46	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6448	248	280	11.02	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6449	248	281	17.56	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6450	248	282	13.64	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6451	248	283	11.86	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6452	248	284	9.36	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6453	249	261	12.04	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6454	249	262	5.75	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6455	249	263	13.80	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6456	249	264	5.81	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6457	249	265	17.96	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6458	249	266	11.16	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6459	249	267	11.24	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6460	249	268	9.76	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6461	249	269	10.38	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6462	249	270	16.18	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6463	249	271	6.74	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6464	249	272	13.48	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6465	249	273	11.46	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6466	249	274	11.04	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6467	249	275	13.44	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6468	249	276	10.72	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6469	249	277	8.28	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6470	249	278	8.96	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6471	249	279	13.70	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6472	249	280	8.40	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6473	249	281	8.00	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6474	249	282	13.34	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6475	249	283	3.15	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6476	249	284	15.76	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6477	250	261	14.80	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6478	250	262	11.62	\N	2026-05-12 20:23:40	2026-05-12 20:23:40
6479	250	263	14.12	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6480	250	264	8.18	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6481	250	265	8.80	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6482	250	266	13.74	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6483	250	267	8.18	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6484	250	268	8.78	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6485	250	269	9.18	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6486	250	270	13.00	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6487	250	271	14.92	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6488	250	272	2.45	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6489	250	273	10.90	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6490	250	274	12.74	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6491	250	275	14.90	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6492	250	276	15.54	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6493	250	277	12.90	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6494	250	278	7.07	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6495	250	279	13.52	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6496	250	280	13.74	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6497	250	281	12.50	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6498	250	282	5.57	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6499	250	283	8.60	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6500	250	284	8.82	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6501	251	261	6.71	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6502	251	262	9.58	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6503	251	263	8.70	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6504	251	264	7.28	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6505	251	265	19.24	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6506	251	266	15.58	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6507	251	267	13.70	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6508	251	268	9.68	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6509	251	269	12.12	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6510	251	270	10.30	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6511	251	271	15.28	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6512	251	272	11.44	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6513	251	273	10.82	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6514	251	274	9.02	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6515	251	275	9.14	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6516	251	276	11.76	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6517	251	277	16.42	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6518	251	278	12.08	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6519	251	279	14.00	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6520	251	280	13.30	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6521	251	281	5.36	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6522	251	282	6.95	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6523	251	283	10.72	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6524	251	284	16.08	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6525	252	261	15.14	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6526	252	262	13.84	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6527	252	263	13.74	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6528	252	264	14.74	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6529	252	265	18.18	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6530	252	266	14.68	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6531	252	267	10.80	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6532	252	268	10.92	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6533	252	269	11.66	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6534	252	270	13.92	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6535	252	271	13.14	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6536	252	272	12.88	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6537	252	273	12.60	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6538	252	274	9.82	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6539	252	275	7.67	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6540	252	276	15.18	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6541	252	277	1.80	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6542	252	278	8.82	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6543	252	279	11.86	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6544	252	280	7.49	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6545	252	281	9.94	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6546	252	282	8.86	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6547	252	283	8.76	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6548	252	284	15.94	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6549	253	261	8.40	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6550	253	262	12.44	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6551	253	263	6.80	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6552	253	264	12.78	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6553	253	265	15.76	\N	2026-05-12 20:23:41	2026-05-12 20:23:41
6554	253	266	8.68	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6555	253	267	14.24	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6556	253	268	8.00	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6557	253	269	9.56	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6558	253	270	3.10	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6559	253	271	11.82	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6560	253	272	12.84	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6561	253	273	12.62	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6562	253	274	10.70	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6563	253	275	12.00	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6564	253	276	12.70	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6565	253	277	10.60	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6566	253	278	13.88	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6567	253	279	11.72	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6568	253	280	10.98	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6569	253	281	14.74	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6570	253	282	8.60	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6571	253	283	9.52	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6572	253	284	11.92	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6573	254	261	10.80	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6574	254	262	14.68	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6575	254	263	0.15	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6576	254	264	1.75	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6577	254	265	13.50	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6578	254	266	0.00	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6579	254	267	10.74	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6580	254	268	5.03	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6581	254	269	9.70	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6582	254	270	10.54	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6583	254	271	19.88	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6584	254	272	10.08	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6585	254	273	10.70	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6586	254	274	9.20	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6587	254	275	9.20	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6588	254	276	8.56	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6589	254	277	8.08	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6590	254	278	12.90	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6591	254	279	11.30	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6592	254	280	13.46	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6593	254	281	11.86	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6594	254	282	11.54	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6595	254	283	14.92	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6596	254	284	11.12	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6597	255	261	19.20	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6598	255	262	8.88	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6599	255	263	11.36	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6600	255	264	9.16	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6601	255	265	13.88	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6602	255	266	11.14	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6603	255	267	3.10	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6604	255	268	10.96	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6605	255	269	17.20	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6606	255	270	11.26	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6607	255	271	12.72	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6608	255	272	8.62	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6609	255	273	12.10	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6610	255	274	11.20	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6611	255	275	5.27	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6612	255	276	13.40	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6613	255	277	12.38	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6614	255	278	11.36	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6615	255	279	8.96	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6616	255	280	13.32	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6617	255	281	14.38	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6618	255	282	11.96	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6619	255	283	13.18	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6620	255	284	11.78	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6621	256	261	18.00	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6622	256	262	10.62	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6623	256	263	12.46	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6624	256	264	10.60	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6625	256	265	18.54	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6626	256	266	5.00	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6627	256	267	13.90	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6628	256	268	9.02	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6629	256	269	15.00	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6630	256	270	14.16	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6631	256	271	9.30	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6632	256	272	11.88	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6633	256	273	11.00	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6634	256	274	7.43	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6635	256	275	17.34	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6636	256	276	11.54	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6637	256	277	13.90	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6638	256	278	17.64	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6639	256	279	17.16	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6640	256	280	10.52	\N	2026-05-12 20:23:42	2026-05-12 20:23:42
6641	256	281	9.02	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6642	256	282	3.85	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6643	256	283	12.88	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6644	256	284	0.00	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6645	257	261	10.32	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6646	257	262	10.74	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6647	257	263	10.34	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6648	257	264	10.10	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6649	257	265	12.70	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6650	257	266	8.96	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6651	257	267	14.08	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6652	257	268	11.22	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6653	257	269	13.30	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6654	257	270	14.66	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6655	257	271	8.48	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6656	257	272	15.68	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6657	257	273	10.12	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6658	257	274	17.22	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6659	257	275	10.00	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6660	257	276	10.98	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6661	257	277	17.28	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6662	257	278	13.66	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6663	257	279	14.26	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6664	257	280	9.48	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6665	257	281	13.02	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6666	257	282	11.76	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6667	257	283	5.09	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6668	257	284	6.17	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6669	258	261	12.60	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6670	258	262	10.70	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6671	258	263	6.80	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6672	258	264	9.48	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6673	258	265	0.40	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6674	258	266	13.70	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6675	258	267	10.74	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6676	258	268	7.97	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6677	258	269	11.04	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6678	258	270	11.86	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6679	258	271	15.58	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6680	258	272	5.33	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6681	258	273	9.38	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6682	258	274	10.96	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6683	258	275	10.92	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6684	258	276	12.44	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6685	258	277	6.71	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6686	258	278	12.02	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6687	258	279	8.20	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6688	258	280	9.80	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6689	258	281	11.40	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6690	258	282	8.52	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6691	258	283	11.80	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6692	258	284	11.12	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6693	259	261	5.09	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6694	259	262	10.56	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6695	259	263	9.88	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6696	259	264	11.68	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6697	259	265	9.98	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6698	259	266	6.68	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6699	259	267	12.46	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6700	259	268	8.28	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6701	259	269	11.52	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6702	259	270	17.52	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6703	259	271	15.28	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6704	259	272	9.94	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6705	259	273	11.16	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6706	259	274	13.18	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6707	259	275	8.66	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6708	259	276	8.00	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6709	259	277	5.87	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6710	259	278	3.65	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6711	259	279	10.10	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6712	259	280	13.54	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6713	259	281	10.52	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6714	259	282	9.04	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6715	259	283	9.72	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6716	259	284	9.96	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6717	260	261	17.70	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6718	260	262	12.70	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6719	260	263	12.66	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6720	260	264	16.36	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6721	260	265	9.48	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6722	260	266	14.56	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6723	260	267	10.60	\N	2026-05-12 20:23:43	2026-05-12 20:23:43
6724	260	268	15.00	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6725	260	269	14.14	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6726	260	270	10.12	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6727	260	271	12.88	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6728	260	272	16.42	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6729	260	273	11.84	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6730	260	274	8.36	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6731	260	275	8.36	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6732	260	276	10.06	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6733	260	277	14.06	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6734	260	278	8.40	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6735	260	279	8.90	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6736	260	280	5.93	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6737	260	281	8.72	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6738	260	282	9.66	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6739	260	283	13.74	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6740	260	284	13.40	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6741	261	261	11.44	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6742	261	262	13.04	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6743	261	263	14.30	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6744	261	264	11.46	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6745	261	265	15.54	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6746	261	266	14.00	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6747	261	267	8.62	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6748	261	268	12.50	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6749	261	269	6.92	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6750	261	270	10.22	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6751	261	271	10.34	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6752	261	272	8.32	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6753	261	273	13.02	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6754	261	274	9.40	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6755	261	275	13.26	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6756	261	276	8.62	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6757	261	277	10.00	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6758	261	278	18.88	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6759	261	279	5.48	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6760	261	280	17.96	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6761	261	281	13.50	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6762	261	282	14.24	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6763	261	283	11.72	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6764	261	284	11.34	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6765	262	261	9.22	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6766	262	262	8.80	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6767	262	263	8.32	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6768	262	264	8.02	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6769	262	265	10.42	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6770	262	266	12.38	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6771	262	267	12.56	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6772	262	268	8.76	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6773	262	269	10.32	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6774	262	270	9.26	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6775	262	271	8.84	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6776	262	272	13.70	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6777	262	273	5.69	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6778	262	274	11.64	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6779	262	275	16.94	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6780	262	276	5.63	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6781	262	277	7.61	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6782	262	278	12.40	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6783	262	279	14.84	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6784	262	280	10.30	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6785	262	281	13.08	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6786	262	282	7.94	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6787	262	283	13.74	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6788	262	284	14.74	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6789	263	261	12.70	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6790	263	262	9.72	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6791	263	263	12.52	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6792	263	264	10.04	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6793	263	265	19.44	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6794	263	266	13.78	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6795	263	267	10.16	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6796	263	268	2.55	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6797	263	269	4.40	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6798	263	270	16.36	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6799	263	271	17.94	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6800	263	272	15.82	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6801	263	273	15.26	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6802	263	274	12.06	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6803	263	275	13.08	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6804	263	276	13.86	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6805	263	277	10.32	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6806	263	278	10.12	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6807	263	279	10.94	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6808	263	280	11.50	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6809	263	281	9.04	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6810	263	282	5.69	\N	2026-05-12 20:23:44	2026-05-12 20:23:44
6811	263	283	15.74	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6812	263	284	16.08	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6813	264	261	10.88	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6814	264	262	15.16	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6815	264	263	14.44	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6816	264	264	16.14	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6817	264	265	8.96	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6818	264	266	11.32	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6819	264	267	11.14	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6820	264	268	11.30	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6821	264	269	7.49	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6822	264	270	8.10	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6823	264	271	13.76	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6824	264	272	5.51	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6825	264	273	1.70	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6826	264	274	12.00	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6827	264	275	15.42	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6828	264	276	11.40	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6829	264	277	17.20	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6830	264	278	15.04	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6831	264	279	16.48	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6832	264	280	13.92	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6833	264	281	7.79	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6834	264	282	12.52	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6835	264	283	9.30	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6836	264	284	5.63	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6837	265	261	5.18	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6838	265	262	15.64	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6839	265	263	11.40	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6840	265	264	13.54	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6841	265	265	3.90	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6842	265	266	12.28	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6843	265	267	10.30	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6844	265	268	8.86	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6845	265	269	12.86	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6846	265	270	8.22	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6847	265	271	1.20	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6848	265	272	10.76	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6849	265	273	7.79	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6850	265	274	9.72	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6851	265	275	10.50	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6852	265	276	11.96	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6853	265	277	9.78	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6854	265	278	13.20	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6855	265	279	16.60	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6856	265	280	13.88	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6857	265	281	8.18	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6858	265	282	12.66	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6859	265	283	10.60	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6860	265	284	4.30	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6861	266	261	8.66	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6862	266	262	12.50	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6863	266	263	12.76	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6864	266	264	12.18	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6865	266	265	10.88	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6866	266	266	7.58	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6867	266	267	0.15	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6868	266	268	14.52	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6869	266	269	12.32	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6870	266	270	13.14	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6871	266	271	8.14	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6872	266	272	9.50	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6873	266	273	11.02	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6874	266	274	11.98	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6875	266	275	8.86	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6876	266	276	13.76	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6877	266	277	11.92	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6878	266	278	13.40	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6879	266	279	13.04	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6880	266	280	15.34	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6881	266	281	1.95	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6882	266	282	9.46	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6883	266	283	6.56	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6884	266	284	11.32	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6885	267	261	8.64	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6886	267	262	12.04	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6887	267	263	11.80	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6888	267	264	10.38	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6889	267	265	5.87	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6890	267	266	11.92	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6891	267	267	5.48	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6892	267	268	8.78	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6893	267	269	13.78	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6894	267	270	13.24	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6895	267	271	11.88	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6896	267	272	9.44	\N	2026-05-12 20:23:45	2026-05-12 20:23:45
6897	267	273	8.70	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6898	267	274	8.76	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6899	267	275	9.94	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6900	267	276	11.74	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6901	267	277	14.62	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6902	267	278	12.84	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6903	267	279	9.20	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6904	267	280	7.19	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6905	267	281	10.90	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6906	267	282	13.40	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6907	267	283	11.20	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6908	267	284	9.12	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6909	268	261	14.90	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6910	268	262	11.86	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6911	268	263	13.26	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6912	268	264	11.82	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6913	268	265	3.70	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6914	268	266	9.96	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6915	268	267	8.78	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6916	268	268	9.10	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6917	268	269	7.52	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6918	268	270	16.86	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6919	268	271	6.92	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6920	268	272	14.04	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6921	268	273	6.53	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6922	268	274	9.82	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6923	268	275	11.82	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6924	268	276	13.76	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6925	268	277	12.72	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6926	268	278	15.08	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6927	268	279	16.98	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6928	268	280	12.60	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6929	268	281	9.34	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6930	268	282	13.96	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6931	268	283	16.66	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6932	268	284	15.10	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6933	269	261	15.52	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6934	269	262	13.90	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6935	269	263	9.34	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6936	269	264	8.82	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6937	269	265	9.84	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6938	269	266	8.08	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6939	269	267	18.50	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6940	269	268	11.36	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6941	269	269	13.06	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6942	269	270	10.54	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6943	269	271	12.38	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6944	269	272	12.98	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6945	269	273	12.94	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6946	269	274	8.70	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6947	269	275	1.55	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6948	269	276	9.94	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6949	269	277	10.74	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6950	269	278	10.98	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6951	269	279	12.70	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6952	269	280	15.66	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6953	269	281	11.44	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6954	269	282	14.18	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6955	269	283	15.56	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6956	269	284	8.88	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6957	270	261	11.98	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6958	270	262	19.18	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6959	270	263	18.44	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6960	270	264	19.32	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6961	270	265	17.92	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6962	270	266	9.08	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6963	270	267	9.50	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6964	270	268	8.02	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6965	270	269	15.46	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6966	270	270	11.18	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6967	270	271	4.25	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6968	270	272	12.06	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6969	270	273	7.76	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6970	270	274	8.26	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6971	270	275	14.04	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6972	270	276	9.62	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6973	270	277	14.40	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6974	270	278	7.67	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6975	270	279	10.72	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6976	270	280	18.92	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6977	270	281	10.14	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6978	270	282	4.10	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6979	270	283	3.75	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6980	270	284	7.04	\N	2026-05-12 20:23:46	2026-05-12 20:23:46
6981	271	261	12.44	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6982	271	262	12.56	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6983	271	263	12.86	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6984	271	264	8.06	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6985	271	265	19.02	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6986	271	266	9.76	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6987	271	267	11.90	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6988	271	268	11.06	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6989	271	269	14.30	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6990	271	270	13.82	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6991	271	271	6.74	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6992	271	272	12.38	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6993	271	273	7.73	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6994	271	274	8.58	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6995	271	275	9.22	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6996	271	276	9.12	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6997	271	277	9.66	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6998	271	278	3.05	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
6999	271	279	8.36	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7000	271	280	10.16	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7001	271	281	13.24	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7002	271	282	14.34	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7003	271	283	17.26	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7004	271	284	11.32	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7005	272	261	15.08	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7006	272	262	12.48	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7007	272	263	10.82	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7008	272	264	8.70	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7009	272	265	9.60	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7010	272	266	3.55	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7011	272	267	15.84	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7012	272	268	6.35	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7013	272	269	10.48	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7014	272	270	8.88	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7015	272	271	17.00	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7016	272	272	17.36	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7017	272	273	13.88	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7018	272	274	11.56	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7019	272	275	8.18	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7020	272	276	9.74	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7021	272	277	10.62	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7022	272	278	10.50	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7023	272	279	13.84	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7024	272	280	4.95	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7025	272	281	5.96	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7026	272	282	17.86	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7027	272	283	6.98	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7028	272	284	13.34	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7029	273	285	13.92	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7030	273	286	4.30	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7031	273	287	10.78	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7032	273	288	13.92	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7033	273	289	5.09	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7034	273	290	13.14	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7035	273	291	8.78	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7036	273	292	13.00	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7037	273	293	9.18	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7038	273	294	14.80	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7039	273	295	12.52	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7040	273	296	12.66	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7041	273	297	7.94	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7042	273	298	12.34	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7043	273	299	14.84	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7044	273	300	11.04	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7045	273	301	5.45	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7046	273	302	0.40	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7047	273	303	8.92	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7048	273	304	14.06	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7049	273	305	10.14	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7050	273	306	6.71	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7051	273	307	10.00	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7052	273	308	8.50	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7053	273	309	8.72	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7054	273	310	11.24	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7055	273	311	12.82	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7056	273	312	8.92	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7057	273	313	2.50	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7058	273	314	8.14	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7059	273	315	19.40	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7060	273	316	11.18	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7061	274	285	14.32	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7062	274	286	9.68	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7063	274	287	8.90	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7064	274	288	9.76	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7065	274	289	7.79	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7066	274	290	3.15	\N	2026-05-12 20:23:47	2026-05-12 20:23:47
7067	274	291	8.92	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7068	274	292	5.09	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7069	274	293	11.92	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7070	274	294	17.24	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7071	274	295	10.08	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7072	274	296	12.82	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7073	274	297	9.04	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7074	274	298	9.14	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7075	274	299	12.80	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7076	274	300	10.74	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7077	274	301	11.04	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7078	274	302	14.68	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7079	274	303	2.45	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7080	274	304	8.36	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7081	274	305	17.24	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7082	274	306	10.58	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7083	274	307	9.86	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7084	274	308	10.60	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7085	274	309	8.02	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7086	274	310	13.30	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7087	274	311	12.46	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7088	274	312	8.46	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7089	274	313	12.82	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7090	274	314	8.94	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7091	274	315	10.48	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7092	274	316	16.58	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7093	275	285	17.88	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7094	275	286	8.86	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7095	275	287	8.86	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7096	275	288	10.24	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7097	275	289	11.04	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7098	275	290	11.44	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7099	275	291	9.96	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7100	275	292	8.88	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7101	275	293	12.04	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7102	275	294	14.72	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7103	275	295	10.66	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7104	275	296	17.46	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7105	275	297	12.90	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7106	275	298	19.74	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7107	275	299	17.16	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7108	275	300	8.80	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7109	275	301	9.50	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7110	275	302	17.86	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7111	275	303	11.34	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7112	275	304	13.10	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7113	275	305	15.96	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7114	275	306	7.55	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7115	275	307	15.26	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7116	275	308	9.92	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7117	275	309	15.60	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7118	275	310	8.00	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7119	275	311	16.22	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7120	275	312	12.02	\N	2026-05-12 20:23:48	2026-05-12 20:23:48
7121	275	313	14.92	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7122	275	314	13.92	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7123	275	315	11.08	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7124	275	316	5.21	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7125	276	285	8.74	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7126	276	286	12.54	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7127	276	287	16.16	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7128	276	288	13.62	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7129	276	289	8.54	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7130	276	290	10.92	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7131	276	291	17.54	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7132	276	292	7.91	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7133	276	293	10.18	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7134	276	294	19.04	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7135	276	295	9.00	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7136	276	296	17.60	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7137	276	297	10.30	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7138	276	298	0.05	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7139	276	299	10.80	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7140	276	300	3.00	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7141	276	301	10.38	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7142	276	302	5.96	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7143	276	303	13.26	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7144	276	304	19.12	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7145	276	305	14.46	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7146	276	306	8.48	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7147	276	307	9.24	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7148	276	308	15.92	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7149	276	309	14.72	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7150	276	310	8.18	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7151	276	311	5.90	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7152	276	312	13.72	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7153	276	313	0.20	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7154	276	314	13.10	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7155	276	315	14.02	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7156	276	316	15.14	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7157	277	285	15.90	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7158	277	286	0.25	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7159	277	287	5.63	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7160	277	288	11.92	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7161	277	289	10.96	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7162	277	290	6.56	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7163	277	291	10.64	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7164	277	292	15.36	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7165	277	293	5.72	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7166	277	294	17.20	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7167	277	295	17.26	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7168	277	296	11.94	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7169	277	297	9.10	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7170	277	298	12.90	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7171	277	299	11.10	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7172	277	300	11.18	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7173	277	301	10.48	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7174	277	302	5.39	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7175	277	303	10.66	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7176	277	304	8.48	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7177	277	305	16.66	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7178	277	306	11.90	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7179	277	307	12.82	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7180	277	308	10.98	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7181	277	309	13.56	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7182	277	310	7.04	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7183	277	311	19.50	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7184	277	312	18.08	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7185	277	313	15.58	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7186	277	314	10.12	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7187	277	315	12.28	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7188	277	316	15.64	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7189	278	285	9.24	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7190	278	286	7.04	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7191	278	287	14.00	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7192	278	288	10.00	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7193	278	289	12.28	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7194	278	290	14.20	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7195	278	291	8.16	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7196	278	292	6.32	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7197	278	293	11.26	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7198	278	294	8.10	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7199	278	295	16.12	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7200	278	296	12.06	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7201	278	297	7.73	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7202	278	298	9.32	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7203	278	299	10.88	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7204	278	300	11.80	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7205	278	301	13.80	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7206	278	302	9.90	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7207	278	303	14.62	\N	2026-05-12 20:23:49	2026-05-12 20:23:49
7208	278	304	6.80	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7209	278	305	10.28	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7210	278	306	9.30	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7211	278	307	13.14	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7212	278	308	13.82	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7213	278	309	3.50	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7214	278	310	8.52	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7215	278	311	10.72	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7216	278	312	6.29	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7217	278	313	0.25	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7218	278	314	10.82	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7219	278	315	9.10	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7220	278	316	10.22	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7221	279	285	10.68	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7222	279	286	6.17	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7223	279	287	9.58	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7224	279	288	10.66	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7225	279	289	12.74	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7226	279	290	11.18	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7227	279	291	11.52	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7228	279	292	8.82	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7229	279	293	10.16	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7230	279	294	12.20	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7231	279	295	10.46	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7232	279	296	18.02	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7233	279	297	13.72	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7234	279	298	6.02	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7235	279	299	12.10	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7236	279	300	11.68	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7237	279	301	14.52	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7238	279	302	8.34	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7239	279	303	9.86	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7240	279	304	12.10	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7241	279	305	14.52	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7242	279	306	9.80	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7243	279	307	11.86	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7244	279	308	5.54	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7245	279	309	13.16	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7246	279	310	9.74	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7247	279	311	9.68	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7248	279	312	3.50	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7249	279	313	16.22	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7250	279	314	9.32	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7251	279	315	16.66	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7252	279	316	13.74	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7253	280	285	10.84	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7254	280	286	11.88	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7255	280	287	10.88	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7256	280	288	12.64	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7257	280	289	17.46	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7258	280	290	8.90	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7259	280	291	14.44	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7260	280	292	11.58	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7261	280	293	8.26	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7262	280	294	13.18	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7263	280	295	9.56	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7264	280	296	5.96	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7265	280	297	9.94	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7266	280	298	5.00	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7267	280	299	11.96	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7268	280	300	16.00	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7269	280	301	19.46	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7270	280	302	10.50	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7271	280	303	2.15	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7272	280	304	8.12	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7273	280	305	18.00	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7274	280	306	2.25	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7275	280	307	5.84	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7276	280	308	7.61	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7277	280	309	12.66	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7278	280	310	13.60	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7279	280	311	11.34	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7280	280	312	8.02	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7281	280	313	14.12	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7282	280	314	8.80	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7283	280	315	11.34	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7284	280	316	8.26	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7285	281	285	8.72	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7286	281	286	9.90	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7287	281	287	8.98	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7288	281	288	12.30	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7289	281	289	17.94	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7290	281	290	9.74	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7291	281	291	16.98	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7292	281	292	13.88	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7293	281	293	6.74	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7294	281	294	13.26	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7295	281	295	15.38	\N	2026-05-12 20:23:50	2026-05-12 20:23:50
7296	281	296	13.50	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7297	281	297	12.94	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7298	281	298	13.68	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7299	281	299	8.30	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7300	281	300	8.60	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7301	281	301	5.45	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7302	281	302	12.04	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7303	281	303	15.32	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7304	281	304	8.54	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7305	281	305	12.08	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7306	281	306	7.61	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7307	281	307	11.72	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7308	281	308	9.02	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7309	281	309	13.08	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7310	281	310	9.30	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7311	281	311	16.60	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7312	281	312	8.98	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7313	281	313	14.16	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7314	281	314	8.86	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7315	281	315	8.78	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7316	281	316	9.22	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7317	282	285	12.88	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7318	282	286	10.58	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7319	282	287	13.02	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7320	282	288	13.68	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7321	282	289	13.08	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7322	282	290	16.20	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7323	282	291	15.48	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7324	282	292	11.18	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7325	282	293	16.78	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7326	282	294	11.56	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7327	282	295	11.26	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7328	282	296	8.22	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7329	282	297	12.00	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7330	282	298	13.10	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7331	282	299	13.38	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7332	282	300	6.95	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7333	282	301	14.14	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7334	282	302	6.59	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7335	282	303	15.96	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7336	282	304	8.46	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7337	282	305	11.34	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7338	282	306	17.98	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7339	282	307	15.20	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7340	282	308	8.78	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7341	282	309	16.26	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7342	282	310	8.06	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7343	282	311	9.28	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7344	282	312	12.60	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7345	282	313	12.80	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7346	282	314	11.66	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7347	282	315	8.50	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7348	282	316	10.54	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7349	283	285	5.93	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7350	283	286	8.54	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7351	283	287	6.38	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7352	283	288	6.98	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7353	283	289	12.70	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7354	283	290	2.10	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7355	283	291	5.87	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7356	283	292	11.86	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7357	283	293	13.80	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7358	283	294	7.55	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7359	283	295	13.38	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7360	283	296	10.04	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7361	283	297	8.00	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7362	283	298	6.50	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7363	283	299	9.30	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7364	283	300	17.06	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7365	283	301	15.00	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7366	283	302	13.20	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7367	283	303	16.74	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7368	283	304	13.66	\N	2026-05-12 20:23:51	2026-05-12 20:23:51
7369	283	305	8.52	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7370	283	306	12.58	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7371	283	307	0.65	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7372	283	308	9.84	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7373	283	309	12.96	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7374	283	310	12.68	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7375	283	311	5.18	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7376	283	312	9.44	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7377	283	313	12.10	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7378	283	314	13.32	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7379	283	315	10.94	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7380	283	316	12.64	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7381	284	285	12.74	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7382	284	286	12.86	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7383	284	287	14.88	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7384	284	288	12.38	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7385	284	289	10.46	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7386	284	290	12.34	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7387	284	291	12.34	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7388	284	292	8.08	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7389	284	293	9.72	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7390	284	294	14.28	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7391	284	295	15.14	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7392	284	296	12.98	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7393	284	297	8.88	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7394	284	298	4.65	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7395	284	299	8.86	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7396	284	300	12.68	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7397	284	301	12.56	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7398	284	302	9.96	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7399	284	303	13.02	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7400	284	304	10.96	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7401	284	305	5.78	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7402	284	306	11.62	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7403	284	307	14.00	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7404	284	308	15.66	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7405	284	309	14.24	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7406	284	310	14.64	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7407	284	311	12.40	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7408	284	312	12.70	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7409	284	313	10.98	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7410	284	314	10.52	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7411	284	315	13.58	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7412	284	316	14.94	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7413	285	285	10.20	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7414	285	286	10.40	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7415	285	287	2.55	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7416	285	288	8.02	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7417	285	289	9.44	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7418	285	290	9.60	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7419	285	291	17.46	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7420	285	292	9.18	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7421	285	293	16.40	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7422	285	294	11.80	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7423	285	295	10.48	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7424	285	296	13.92	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7425	285	297	12.18	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7426	285	298	6.65	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7427	285	299	13.54	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7428	285	300	17.56	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7429	285	301	10.60	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7430	285	302	13.56	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7431	285	303	10.88	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7432	285	304	9.48	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7433	285	305	15.94	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7434	285	306	11.46	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7435	285	307	16.44	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7436	285	308	9.02	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7437	285	309	10.64	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7438	285	310	14.64	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7439	285	311	8.32	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7440	285	312	19.20	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7441	285	313	15.74	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7442	285	314	11.22	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7443	285	315	11.46	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7444	285	316	9.12	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7445	286	285	15.40	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7446	286	286	10.78	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7447	286	287	16.32	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7448	286	288	18.82	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7449	286	289	9.92	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7450	286	290	13.02	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7451	286	291	14.00	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7452	286	292	15.26	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7453	286	293	5.63	\N	2026-05-12 20:23:52	2026-05-12 20:23:52
7454	286	294	7.04	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7455	286	295	10.74	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7456	286	296	8.08	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7457	286	297	13.26	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7458	286	298	11.30	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7459	286	299	15.04	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7460	286	300	13.68	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7461	286	301	9.92	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7462	286	302	9.66	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7463	286	303	15.28	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7464	286	304	15.84	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7465	286	305	10.94	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7466	286	306	5.15	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7467	286	307	15.72	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7468	286	308	10.88	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7469	286	309	9.06	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7470	286	310	14.58	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7471	286	311	15.78	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7472	286	312	10.92	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7473	286	313	13.68	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7474	286	314	8.00	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7475	286	315	8.38	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7476	286	316	11.52	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7477	287	285	9.74	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7478	287	286	8.08	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7479	287	287	8.02	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7480	287	288	12.22	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7481	287	289	16.48	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7482	287	290	17.94	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7483	287	291	11.08	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7484	287	292	14.96	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7485	287	293	10.76	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7486	287	294	6.98	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7487	287	295	8.68	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7488	287	296	15.68	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7489	287	297	10.28	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7490	287	298	11.92	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7491	287	299	12.94	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7492	287	300	5.15	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7493	287	301	7.76	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7494	287	302	13.72	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7495	287	303	15.96	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7496	287	304	12.84	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7497	287	305	10.58	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7498	287	306	17.16	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7499	287	307	12.32	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7500	287	308	8.34	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7501	287	309	11.72	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7502	287	310	8.92	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7503	287	311	13.40	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7504	287	312	9.58	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7505	287	313	14.00	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7506	287	314	11.74	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7507	287	315	16.32	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7508	287	316	10.28	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7509	288	285	5.69	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7510	288	286	8.54	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7511	288	287	12.02	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7512	288	288	11.48	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7513	288	289	16.00	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7514	288	290	16.72	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7515	288	291	12.62	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7516	288	292	9.24	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7517	288	293	9.38	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7518	288	294	12.74	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7519	288	295	8.08	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7520	288	296	13.14	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7521	288	297	9.64	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7522	288	298	9.76	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7523	288	299	19.84	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7524	288	300	9.54	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7525	288	301	12.92	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7526	288	302	15.26	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7527	288	303	17.58	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7528	288	304	5.66	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7529	288	305	10.88	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7530	288	306	7.94	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7531	288	307	8.68	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7532	288	308	7.43	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7533	288	309	8.56	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7534	288	310	11.34	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7535	288	311	13.62	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7536	288	312	15.58	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7537	288	313	8.40	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7538	288	314	11.30	\N	2026-05-12 20:23:53	2026-05-12 20:23:53
7539	288	315	10.58	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7540	288	316	8.74	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7541	289	285	9.20	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7542	289	286	8.12	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7543	289	287	13.12	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7544	289	288	12.40	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7545	289	289	10.34	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7546	289	290	0.15	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7547	289	291	11.76	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7548	289	292	6.62	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7549	289	293	11.20	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7550	289	294	14.66	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7551	289	295	8.08	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7552	289	296	9.16	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7553	289	297	19.10	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7554	289	298	10.80	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7555	289	299	14.30	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7556	289	300	9.76	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7557	289	301	14.00	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7558	289	302	14.56	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7559	289	303	12.10	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7560	289	304	17.50	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7561	289	305	15.12	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7562	289	306	15.48	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7563	289	307	13.66	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7564	289	308	11.82	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7565	289	309	10.82	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7566	289	310	10.26	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7567	289	311	11.04	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7568	289	312	13.02	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7569	289	313	5.96	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7570	289	314	9.02	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7571	289	315	9.36	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7572	289	316	13.26	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7573	290	285	0.80	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7574	290	286	13.10	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7575	290	287	13.50	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7576	290	288	16.36	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7577	290	289	8.60	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7578	290	290	4.95	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7579	290	291	8.84	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7580	290	292	11.34	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7581	290	293	8.74	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7582	290	294	12.64	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7583	290	295	11.52	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7584	290	296	10.86	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7585	290	297	10.66	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7586	290	298	10.24	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7587	290	299	5.54	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7588	290	300	18.04	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7589	290	301	13.38	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7590	290	302	13.08	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7591	290	303	11.76	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7592	290	304	12.72	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7593	290	305	1.05	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7594	290	306	9.10	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7595	290	307	3.75	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7596	290	308	16.52	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7597	290	309	8.84	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7598	290	310	10.84	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7599	290	311	14.02	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7600	290	312	10.94	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7601	290	313	9.44	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7602	290	314	9.04	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7603	290	315	17.26	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7604	290	316	8.70	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7605	291	285	13.00	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7606	291	286	7.46	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7607	291	287	8.38	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7608	291	288	8.26	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7609	291	289	9.10	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7610	291	290	10.86	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7611	291	291	1.75	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7612	291	292	9.04	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7613	291	293	13.70	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7614	291	294	14.66	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7615	291	295	12.84	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7616	291	296	13.68	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7617	291	297	9.62	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7618	291	298	5.84	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7619	291	299	10.00	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7620	291	300	11.52	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7621	291	301	9.04	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7622	291	302	9.40	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7623	291	303	12.70	\N	2026-05-12 20:23:54	2026-05-12 20:23:54
7624	291	304	11.26	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7625	291	305	11.82	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7626	291	306	0.10	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7627	291	307	16.20	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7628	291	308	8.86	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7629	291	309	12.20	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7630	291	310	8.88	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7631	291	311	11.40	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7632	291	312	9.78	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7633	291	313	13.20	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7634	291	314	10.10	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7635	291	315	11.22	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7636	291	316	16.40	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7637	292	285	10.36	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7638	292	286	11.38	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7639	292	287	11.28	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7640	292	288	5.00	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7641	292	289	16.44	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7642	292	290	9.62	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7643	292	291	11.82	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7644	292	292	9.36	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7645	292	293	10.36	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7646	292	294	9.28	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7647	292	295	4.20	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7648	292	296	16.84	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7649	292	297	8.08	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7650	292	298	8.66	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7651	292	299	11.06	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7652	292	300	10.18	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7653	292	301	8.82	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7654	292	302	11.74	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7655	292	303	4.00	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7656	292	304	11.78	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7657	292	305	14.32	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7658	292	306	14.30	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7659	292	307	14.08	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7660	292	308	15.08	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7661	292	309	10.60	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7662	292	310	13.32	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7663	292	311	7.52	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7664	292	312	7.58	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7665	292	313	13.74	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7666	292	314	12.20	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7667	292	315	17.90	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7668	292	316	11.30	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7669	293	285	17.88	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7670	293	286	14.86	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7671	293	287	10.52	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7672	293	288	16.82	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7673	293	289	9.08	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7674	293	290	18.98	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7675	293	291	15.14	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7676	293	292	12.04	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7677	293	293	10.84	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7678	293	294	13.00	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7679	293	295	12.26	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7680	293	296	9.22	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7681	293	297	13.04	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7682	293	298	18.36	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7683	293	299	11.64	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7684	293	300	16.22	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7685	293	301	12.98	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7686	293	302	9.08	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7687	293	303	6.65	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7688	293	304	10.78	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7689	293	305	8.36	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7690	293	306	15.82	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7691	293	307	6.80	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7692	293	308	13.02	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7693	293	309	9.84	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7694	293	310	16.46	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7695	293	311	17.52	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7696	293	312	10.98	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7697	293	313	15.32	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7698	293	314	11.98	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7699	293	315	8.92	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7700	293	316	12.08	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7701	294	285	10.02	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7702	294	286	11.96	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7703	294	287	14.02	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7704	294	288	14.14	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7705	294	289	15.44	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7706	294	290	11.56	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7707	294	291	14.80	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7708	294	292	9.08	\N	2026-05-12 20:23:55	2026-05-12 20:23:55
7709	294	293	16.00	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7710	294	294	10.46	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7711	294	295	12.64	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7712	294	296	10.54	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7713	294	297	11.32	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7714	294	298	6.65	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7715	294	299	5.78	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7716	294	300	11.18	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7717	294	301	15.72	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7718	294	302	13.98	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7719	294	303	8.24	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7720	294	304	8.16	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7721	294	305	10.66	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7722	294	306	1.90	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7723	294	307	1.35	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7724	294	308	15.84	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7725	294	309	1.60	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7726	294	310	9.16	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7727	294	311	9.62	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7728	294	312	14.64	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7729	294	313	10.96	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7730	294	314	3.45	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7731	294	315	15.58	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7732	294	316	16.64	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7733	295	285	10.42	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7734	295	286	13.76	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7735	295	287	14.22	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7736	295	288	10.68	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7737	295	289	11.00	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7738	295	290	15.32	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7739	295	291	10.08	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7740	295	292	7.22	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7741	295	293	1.55	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7742	295	294	8.66	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7743	295	295	15.88	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7744	295	296	15.76	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7745	295	297	13.56	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7746	295	298	15.94	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7747	295	299	9.48	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7748	295	300	15.16	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7749	295	301	10.52	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7750	295	302	13.20	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7751	295	303	15.92	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7752	295	304	8.52	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7753	295	305	10.42	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7754	295	306	10.24	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7755	295	307	8.54	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7756	295	308	16.90	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7757	295	309	5.00	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7758	295	310	9.18	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7759	295	311	10.20	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7760	295	312	13.32	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7761	295	313	13.86	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7762	295	314	17.24	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7763	295	315	1.95	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7764	295	316	8.42	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7765	296	285	11.24	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7766	296	286	11.70	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7767	296	287	10.50	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7768	296	288	12.84	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7769	296	289	14.38	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7770	296	290	12.86	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7771	296	291	7.07	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7772	296	292	18.00	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7773	296	293	11.90	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7774	296	294	9.42	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7775	296	295	10.98	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7776	296	296	8.02	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7777	296	297	8.82	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7778	296	298	12.00	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7779	296	299	18.00	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7780	296	300	13.72	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7781	296	301	7.55	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7782	296	302	12.04	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7783	296	303	14.54	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7784	296	304	3.30	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7785	296	305	11.08	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7786	296	306	11.56	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7787	296	307	11.90	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7788	296	308	13.30	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7789	296	309	12.88	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7790	296	310	16.38	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7791	296	311	12.00	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7792	296	312	5.27	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7793	296	313	11.18	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7794	296	314	11.70	\N	2026-05-12 20:23:56	2026-05-12 20:23:56
7795	296	315	9.86	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7796	296	316	11.28	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7797	297	285	13.06	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7798	297	286	14.22	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7799	297	287	1.10	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7800	297	288	12.88	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7801	297	289	9.78	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7802	297	290	13.02	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7803	297	291	3.65	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7804	297	292	11.86	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7805	297	293	15.92	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7806	297	294	11.78	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7807	297	295	13.40	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7808	297	296	9.94	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7809	297	297	5.09	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7810	297	298	2.10	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7811	297	299	15.44	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7812	297	300	9.42	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7813	297	301	9.36	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7814	297	302	10.46	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7815	297	303	13.94	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7816	297	304	15.44	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7817	297	305	0.70	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7818	297	306	11.76	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7819	297	307	11.74	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7820	297	308	14.48	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7821	297	309	14.34	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7822	297	310	12.48	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7823	297	311	12.80	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7824	297	312	10.28	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7825	297	313	13.48	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7826	297	314	16.50	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7827	297	315	8.12	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7828	297	316	12.20	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7829	298	285	10.46	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7830	298	286	11.88	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7831	298	287	8.40	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7832	298	288	8.88	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7833	298	289	8.88	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7834	298	290	8.00	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7835	298	291	2.70	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7836	298	292	13.40	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7837	298	293	15.38	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7838	298	294	15.20	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7839	298	295	11.96	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7840	298	296	8.96	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7841	298	297	14.58	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7842	298	298	6.17	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7843	298	299	9.76	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7844	298	300	14.98	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7845	298	301	3.80	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7846	298	302	15.26	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7847	298	303	13.22	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7848	298	304	10.26	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7849	298	305	9.90	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7850	298	306	7.01	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7851	298	307	9.74	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7852	298	308	11.38	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7853	298	309	5.27	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7854	298	310	8.84	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7855	298	311	8.26	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7856	298	312	12.32	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7857	298	313	12.10	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7858	298	314	15.58	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7859	298	315	7.13	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7860	298	316	8.56	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7861	299	285	17.72	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7862	299	286	10.12	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7863	299	287	10.14	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7864	299	288	10.46	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7865	299	289	11.46	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7866	299	290	13.62	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7867	299	291	14.64	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7868	299	292	7.94	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7869	299	293	1.80	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7870	299	294	8.14	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7871	299	295	11.06	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7872	299	296	10.14	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7873	299	297	9.00	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7874	299	298	11.96	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7875	299	299	9.40	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7876	299	300	8.72	\N	2026-05-12 20:23:57	2026-05-12 20:23:57
7877	299	301	11.64	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7878	299	302	17.84	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7879	299	303	8.88	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7880	299	304	8.14	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7881	299	305	17.12	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7882	299	306	11.40	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7883	299	307	8.90	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7884	299	308	11.22	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7885	299	309	11.42	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7886	299	310	6.68	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7887	299	311	11.44	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7888	299	312	19.00	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7889	299	313	13.10	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7890	299	314	6.41	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7891	299	315	8.90	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7892	299	316	10.40	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7893	300	285	14.34	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7894	300	286	11.84	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7895	300	287	12.16	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7896	300	288	5.27	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7897	300	289	10.44	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7898	300	290	11.90	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7899	300	291	8.48	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7900	300	292	18.68	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7901	300	293	12.72	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7902	300	294	10.48	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7903	300	295	15.90	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7904	300	296	8.10	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7905	300	297	12.42	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7906	300	298	10.66	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7907	300	299	9.60	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7908	300	300	8.86	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7909	300	301	13.90	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7910	300	302	15.86	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7911	300	303	10.26	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7912	300	304	9.52	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7913	300	305	8.26	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7914	300	306	15.42	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7915	300	307	10.42	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7916	300	308	9.80	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7917	300	309	14.18	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7918	300	310	14.00	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7919	300	311	11.54	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7920	300	312	5.96	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7921	300	313	13.26	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7922	300	314	12.84	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7923	300	315	17.42	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7924	300	316	10.70	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7925	301	317	11.54	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7926	301	318	8.04	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7927	301	319	12.02	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7928	301	320	13.56	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7929	301	321	9.86	\N	2026-05-12 20:23:58	2026-05-12 20:23:58
7930	301	322	0.05	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7931	301	323	11.56	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7932	301	324	13.18	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7933	301	325	15.48	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7934	301	326	8.86	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7935	301	327	1.85	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7936	301	328	8.96	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7937	301	329	11.18	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7938	301	330	10.26	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7939	301	331	11.66	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7940	301	332	8.22	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7941	301	333	6.14	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7942	301	334	11.02	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7943	301	335	11.54	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7944	301	336	5.42	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7945	301	337	12.02	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7946	301	338	12.62	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7947	301	339	10.76	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7948	301	340	3.85	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7949	301	341	8.86	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7950	301	342	8.28	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7951	301	343	1.25	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7952	301	344	9.98	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7953	301	345	13.00	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7954	301	346	11.80	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7955	301	347	6.74	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7956	301	348	13.62	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7957	302	317	10.24	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7958	302	318	6.23	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7959	302	319	13.46	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7960	302	320	6.17	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7961	302	321	13.98	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7962	302	322	12.44	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7963	302	323	12.48	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7964	302	324	9.30	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7965	302	325	11.66	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7966	302	326	12.58	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7967	302	327	15.96	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7968	302	328	8.92	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7969	302	329	18.50	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7970	302	330	0.35	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7971	302	331	8.38	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7972	302	332	19.46	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7973	302	333	4.45	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7974	302	334	11.88	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7975	302	335	14.06	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7976	302	336	15.38	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7977	302	337	6.77	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7978	302	338	10.36	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7979	302	339	10.90	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7980	302	340	15.64	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7981	302	341	12.18	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7982	302	342	8.38	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7983	302	343	5.93	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7984	302	344	11.18	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7985	302	345	10.06	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7986	302	346	17.24	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7987	302	347	14.40	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7988	302	348	12.64	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7989	303	317	8.26	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7990	303	318	13.46	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7991	303	319	5.00	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7992	303	320	5.66	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7993	303	321	6.17	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7994	303	322	8.48	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7995	303	323	8.62	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7996	303	324	9.16	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7997	303	325	8.00	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7998	303	326	16.78	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
7999	303	327	15.46	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8000	303	328	12.88	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8001	303	329	10.72	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8002	303	330	15.22	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8003	303	331	13.52	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8004	303	332	19.70	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8005	303	333	8.58	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8006	303	334	10.74	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8007	303	335	8.94	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8008	303	336	8.22	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8009	303	337	13.82	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8010	303	338	13.42	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8011	303	339	15.44	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8012	303	340	13.06	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8013	303	341	17.76	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8014	303	342	13.04	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8015	303	343	6.98	\N	2026-05-12 20:23:59	2026-05-12 20:23:59
8016	303	344	19.76	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8017	303	345	15.28	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8018	303	346	9.92	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8019	303	347	10.64	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8020	303	348	8.68	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8021	304	317	11.74	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8022	304	318	10.72	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8023	304	319	14.24	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8024	304	320	17.80	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8025	304	321	7.49	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8026	304	322	12.56	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8027	304	323	9.04	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8028	304	324	8.20	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8029	304	325	19.94	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8030	304	326	8.22	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8031	304	327	13.08	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8032	304	328	8.24	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8033	304	329	9.90	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8034	304	330	11.74	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8035	304	331	11.06	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8036	304	332	13.66	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8037	304	333	7.76	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8038	304	334	10.38	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8039	304	335	5.48	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8040	304	336	12.38	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8041	304	337	19.62	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8042	304	338	14.86	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8043	304	339	12.08	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8044	304	340	13.30	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8045	304	341	11.94	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8046	304	342	14.64	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8047	304	343	10.62	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8048	304	344	16.90	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8049	304	345	15.54	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8050	304	346	10.00	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8051	304	347	11.60	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8052	304	348	10.56	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8053	305	317	9.24	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8054	305	318	13.48	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8055	305	319	11.90	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8056	305	320	8.10	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8057	305	321	12.20	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8058	305	322	11.50	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8059	305	323	9.82	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8060	305	324	7.97	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8061	305	325	13.46	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8062	305	326	7.43	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8063	305	327	10.72	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8064	305	328	11.14	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8065	305	329	19.86	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8066	305	330	10.80	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8067	305	331	9.88	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8068	305	332	12.00	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8069	305	333	17.46	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8070	305	334	9.72	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8071	305	335	12.42	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8072	305	336	15.24	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8073	305	337	14.70	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8074	305	338	12.34	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8075	305	339	5.99	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8076	305	340	11.70	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8077	305	341	15.90	\N	2026-05-12 20:24:00	2026-05-12 20:24:00
8078	305	342	9.64	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8079	305	343	4.10	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8080	305	344	10.88	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8081	305	345	10.74	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8082	305	346	12.26	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8083	305	347	19.76	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8084	305	348	15.30	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8085	306	317	12.32	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8086	306	318	15.02	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8087	306	319	14.22	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8088	306	320	11.46	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8089	306	321	15.54	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8090	306	322	9.92	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8091	306	323	13.02	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8092	306	324	6.41	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8093	306	325	16.44	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8094	306	326	8.86	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8095	306	327	14.88	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8096	306	328	2.60	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8097	306	329	13.32	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8098	306	330	1.50	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8099	306	331	13.52	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8100	306	332	8.40	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8101	306	333	14.80	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8102	306	334	12.26	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8103	306	335	12.44	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8104	306	336	11.54	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8105	306	337	13.32	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8106	306	338	6.92	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8107	306	339	10.88	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8108	306	340	9.26	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8109	306	341	14.14	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8110	306	342	14.12	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8111	306	343	9.82	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8112	306	344	4.40	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8113	306	345	10.02	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8114	306	346	8.18	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8115	306	347	5.27	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8116	306	348	1.70	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8117	307	317	13.32	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8118	307	318	10.84	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8119	307	319	15.50	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8120	307	320	9.82	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8121	307	321	11.36	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8122	307	322	13.00	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8123	307	323	8.70	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8124	307	324	10.82	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8125	307	325	10.68	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8126	307	326	8.74	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8127	307	327	10.28	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8128	307	328	16.90	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8129	307	329	10.48	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8130	307	330	5.00	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8131	307	331	11.40	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8132	307	332	15.16	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8133	307	333	9.64	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8134	307	334	14.90	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8135	307	335	13.40	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8136	307	336	11.98	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8137	307	337	8.00	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8138	307	338	7.31	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8139	307	339	17.98	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8140	307	340	11.34	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8141	307	341	10.62	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8142	307	342	11.06	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8143	307	343	12.16	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8144	307	344	8.56	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8145	307	345	13.28	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8146	307	346	2.10	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8147	307	347	10.48	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8148	307	348	8.00	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8149	308	317	7.13	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8150	308	318	11.86	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8151	308	319	9.18	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8152	308	320	17.92	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8153	308	321	12.46	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8154	308	322	10.26	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8155	308	323	9.00	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8156	308	324	11.14	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8157	308	325	13.40	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8158	308	326	0.45	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8159	308	327	16.76	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8160	308	328	12.94	\N	2026-05-12 20:24:01	2026-05-12 20:24:01
8161	308	329	14.44	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8162	308	330	5.45	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8163	308	331	9.14	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8164	308	332	17.64	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8165	308	333	7.04	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8166	308	334	11.46	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8167	308	335	5.30	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8168	308	336	13.72	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8169	308	337	13.40	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8170	308	338	12.26	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8171	308	339	16.78	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8172	308	340	12.92	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8173	308	341	12.04	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8174	308	342	8.40	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8175	308	343	11.44	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8176	308	344	6.89	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8177	308	345	14.14	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8178	308	346	5.15	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8179	308	347	11.84	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8180	308	348	15.90	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8181	309	317	8.00	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8182	309	318	6.83	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8183	309	319	10.66	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8184	309	320	12.80	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8185	309	321	8.18	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8186	309	322	3.90	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8187	309	323	10.76	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8188	309	324	6.14	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8189	309	325	11.86	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8190	309	326	10.60	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8191	309	327	10.28	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8192	309	328	14.54	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8193	309	329	11.72	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8194	309	330	5.39	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8195	309	331	11.36	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8196	309	332	10.74	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8197	309	333	10.34	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8198	309	334	8.24	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8199	309	335	17.00	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8200	309	336	14.64	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8201	309	337	12.08	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8202	309	338	12.64	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8203	309	339	4.70	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8204	309	340	10.58	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8205	309	341	5.57	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8206	309	342	7.61	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8207	309	343	10.02	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8208	309	344	11.22	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8209	309	345	11.26	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8210	309	346	12.12	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8211	309	347	12.34	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8212	309	348	8.10	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8213	310	317	14.66	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8214	310	318	5.09	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8215	310	319	14.22	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8216	310	320	11.08	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8217	310	321	11.98	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8218	310	322	13.94	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8219	310	323	17.48	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8220	310	324	12.38	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8221	310	325	12.38	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8222	310	326	10.26	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8223	310	327	13.32	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8224	310	328	8.50	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8225	310	329	5.96	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8226	310	330	12.54	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8227	310	331	12.04	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8228	310	332	9.36	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8229	310	333	12.54	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8230	310	334	11.50	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8231	310	335	14.82	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8232	310	336	9.46	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8233	310	337	8.08	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8234	310	338	10.80	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8235	310	339	13.08	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8236	310	340	13.76	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8237	310	341	6.38	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8238	310	342	7.82	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8239	310	343	17.96	\N	2026-05-12 20:24:02	2026-05-12 20:24:02
8240	310	344	10.42	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8241	310	345	15.06	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8242	310	346	7.61	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8243	310	347	12.98	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8244	310	348	14.22	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8245	311	317	11.22	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8246	311	318	13.04	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8247	311	319	7.52	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8248	311	320	3.60	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8249	311	321	11.38	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8250	311	322	11.64	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8251	311	323	13.00	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8252	311	324	12.54	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8253	311	325	10.88	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8254	311	326	15.00	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8255	311	327	16.06	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8256	311	328	9.30	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8257	311	329	10.38	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8258	311	330	12.22	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8259	311	331	13.24	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8260	311	332	13.88	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8261	311	333	7.73	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8262	311	334	13.18	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8263	311	335	10.32	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8264	311	336	12.84	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8265	311	337	8.60	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8266	311	338	14.42	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8267	311	339	10.74	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8268	311	340	13.76	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8269	311	341	11.28	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8270	311	342	12.66	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8271	311	343	11.24	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8272	311	344	9.26	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8273	311	345	10.34	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8274	311	346	15.80	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8275	311	347	17.72	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8276	311	348	10.70	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8277	312	317	11.28	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8278	312	318	12.36	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8279	312	319	12.22	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8280	312	320	8.60	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8281	312	321	7.34	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8282	312	322	11.00	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8283	312	323	13.32	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8284	312	324	9.14	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8285	312	325	18.78	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8286	312	326	10.06	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8287	312	327	9.64	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8288	312	328	1.95	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8289	312	329	12.96	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8290	312	330	4.55	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8291	312	331	12.14	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8292	312	332	12.98	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8293	312	333	12.74	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8294	312	334	11.66	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8295	312	335	5.99	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8296	312	336	12.54	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8297	312	337	9.70	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8298	312	338	5.51	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8299	312	339	11.48	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8300	312	340	12.58	\N	2026-05-12 20:24:03	2026-05-12 20:24:03
8301	312	341	13.74	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8302	312	342	8.60	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8303	312	343	12.94	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8304	312	344	15.40	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8305	312	345	10.48	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8306	312	346	13.14	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8307	312	347	10.18	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8308	312	348	17.34	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8309	313	317	11.00	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8310	313	318	13.20	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8311	313	319	9.22	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8312	313	320	8.96	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8313	313	321	16.94	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8314	313	322	15.80	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8315	313	323	12.44	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8316	313	324	9.56	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8317	313	325	6.77	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8318	313	326	6.08	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8319	313	327	14.06	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8320	313	328	12.38	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8321	313	329	11.86	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8322	313	330	17.02	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8323	313	331	10.08	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8324	313	332	9.98	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8325	313	333	11.48	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8326	313	334	18.00	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8327	313	335	11.04	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8328	313	336	11.02	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8329	313	337	10.18	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8330	313	338	9.32	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8331	313	339	10.54	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8332	313	340	12.64	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8333	313	341	15.42	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8334	313	342	11.34	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8335	313	343	12.42	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8336	313	344	0.85	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8337	313	345	8.14	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8338	313	346	13.04	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8339	313	347	10.82	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8340	313	348	10.30	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8341	314	317	1.05	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8342	314	318	13.82	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8343	314	319	14.74	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8344	314	320	11.78	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8345	314	321	3.75	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8346	314	322	13.08	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8347	314	323	11.66	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8348	314	324	9.06	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8349	314	325	13.88	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8350	314	326	11.66	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8351	314	327	14.36	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8352	314	328	8.96	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8353	314	329	13.66	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8354	314	330	15.18	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8355	314	331	9.72	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8356	314	332	8.24	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8357	314	333	11.54	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8358	314	334	10.02	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8359	314	335	8.96	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8360	314	336	10.50	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8361	314	337	11.48	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8362	314	338	17.76	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8363	314	339	13.34	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8364	314	340	17.16	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8365	314	341	11.00	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8366	314	342	3.00	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8367	314	343	11.88	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8368	314	344	9.02	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8369	314	345	12.22	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8370	314	346	11.46	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8371	314	347	15.04	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8372	314	348	12.64	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8373	315	317	9.58	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8374	315	318	6.59	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8375	315	319	15.16	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8376	315	320	5.90	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8377	315	321	13.06	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8378	315	322	11.68	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8379	315	323	13.22	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8380	315	324	8.78	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8381	315	325	12.22	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8382	315	326	13.92	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8383	315	327	6.95	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8384	315	328	10.64	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8385	315	329	13.52	\N	2026-05-12 20:24:04	2026-05-12 20:24:04
8386	315	330	12.24	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8387	315	331	15.22	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8388	315	332	11.36	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8389	315	333	12.38	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8390	315	334	14.62	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8391	315	335	16.78	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8392	315	336	9.92	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8393	315	337	8.78	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8394	315	338	18.88	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8395	315	339	9.12	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8396	315	340	8.02	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8397	315	341	8.32	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8398	315	342	13.78	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8399	315	343	14.34	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8400	315	344	7.34	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8401	315	345	9.16	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8402	315	346	5.18	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8403	315	347	12.00	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8404	315	348	10.46	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8405	316	317	11.76	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8406	316	318	14.40	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8407	316	319	15.04	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8408	316	320	16.12	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8409	316	321	14.92	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8410	316	322	8.42	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8411	316	323	16.64	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8412	316	324	11.58	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8413	316	325	11.88	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8414	316	326	11.70	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8415	316	327	10.26	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8416	316	328	15.64	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8417	316	329	13.98	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8418	316	330	14.82	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8419	316	331	14.20	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8420	316	332	8.44	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8421	316	333	11.24	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8422	316	334	9.48	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8423	316	335	10.84	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8424	316	336	13.18	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8425	316	337	13.82	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8426	316	338	10.38	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8427	316	339	16.34	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8428	316	340	5.75	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8429	316	341	16.18	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8430	316	342	3.85	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8431	316	343	14.46	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8432	316	344	17.34	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8433	316	345	15.72	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8434	316	346	10.66	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8435	316	347	11.86	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8436	316	348	14.26	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8437	317	317	11.08	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8438	317	318	15.12	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8439	317	319	8.88	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8440	317	320	11.82	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8441	317	321	10.56	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8442	317	322	7.67	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8443	317	323	12.44	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8444	317	324	10.46	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8445	317	325	16.38	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8446	317	326	15.72	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8447	317	327	11.26	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8448	317	328	9.88	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8449	317	329	16.74	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8450	317	330	8.98	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8451	317	331	13.94	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8452	317	332	12.02	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8453	317	333	9.94	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8454	317	334	14.28	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8455	317	335	12.28	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8456	317	336	10.58	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8457	317	337	10.94	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8458	317	338	11.88	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8459	317	339	10.34	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8460	317	340	14.98	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8461	317	341	12.24	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8462	317	342	11.28	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8463	317	343	9.76	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8464	317	344	4.45	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8465	317	345	10.68	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8466	317	346	7.31	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8467	317	347	9.90	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8468	317	348	14.10	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8469	318	317	12.54	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8470	318	318	15.86	\N	2026-05-12 20:24:05	2026-05-12 20:24:05
8471	318	319	15.98	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8472	318	320	12.86	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8473	318	321	10.90	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8474	318	322	7.52	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8475	318	323	10.96	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8476	318	324	14.02	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8477	318	325	14.50	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8478	318	326	7.37	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8479	318	327	11.72	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8480	318	328	5.12	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8481	318	329	14.92	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8482	318	330	11.46	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8483	318	331	17.40	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8484	318	332	11.30	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8485	318	333	6.05	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8486	318	334	14.04	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8487	318	335	12.32	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8488	318	336	11.72	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8489	318	337	8.04	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8490	318	338	16.88	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8491	318	339	8.92	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8492	318	340	8.38	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8493	318	341	6.98	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8494	318	342	10.06	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8495	318	343	3.30	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8496	318	344	15.90	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8497	318	345	8.66	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8498	318	346	8.14	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8499	318	347	11.22	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8500	318	348	11.92	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8501	319	317	10.70	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8502	319	318	13.44	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8503	319	319	12.40	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8504	319	320	9.66	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8505	319	321	17.52	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8506	319	322	15.36	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8507	319	323	12.94	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8508	319	324	12.54	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8509	319	325	6.56	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8510	319	326	5.51	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8511	319	327	13.20	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8512	319	328	9.52	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8513	319	329	10.72	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8514	319	330	10.18	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8515	319	331	15.82	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8516	319	332	7.46	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8517	319	333	9.08	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8518	319	334	13.12	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8519	319	335	8.28	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8520	319	336	14.52	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8521	319	337	11.48	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8522	319	338	8.74	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8523	319	339	11.82	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8524	319	340	13.64	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8525	319	341	9.68	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8526	319	342	10.26	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8527	319	343	10.84	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8528	319	344	6.86	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8529	319	345	8.84	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8530	319	346	9.10	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8531	319	347	14.80	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8532	319	348	15.94	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8533	320	317	17.08	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8534	320	318	10.00	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8535	320	319	16.30	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8536	320	320	10.00	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8537	320	321	11.40	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8538	320	322	14.94	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8539	320	323	9.98	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8540	320	324	8.24	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8541	320	325	14.40	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8542	320	326	9.94	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8543	320	327	2.75	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8544	320	328	8.88	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8545	320	329	7.07	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8546	320	330	11.30	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8547	320	331	12.88	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8548	320	332	12.34	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8549	320	333	8.72	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8550	320	334	11.32	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8551	320	335	12.66	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8552	320	336	13.04	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8553	320	337	14.28	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8554	320	338	10.82	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8555	320	339	13.90	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8556	320	340	10.52	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8557	320	341	19.82	\N	2026-05-12 20:24:06	2026-05-12 20:24:06
8558	320	342	12.30	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8559	320	343	12.44	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8560	320	344	15.64	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8561	320	345	13.22	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8562	320	346	4.10	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8563	320	347	12.08	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8564	320	348	11.76	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8565	321	317	17.62	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8566	321	318	6.83	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8567	321	319	11.02	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8568	321	320	9.32	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8569	321	321	13.34	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8570	321	322	14.14	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8571	321	323	9.90	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8572	321	324	17.00	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8573	321	325	9.68	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8574	321	326	15.24	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8575	321	327	9.24	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8576	321	328	12.92	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8577	321	329	5.99	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8578	321	330	10.90	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8579	321	331	16.54	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8580	321	332	11.60	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8581	321	333	8.12	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8582	321	334	6.80	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8583	321	335	9.24	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8584	321	336	13.54	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8585	321	337	12.02	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8586	321	338	1.85	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8587	321	339	8.58	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8588	321	340	11.10	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8589	321	341	18.44	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8590	321	342	8.96	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8591	321	343	12.70	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8592	321	344	17.48	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8593	321	345	12.72	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8594	321	346	11.66	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8595	321	347	14.86	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8596	321	348	8.52	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8597	322	317	13.78	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8598	322	318	12.22	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8599	322	319	11.00	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8600	322	320	7.55	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8601	322	321	10.62	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8602	322	322	6.44	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8603	322	323	11.80	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8604	322	324	10.14	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8605	322	325	4.55	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8606	322	326	15.96	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8607	322	327	10.02	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8608	322	328	8.88	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8609	322	329	11.26	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8610	322	330	7.31	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8611	322	331	5.39	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8612	322	332	8.08	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8613	322	333	10.22	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8614	322	334	16.86	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8615	322	335	11.18	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8616	322	336	13.46	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8617	322	337	8.80	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8618	322	338	13.64	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8619	322	339	11.32	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8620	322	340	9.06	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8621	322	341	7.67	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8622	322	342	11.50	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8623	322	343	6.86	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8624	322	344	12.80	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8625	322	345	9.60	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8626	322	346	14.14	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8627	322	347	8.80	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8628	322	348	10.78	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8629	323	317	14.22	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8630	323	318	8.96	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8631	323	319	10.88	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8632	323	320	11.24	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8633	323	321	11.34	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8634	323	322	2.25	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8635	323	323	8.50	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8636	323	324	14.88	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8637	323	325	14.32	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8638	323	326	8.70	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8639	323	327	13.34	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8640	323	328	10.96	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8641	323	329	13.06	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8642	323	330	14.76	\N	2026-05-12 20:24:07	2026-05-12 20:24:07
8643	323	331	18.30	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8644	323	332	15.44	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8645	323	333	9.22	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8646	323	334	13.26	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8647	323	335	9.34	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8648	323	336	15.10	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8649	323	337	13.10	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8650	323	338	11.26	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8651	323	339	9.52	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8652	323	340	8.06	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8653	323	341	13.06	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8654	323	342	0.65	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8655	323	343	8.36	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8656	323	344	12.26	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8657	323	345	15.24	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8658	323	346	7.67	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8659	323	347	15.80	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8660	323	348	11.60	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8661	324	317	8.56	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8662	324	318	12.52	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8663	324	319	10.32	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8664	324	320	8.76	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8665	324	321	11.26	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8666	324	322	13.02	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8667	324	323	8.74	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8668	324	324	9.54	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8669	324	325	11.90	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8670	324	326	14.18	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8671	324	327	7.25	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8672	324	328	10.92	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8673	324	329	9.82	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8674	324	330	13.46	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8675	324	331	7.37	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8676	324	332	9.52	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8677	324	333	11.66	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8678	324	334	11.06	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8679	324	335	11.50	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8680	324	336	13.80	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8681	324	337	12.50	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8682	324	338	10.40	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8683	324	339	14.90	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8684	324	340	13.76	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8685	324	341	12.18	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8686	324	342	11.40	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8687	324	343	9.28	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8688	324	344	11.62	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8689	324	345	10.46	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8690	324	346	14.28	\N	2026-05-12 20:24:08	2026-05-12 20:24:08
8691	324	347	8.34	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8692	324	348	11.12	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8693	325	317	12.96	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8694	325	318	13.84	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8695	325	319	5.84	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8696	325	320	11.20	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8697	325	321	12.16	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8698	325	322	11.18	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8699	325	323	10.76	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8700	325	324	5.57	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8701	325	325	12.80	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8702	325	326	14.90	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8703	325	327	15.78	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8704	325	328	14.84	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8705	325	329	8.56	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8706	325	330	6.65	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8707	325	331	3.35	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8708	325	332	12.70	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8709	325	333	8.92	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8710	325	334	4.25	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8711	325	335	15.42	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8712	325	336	5.72	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8713	325	337	5.51	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8714	325	338	16.90	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8715	325	339	14.96	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8716	325	340	14.64	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8717	325	341	13.18	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8718	325	342	10.14	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8719	325	343	17.66	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8720	325	344	13.92	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8721	325	345	13.62	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8722	325	346	13.76	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8723	325	347	6.11	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8724	325	348	11.06	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8725	326	317	7.88	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8726	326	318	10.54	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8727	326	319	10.04	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8728	326	320	10.74	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8729	326	321	10.36	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8730	326	322	12.56	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8731	326	323	8.28	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8732	326	324	3.05	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8733	326	325	12.62	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8734	326	326	17.36	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8735	326	327	9.10	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8736	326	328	16.16	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8737	326	329	8.58	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8738	326	330	13.58	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8739	326	331	9.90	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8740	326	332	10.02	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8741	326	333	9.50	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8742	326	334	11.20	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8743	326	335	6.71	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8744	326	336	12.04	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8745	326	337	0.05	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8746	326	338	13.88	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8747	326	339	14.34	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8748	326	340	10.88	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8749	326	341	8.08	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8750	326	342	11.52	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8751	326	343	12.42	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8752	326	344	13.82	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8753	326	345	9.00	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8754	326	346	14.98	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8755	326	347	11.74	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8756	326	348	10.02	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8757	327	317	11.44	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8758	327	318	8.80	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8759	327	319	18.54	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8760	327	320	15.96	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8761	327	321	12.72	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8762	327	322	6.32	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8763	327	323	8.50	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8764	327	324	10.94	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8765	327	325	10.86	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8766	327	326	11.36	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8767	327	327	12.38	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8768	327	328	14.62	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8769	327	329	10.28	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8770	327	330	8.20	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8771	327	331	5.24	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8772	327	332	18.38	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8773	327	333	15.52	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8774	327	334	18.58	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8775	327	335	12.50	\N	2026-05-12 20:24:09	2026-05-12 20:24:09
8776	327	336	10.32	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8777	327	337	12.24	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8778	327	338	0.10	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8779	327	339	11.14	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8780	327	340	15.88	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8781	327	341	12.56	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8782	327	342	12.10	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8783	327	343	8.98	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8784	327	344	5.30	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8785	327	345	10.18	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8786	327	346	5.06	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8787	327	347	15.08	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8788	327	348	10.04	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8789	328	317	8.58	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8790	328	318	14.94	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8791	328	319	10.20	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8792	328	320	13.48	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8793	328	321	14.42	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8794	328	322	11.80	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8795	328	323	18.42	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8796	328	324	15.68	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8797	328	325	10.04	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8798	328	326	8.02	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8799	328	327	10.56	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8800	328	328	10.08	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8801	328	329	17.58	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8802	328	330	10.32	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8803	328	331	4.30	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8804	328	332	13.36	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8805	328	333	3.50	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8806	328	334	13.46	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8807	328	335	11.26	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8808	328	336	11.90	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8809	328	337	13.70	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8810	328	338	5.00	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8811	328	339	12.40	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8812	328	340	6.05	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8813	328	341	4.90	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8814	328	342	14.56	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8815	328	343	10.20	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8816	328	344	1.60	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8817	328	345	17.12	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8818	328	346	8.76	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8819	328	347	10.10	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
8820	328	348	8.50	\N	2026-05-12 20:24:10	2026-05-12 20:24:10
\.


--
-- Data for Name: guardians; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.guardians (id, first_name, last_name, phone, email, profession, address, is_active, deleted_at, created_at, updated_at, user_id) FROM stdin;
1	Zara	OUMAR	+235 66 01 00 01	parent1@edupilot.td	\N	\N	t	\N	2026-05-12 21:49:10	2026-05-12 21:49:10	131
2	Moussa	HASSAN	+235 66 01 00 02	parent2@edupilot.td	\N	\N	t	\N	2026-05-12 21:49:10	2026-05-12 21:49:10	132
\.


--
-- Data for Name: job_batches; Type: TABLE DATA; Schema: public; Owner: -
--

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: -
--

COPY public.jobs (id, queue, payload, attempts, reserved_at, available_at, created_at) FROM stdin;
\.


--
-- Data for Name: localities; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.localities (id, commune_id, name, is_active, created_at, updated_at) FROM stdin;
1	1	Centre de N'Djamena	t	2026-05-12 20:04:42	2026-05-12 20:04:42
2	2	Centre de Chari-Baguirmi	t	2026-05-12 20:04:42	2026-05-12 20:04:42
3	3	Centre de Logone Occidental	t	2026-05-12 20:04:42	2026-05-12 20:04:42
4	4	Centre de Logone Oriental	t	2026-05-12 20:04:42	2026-05-12 20:04:42
5	5	Centre de Mayo-Kebbi Est	t	2026-05-12 20:04:42	2026-05-12 20:04:42
6	6	Centre de Mayo-Kebbi Ouest	t	2026-05-12 20:04:42	2026-05-12 20:04:42
7	7	Centre de Moyen-Chari	t	2026-05-12 20:04:42	2026-05-12 20:04:42
8	8	Centre de Ouaddaï	t	2026-05-12 20:04:42	2026-05-12 20:04:42
9	9	Centre de Borkou	t	2026-05-12 20:04:42	2026-05-12 20:04:42
10	10	Centre de Ennedi Est	t	2026-05-12 20:04:42	2026-05-12 20:04:42
11	11	Centre de Ennedi Ouest	t	2026-05-12 20:04:42	2026-05-12 20:04:42
12	12	Centre de Tibesti	t	2026-05-12 20:04:42	2026-05-12 20:04:42
13	13	Centre de Kanem	t	2026-05-12 20:04:42	2026-05-12 20:04:42
14	14	Centre de Lac	t	2026-05-12 20:04:42	2026-05-12 20:04:42
15	15	Centre de Bahr El Gazel	t	2026-05-12 20:04:42	2026-05-12 20:04:42
16	16	Centre de Batha	t	2026-05-12 20:04:42	2026-05-12 20:04:42
17	17	Centre de Wadi Fira	t	2026-05-12 20:04:42	2026-05-12 20:04:42
18	18	Centre de Sila	t	2026-05-12 20:04:42	2026-05-12 20:04:42
19	19	Centre de Hadjer-Lamis	t	2026-05-12 20:04:42	2026-05-12 20:04:42
20	20	Centre de Guéra	t	2026-05-12 20:04:42	2026-05-12 20:04:42
21	21	Centre de Salamat	t	2026-05-12 20:04:42	2026-05-12 20:04:42
22	22	Centre de Mandoul	t	2026-05-12 20:04:43	2026-05-12 20:04:43
23	23	Centre de Tandjilé	t	2026-05-12 20:04:43	2026-05-12 20:04:43
\.


--
-- Data for Name: migrations; Type: TABLE DATA; Schema: public; Owner: -
--

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	2026_05_12_074617_create_permission_tables	1
5	2026_05_12_074618_create_activity_log_table	1
6	2026_05_12_074619_add_event_column_to_activity_log_table	1
7	2026_05_12_074620_add_batch_uuid_column_to_activity_log_table	1
8	2026_05_12_080000_create_countries_table	1
9	2026_05_12_080001_create_regions_table	1
10	2026_05_12_080002_create_departments_table	1
11	2026_05_12_080003_create_communes_table	1
12	2026_05_12_080004_create_localities_table	1
13	2026_05_12_080005_create_schools_table	1
14	2026_05_12_080006_create_school_years_table	1
15	2026_05_12_080007_add_foreign_keys_to_users_table	1
16	2026_05_12_090000_create_classes_table	1
17	2026_05_12_090001_create_guardians_table	1
18	2026_05_12_090002_create_students_table	1
19	2026_05_12_090003_create_student_guardian_table	1
20	2026_05_12_090004_create_enrollments_table	1
21	2026_05_12_100000_create_teachers_table	1
22	2026_05_12_100001_create_subjects_table	1
23	2026_05_12_100002_create_teacher_assignments_table	1
24	2026_05_12_110000_create_attendances_table	1
25	2026_05_12_120000_create_evaluations_table	1
26	2026_05_12_120001_create_grades_table	1
27	2026_05_12_130000_create_report_cards_table	1
28	2026_05_12_140000_create_exams_table	1
29	2026_05_12_140001_create_exam_candidates_table	1
30	2026_05_12_150000_add_user_id_to_guardians_table	2
31	2026_05_12_150001_add_user_id_to_students_table	2
\.


--
-- Data for Name: model_has_permissions; Type: TABLE DATA; Schema: public; Owner: -
--

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: -
--

COPY public.model_has_roles (role_id, model_type, model_id) FROM stdin;
97	App\\Models\\User	11
98	App\\Models\\User	12
99	App\\Models\\User	13
99	App\\Models\\User	14
103	App\\Models\\User	131
103	App\\Models\\User	132
104	App\\Models\\User	133
104	App\\Models\\User	134
104	App\\Models\\User	135
102	App\\Models\\User	33
102	App\\Models\\User	34
102	App\\Models\\User	35
102	App\\Models\\User	36
102	App\\Models\\User	37
102	App\\Models\\User	38
102	App\\Models\\User	39
102	App\\Models\\User	40
102	App\\Models\\User	41
102	App\\Models\\User	42
102	App\\Models\\User	43
102	App\\Models\\User	44
102	App\\Models\\User	45
102	App\\Models\\User	46
102	App\\Models\\User	47
102	App\\Models\\User	48
102	App\\Models\\User	49
102	App\\Models\\User	50
102	App\\Models\\User	51
102	App\\Models\\User	52
102	App\\Models\\User	53
102	App\\Models\\User	54
102	App\\Models\\User	55
102	App\\Models\\User	56
\.


--
-- Data for Name: password_reset_tokens; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.password_reset_tokens (email, token, created_at) FROM stdin;
\.


--
-- Data for Name: permissions; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.permissions (id, name, guard_name, created_at, updated_at) FROM stdin;
973	territory.view-any	web	2026-05-12 19:45:25	2026-05-12 19:45:25
974	territory.create	web	2026-05-12 19:45:25	2026-05-12 19:45:25
975	territory.update	web	2026-05-12 19:45:25	2026-05-12 19:45:25
976	territory.delete	web	2026-05-12 19:45:25	2026-05-12 19:45:25
977	schools.view-any	web	2026-05-12 19:45:25	2026-05-12 19:45:25
978	schools.view	web	2026-05-12 19:45:25	2026-05-12 19:45:25
979	schools.create	web	2026-05-12 19:45:25	2026-05-12 19:45:25
980	schools.update	web	2026-05-12 19:45:25	2026-05-12 19:45:25
981	schools.delete	web	2026-05-12 19:45:25	2026-05-12 19:45:25
982	schools.activate	web	2026-05-12 19:45:25	2026-05-12 19:45:25
983	schools.assign-director	web	2026-05-12 19:45:25	2026-05-12 19:45:25
984	school-years.view-any	web	2026-05-12 19:45:25	2026-05-12 19:45:25
985	school-years.create	web	2026-05-12 19:45:25	2026-05-12 19:45:25
986	school-years.update	web	2026-05-12 19:45:25	2026-05-12 19:45:25
987	school-years.activate	web	2026-05-12 19:45:25	2026-05-12 19:45:25
988	classes.view-any	web	2026-05-12 19:45:25	2026-05-12 19:45:25
989	classes.view	web	2026-05-12 19:45:25	2026-05-12 19:45:25
990	classes.create	web	2026-05-12 19:45:25	2026-05-12 19:45:25
991	classes.update	web	2026-05-12 19:45:25	2026-05-12 19:45:25
992	classes.delete	web	2026-05-12 19:45:25	2026-05-12 19:45:25
993	classes.assign-teacher	web	2026-05-12 19:45:25	2026-05-12 19:45:25
994	students.view-any	web	2026-05-12 19:45:25	2026-05-12 19:45:25
995	students.view	web	2026-05-12 19:45:25	2026-05-12 19:45:25
996	students.create	web	2026-05-12 19:45:25	2026-05-12 19:45:25
997	students.update	web	2026-05-12 19:45:25	2026-05-12 19:45:25
998	students.delete	web	2026-05-12 19:45:25	2026-05-12 19:45:25
999	students.transfer	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1000	students.print	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1001	guardians.view-any	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1002	guardians.view	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1003	guardians.create	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1004	guardians.update	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1005	teachers.view-any	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1006	teachers.view	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1007	teachers.create	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1008	teachers.update	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1009	teachers.delete	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1010	teachers.assign	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1011	teachers.unassign	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1012	subjects.view-any	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1013	subjects.view	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1014	subjects.create	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1015	subjects.update	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1016	subjects.delete	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1017	subjects.assign	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1018	enrollments.view-any	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1019	enrollments.view	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1020	enrollments.create	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1021	enrollments.update	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1022	enrollments.transfer	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1023	enrollments.cancel	web	2026-05-12 19:45:25	2026-05-12 19:45:25
1024	attendances.view-any	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1025	attendances.view	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1026	attendances.create	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1027	attendances.update	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1028	grades.view-any	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1029	grades.view	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1030	grades.create	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1031	grades.update	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1032	grades.lock	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1033	grades.unlock	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1034	report-cards.view-any	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1035	report-cards.view	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1036	report-cards.generate	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1037	report-cards.print	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1038	exams.view-any	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1039	exams.view	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1040	exams.create	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1041	exams.update	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1042	exams.delete	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1043	exams.register	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1044	exams.results	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1045	reports.view	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1046	reports.export	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1047	audit.view	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1048	users.view-any	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1049	users.view	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1050	users.create	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1051	users.update	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1052	users.delete	web	2026-05-12 19:45:26	2026-05-12 19:45:26
1053	users.assign-role	web	2026-05-12 19:45:26	2026-05-12 19:45:26
\.


--
-- Data for Name: regions; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.regions (id, country_id, name, code, is_active, created_at, updated_at) FROM stdin;
1	1	N'Djamena	NDJ	t	2026-05-12 20:04:41	2026-05-12 20:04:41
2	1	Chari-Baguirmi	CB	t	2026-05-12 20:04:42	2026-05-12 20:04:42
3	1	Logone Occidental	LO	t	2026-05-12 20:04:42	2026-05-12 20:04:42
4	1	Logone Oriental	LOR	t	2026-05-12 20:04:42	2026-05-12 20:04:42
5	1	Mayo-Kebbi Est	MKE	t	2026-05-12 20:04:42	2026-05-12 20:04:42
6	1	Mayo-Kebbi Ouest	MKO	t	2026-05-12 20:04:42	2026-05-12 20:04:42
7	1	Moyen-Chari	MC	t	2026-05-12 20:04:42	2026-05-12 20:04:42
8	1	Ouaddaï	OUA	t	2026-05-12 20:04:42	2026-05-12 20:04:42
9	1	Borkou	BOR	t	2026-05-12 20:04:42	2026-05-12 20:04:42
10	1	Ennedi Est	ENE	t	2026-05-12 20:04:42	2026-05-12 20:04:42
11	1	Ennedi Ouest	ENO	t	2026-05-12 20:04:42	2026-05-12 20:04:42
12	1	Tibesti	TIB	t	2026-05-12 20:04:42	2026-05-12 20:04:42
13	1	Kanem	KAN	t	2026-05-12 20:04:42	2026-05-12 20:04:42
14	1	Lac	LAC	t	2026-05-12 20:04:42	2026-05-12 20:04:42
15	1	Bahr El Gazel	BEG	t	2026-05-12 20:04:42	2026-05-12 20:04:42
16	1	Batha	BAT	t	2026-05-12 20:04:42	2026-05-12 20:04:42
17	1	Wadi Fira	WFI	t	2026-05-12 20:04:42	2026-05-12 20:04:42
18	1	Sila	SIL	t	2026-05-12 20:04:42	2026-05-12 20:04:42
19	1	Hadjer-Lamis	HLM	t	2026-05-12 20:04:42	2026-05-12 20:04:42
20	1	Guéra	GUE	t	2026-05-12 20:04:42	2026-05-12 20:04:42
21	1	Salamat	SAL	t	2026-05-12 20:04:42	2026-05-12 20:04:42
22	1	Mandoul	MAN	t	2026-05-12 20:04:42	2026-05-12 20:04:42
23	1	Tandjilé	TAN	t	2026-05-12 20:04:43	2026-05-12 20:04:43
\.


--
-- Data for Name: report_cards; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.report_cards (id, student_id, school_class_id, school_year_id, period, overall_average, rank, absences_count, director_comment, is_published, published_at, created_at, updated_at, deleted_at) FROM stdin;
22	22	2	2	trimester_1	10.40	18	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
23	23	2	2	trimester_1	11.52	9	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
24	24	2	2	trimester_1	11.20	14	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
25	25	2	2	trimester_1	12.60	3	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
26	26	2	2	trimester_1	11.26	12	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
27	27	2	2	trimester_1	10.25	19	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
28	28	2	2	trimester_1	9.34	22	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
29	29	2	2	trimester_1	14.13	1	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
1	1	1	2	trimester_1	10.26	16	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
2	2	1	2	trimester_1	8.56	20	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
3	3	1	2	trimester_1	10.68	15	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
4	4	1	2	trimester_1	11.67	6	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
5	5	1	2	trimester_1	11.29	8	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
6	6	1	2	trimester_1	7.55	21	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
7	7	1	2	trimester_1	12.92	1	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
8	8	1	2	trimester_1	11.35	7	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
9	9	1	2	trimester_1	11.00	12	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
10	10	1	2	trimester_1	9.75	19	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
11	11	1	2	trimester_1	10.00	17	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
12	12	1	2	trimester_1	11.94	4	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
13	13	1	2	trimester_1	11.18	9	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
14	14	1	2	trimester_1	11.12	10	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
15	15	1	2	trimester_1	9.79	18	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
16	16	1	2	trimester_1	12.09	2	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
17	17	1	2	trimester_1	11.76	5	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
18	18	1	2	trimester_1	10.88	13	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
19	19	1	2	trimester_1	11.95	3	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
20	20	1	2	trimester_1	11.04	11	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
21	21	1	2	trimester_1	10.70	14	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:10	2026-05-12 20:24:11	\N
30	30	2	2	trimester_1	12.01	5	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
31	31	2	2	trimester_1	10.83	15	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
32	32	2	2	trimester_1	11.80	8	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
33	33	2	2	trimester_1	10.78	16	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
34	34	2	2	trimester_1	13.59	2	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
35	35	2	2	trimester_1	10.49	17	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
36	36	2	2	trimester_1	11.33	10	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
37	37	2	2	trimester_1	9.85	21	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
38	38	2	2	trimester_1	11.30	11	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
39	39	2	2	trimester_1	11.96	6	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
40	40	2	2	trimester_1	11.83	7	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
41	41	2	2	trimester_1	12.02	4	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
42	42	2	2	trimester_1	11.25	13	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
43	43	2	2	trimester_1	10.14	20	0	\N	t	2026-05-12 20:24:11	2026-05-12 20:24:11	2026-05-12 20:24:11	\N
44	44	3	2	trimester_1	13.75	1	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
45	45	3	2	trimester_1	10.17	25	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
46	46	3	2	trimester_1	11.36	14	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
47	47	3	2	trimester_1	11.23	15	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
48	48	3	2	trimester_1	11.76	9	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
49	49	3	2	trimester_1	11.10	17	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
50	50	3	2	trimester_1	10.91	18	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
51	51	3	2	trimester_1	9.25	28	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
52	52	3	2	trimester_1	11.90	8	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
53	53	3	2	trimester_1	11.66	11	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
54	54	3	2	trimester_1	11.95	6	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
55	55	3	2	trimester_1	10.90	20	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
56	56	3	2	trimester_1	10.91	19	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
57	57	3	2	trimester_1	10.12	26	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
58	58	3	2	trimester_1	11.67	10	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
59	59	3	2	trimester_1	10.71	21	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
60	60	3	2	trimester_1	12.82	3	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
61	61	3	2	trimester_1	11.14	16	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
62	62	3	2	trimester_1	10.34	23	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
63	63	3	2	trimester_1	12.93	2	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
64	64	3	2	trimester_1	10.31	24	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
65	65	3	2	trimester_1	12.34	4	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:11	2026-05-12 20:24:12	\N
66	66	3	2	trimester_1	9.64	27	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
67	67	3	2	trimester_1	11.63	12	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
68	68	3	2	trimester_1	11.93	7	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
69	69	3	2	trimester_1	11.48	13	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
70	70	3	2	trimester_1	10.46	22	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
71	71	3	2	trimester_1	12.27	5	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
103	103	5	2	trimester_1	11.20	9	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:12	2026-05-12 20:24:13	\N
72	72	4	2	trimester_1	7.62	31	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
73	73	4	2	trimester_1	9.33	30	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
74	74	4	2	trimester_1	11.42	18	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
75	75	4	2	trimester_1	11.72	14	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
76	76	4	2	trimester_1	10.32	25	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
77	77	4	2	trimester_1	12.44	7	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
78	78	4	2	trimester_1	11.37	19	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
79	79	4	2	trimester_1	9.53	29	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
80	80	4	2	trimester_1	12.35	8	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
81	81	4	2	trimester_1	10.60	23	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
82	82	4	2	trimester_1	13.94	2	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
83	83	4	2	trimester_1	13.27	4	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
84	84	4	2	trimester_1	10.45	24	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
85	85	4	2	trimester_1	11.28	20	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
86	86	4	2	trimester_1	12.56	6	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
87	87	4	2	trimester_1	11.91	12	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
88	88	4	2	trimester_1	9.99	27	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
89	89	4	2	trimester_1	12.01	11	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
90	90	4	2	trimester_1	9.65	28	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
91	91	4	2	trimester_1	13.50	3	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
92	92	4	2	trimester_1	14.84	1	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
93	93	4	2	trimester_1	10.61	22	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
94	94	4	2	trimester_1	10.86	21	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
95	95	4	2	trimester_1	11.68	15	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
96	96	4	2	trimester_1	10.11	26	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
97	97	4	2	trimester_1	11.67	16	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
98	98	4	2	trimester_1	11.64	17	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
99	99	4	2	trimester_1	11.88	13	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
100	100	4	2	trimester_1	12.12	10	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
101	101	4	2	trimester_1	12.68	5	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
102	102	4	2	trimester_1	12.25	9	0	\N	t	2026-05-12 20:24:12	2026-05-12 20:24:12	2026-05-12 20:24:12	\N
124	124	6	2	trimester_1	9.86	24	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
125	125	6	2	trimester_1	9.93	23	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
126	126	6	2	trimester_1	11.27	18	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
127	127	6	2	trimester_1	12.26	6	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
128	128	6	2	trimester_1	11.17	20	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
129	129	6	2	trimester_1	11.20	19	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
130	130	6	2	trimester_1	12.28	5	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
131	131	6	2	trimester_1	10.53	21	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
132	132	6	2	trimester_1	15.00	1	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
104	104	5	2	trimester_1	11.04	10	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:12	2026-05-12 20:24:13	\N
105	105	5	2	trimester_1	11.21	8	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:12	2026-05-12 20:24:13	\N
106	106	5	2	trimester_1	10.88	11	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:12	2026-05-12 20:24:13	\N
107	107	5	2	trimester_1	9.41	21	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
108	108	5	2	trimester_1	9.81	18	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
109	109	5	2	trimester_1	9.51	20	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
110	110	5	2	trimester_1	10.57	14	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
111	111	5	2	trimester_1	9.88	17	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
112	112	5	2	trimester_1	13.66	1	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
113	113	5	2	trimester_1	10.61	13	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
114	114	5	2	trimester_1	11.67	5	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
115	115	5	2	trimester_1	11.28	7	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
116	116	5	2	trimester_1	10.54	16	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
117	117	5	2	trimester_1	12.90	2	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
118	118	5	2	trimester_1	10.54	15	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
119	119	5	2	trimester_1	12.07	3	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
120	120	5	2	trimester_1	10.79	12	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
121	121	5	2	trimester_1	9.71	19	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
122	122	5	2	trimester_1	11.44	6	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
123	123	5	2	trimester_1	11.91	4	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
133	133	6	2	trimester_1	8.29	27	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
134	134	6	2	trimester_1	11.44	14	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
135	135	6	2	trimester_1	12.75	3	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
136	136	6	2	trimester_1	10.14	22	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
137	137	6	2	trimester_1	12.07	7	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
138	138	6	2	trimester_1	9.75	26	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
139	139	6	2	trimester_1	11.42	15	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
140	140	6	2	trimester_1	12.46	4	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
141	141	6	2	trimester_1	11.60	11	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
142	142	6	2	trimester_1	11.72	9	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
143	143	6	2	trimester_1	11.27	17	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
144	144	6	2	trimester_1	9.80	25	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
145	145	6	2	trimester_1	11.29	16	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
146	146	6	2	trimester_1	13.49	2	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
147	147	6	2	trimester_1	11.97	8	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
148	148	6	2	trimester_1	11.52	12	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
149	149	6	2	trimester_1	11.61	10	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
150	150	6	2	trimester_1	11.50	13	0	\N	t	2026-05-12 20:24:13	2026-05-12 20:24:13	2026-05-12 20:24:13	\N
151	151	7	2	trimester_1	11.98	6	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:13	2026-05-12 20:24:14	\N
152	152	7	2	trimester_1	10.22	24	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:13	2026-05-12 20:24:14	\N
153	153	7	2	trimester_1	10.19	25	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:13	2026-05-12 20:24:14	\N
154	154	7	2	trimester_1	10.56	22	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:13	2026-05-12 20:24:14	\N
155	155	7	2	trimester_1	10.67	17	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:13	2026-05-12 20:24:14	\N
156	156	7	2	trimester_1	10.75	15	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:13	2026-05-12 20:24:14	\N
157	157	7	2	trimester_1	8.18	29	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:13	2026-05-12 20:24:14	\N
158	158	7	2	trimester_1	10.56	21	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:13	2026-05-12 20:24:14	\N
159	159	7	2	trimester_1	10.15	26	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:13	2026-05-12 20:24:14	\N
160	160	7	2	trimester_1	11.09	12	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:13	2026-05-12 20:24:14	\N
161	161	7	2	trimester_1	11.07	13	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:13	2026-05-12 20:24:14	\N
162	162	7	2	trimester_1	10.59	20	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
163	163	7	2	trimester_1	12.30	4	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
164	164	7	2	trimester_1	10.61	19	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
165	165	7	2	trimester_1	12.35	2	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
166	166	7	2	trimester_1	12.31	3	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
167	167	7	2	trimester_1	11.48	8	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
168	168	7	2	trimester_1	11.31	9	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
169	169	7	2	trimester_1	10.55	23	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
170	170	7	2	trimester_1	11.30	10	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
171	171	7	2	trimester_1	11.07	14	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
172	172	7	2	trimester_1	9.79	27	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
173	173	7	2	trimester_1	12.04	5	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
174	174	7	2	trimester_1	10.65	18	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
180	180	8	2	trimester_1	12.05	6	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
181	181	8	2	trimester_1	10.50	19	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
182	182	8	2	trimester_1	10.54	18	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
183	183	8	2	trimester_1	12.69	4	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
175	175	7	2	trimester_1	11.11	11	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
176	176	7	2	trimester_1	9.08	28	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
177	177	7	2	trimester_1	12.64	1	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
178	178	7	2	trimester_1	11.95	7	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
179	179	7	2	trimester_1	10.69	16	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
184	184	8	2	trimester_1	11.02	13	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
185	185	8	2	trimester_1	10.08	23	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
186	186	8	2	trimester_1	9.96	24	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
187	187	8	2	trimester_1	11.81	8	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
188	188	8	2	trimester_1	10.65	16	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
189	189	8	2	trimester_1	11.17	12	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
190	190	8	2	trimester_1	10.82	14	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
191	191	8	2	trimester_1	10.72	15	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
192	192	8	2	trimester_1	10.64	17	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
193	193	8	2	trimester_1	12.50	5	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
194	194	8	2	trimester_1	11.25	10	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
195	195	8	2	trimester_1	13.15	1	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
196	196	8	2	trimester_1	11.19	11	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
197	197	8	2	trimester_1	10.25	20	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
198	198	8	2	trimester_1	9.25	25	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
199	199	8	2	trimester_1	8.92	26	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
200	200	8	2	trimester_1	10.09	22	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
201	201	8	2	trimester_1	13.14	2	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
202	202	8	2	trimester_1	11.39	9	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
203	203	8	2	trimester_1	12.92	3	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
204	204	8	2	trimester_1	11.94	7	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
205	205	8	2	trimester_1	10.15	21	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
232	232	10	2	trimester_1	11.67	9	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
233	233	10	2	trimester_1	8.95	28	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
206	206	9	2	trimester_1	12.41	4	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
207	207	9	2	trimester_1	12.20	7	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
208	208	9	2	trimester_1	12.04	9	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
209	209	9	2	trimester_1	12.60	3	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
210	210	9	2	trimester_1	10.99	19	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
211	211	9	2	trimester_1	10.79	20	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
212	212	9	2	trimester_1	11.69	11	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
213	213	9	2	trimester_1	12.92	2	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
214	214	9	2	trimester_1	12.97	1	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
215	215	9	2	trimester_1	11.06	18	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
216	216	9	2	trimester_1	10.23	24	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
217	217	9	2	trimester_1	10.71	21	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
218	218	9	2	trimester_1	11.09	16	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
219	219	9	2	trimester_1	12.24	6	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
220	220	9	2	trimester_1	9.64	25	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
221	221	9	2	trimester_1	10.53	22	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
222	222	9	2	trimester_1	10.37	23	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
223	223	9	2	trimester_1	11.21	13	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
224	224	9	2	trimester_1	11.17	14	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
225	225	9	2	trimester_1	11.37	12	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
226	226	9	2	trimester_1	8.00	26	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
227	227	9	2	trimester_1	12.33	5	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
228	228	9	2	trimester_1	11.86	10	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
229	229	9	2	trimester_1	11.09	17	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
230	230	9	2	trimester_1	12.19	8	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
231	231	9	2	trimester_1	11.13	15	0	\N	t	2026-05-12 20:24:14	2026-05-12 20:24:14	2026-05-12 20:24:14	\N
234	234	10	2	trimester_1	12.32	3	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
235	235	10	2	trimester_1	11.96	6	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
236	236	10	2	trimester_1	9.63	25	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
237	237	10	2	trimester_1	12.97	2	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
238	238	10	2	trimester_1	10.84	15	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
239	239	10	2	trimester_1	11.20	12	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
240	240	10	2	trimester_1	9.88	23	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
241	241	10	2	trimester_1	12.17	4	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
242	242	10	2	trimester_1	11.66	10	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
243	243	10	2	trimester_1	10.75	17	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
244	244	10	2	trimester_1	11.70	8	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
245	245	10	2	trimester_1	11.38	11	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
246	246	10	2	trimester_1	11.14	13	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
247	247	10	2	trimester_1	11.01	14	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
248	248	10	2	trimester_1	12.04	5	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
249	249	10	2	trimester_1	10.73	18	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
250	250	10	2	trimester_1	10.79	16	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
251	251	10	2	trimester_1	10.05	21	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
252	252	10	2	trimester_1	9.53	26	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
253	253	10	2	trimester_1	8.04	29	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
254	254	10	2	trimester_1	11.94	7	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
255	255	10	2	trimester_1	10.08	20	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:14	2026-05-12 20:24:15	\N
256	256	10	2	trimester_1	9.49	27	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
257	257	10	2	trimester_1	13.05	1	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
258	258	10	2	trimester_1	10.52	19	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
259	259	10	2	trimester_1	9.71	24	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
260	260	10	2	trimester_1	9.88	22	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
261	261	11	2	trimester_1	12.05	5	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
262	262	11	2	trimester_1	12.27	4	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
263	263	11	2	trimester_1	11.39	12	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
264	264	11	2	trimester_1	10.70	17	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
265	265	11	2	trimester_1	13.21	2	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
266	266	11	2	trimester_1	10.92	15	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
267	267	11	2	trimester_1	10.99	14	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
268	268	11	2	trimester_1	9.25	23	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
269	269	11	2	trimester_1	10.76	16	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
270	270	11	2	trimester_1	13.90	1	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
271	271	11	2	trimester_1	12.00	6	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
272	272	11	2	trimester_1	9.48	22	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
273	273	11	2	trimester_1	11.80	9	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
274	274	11	2	trimester_1	11.36	13	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
275	275	11	2	trimester_1	11.49	11	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
276	276	11	2	trimester_1	10.53	20	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
277	277	11	2	trimester_1	8.92	24	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
278	278	11	2	trimester_1	11.68	10	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
279	279	11	2	trimester_1	12.71	3	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
280	280	11	2	trimester_1	10.58	19	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
281	281	11	2	trimester_1	11.94	7	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
282	282	11	2	trimester_1	10.62	18	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
283	283	11	2	trimester_1	9.61	21	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
284	284	11	2	trimester_1	11.91	8	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
285	285	12	2	trimester_1	12.01	7	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
287	287	12	2	trimester_1	11.43	14	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
288	288	12	2	trimester_1	11.85	11	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
289	289	12	2	trimester_1	11.04	18	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
290	290	12	2	trimester_1	10.11	26	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
291	291	12	2	trimester_1	12.13	5	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
293	293	12	2	trimester_1	10.55	20	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
294	294	12	2	trimester_1	13.95	1	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
295	295	12	2	trimester_1	11.89	10	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
296	296	12	2	trimester_1	12.70	3	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
297	297	12	2	trimester_1	10.12	25	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
299	299	12	2	trimester_1	12.13	6	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
300	300	12	2	trimester_1	10.52	22	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
301	301	12	2	trimester_1	12.00	8	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
302	302	12	2	trimester_1	9.67	27	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
303	303	12	2	trimester_1	10.36	24	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
304	304	12	2	trimester_1	11.28	15	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
305	305	12	2	trimester_1	13.49	2	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
307	307	12	2	trimester_1	11.07	16	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
308	308	12	2	trimester_1	11.06	17	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
309	309	12	2	trimester_1	11.56	12	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
310	310	12	2	trimester_1	10.71	19	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
311	311	12	2	trimester_1	11.46	13	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
312	312	12	2	trimester_1	10.37	23	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
314	314	12	2	trimester_1	10.54	21	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
315	315	12	2	trimester_1	11.99	9	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
316	316	12	2	trimester_1	12.21	4	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
313	313	12	2	trimester_1	9.58	28	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
292	292	12	2	trimester_1	9.47	29	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
286	286	12	2	trimester_1	9.22	30	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
306	306	12	2	trimester_1	9.20	31	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
298	298	12	2	trimester_1	8.51	32	0	\N	t	2026-05-12 20:24:15	2026-05-12 20:24:15	2026-05-12 20:24:15	\N
317	317	13	2	trimester_1	10.43	24	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:15	2026-05-12 20:24:16	\N
318	318	13	2	trimester_1	10.64	21	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:15	2026-05-12 20:24:16	\N
319	319	13	2	trimester_1	12.16	8	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:15	2026-05-12 20:24:16	\N
320	320	13	2	trimester_1	11.28	17	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:15	2026-05-12 20:24:16	\N
321	321	13	2	trimester_1	10.80	20	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:15	2026-05-12 20:24:16	\N
322	322	13	2	trimester_1	10.55	23	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:15	2026-05-12 20:24:16	\N
323	323	13	2	trimester_1	11.35	15	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:15	2026-05-12 20:24:16	\N
324	324	13	2	trimester_1	9.51	28	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:15	2026-05-12 20:24:16	\N
325	325	13	2	trimester_1	14.08	1	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
326	326	13	2	trimester_1	9.39	30	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
327	327	13	2	trimester_1	13.01	3	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
328	328	13	2	trimester_1	9.15	31	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
329	329	13	2	trimester_1	12.83	4	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
330	330	13	2	trimester_1	7.70	32	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
331	331	13	2	trimester_1	11.08	19	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
332	332	13	2	trimester_1	13.67	2	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
333	333	13	2	trimester_1	9.49	29	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
334	334	13	2	trimester_1	11.49	13	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
335	335	13	2	trimester_1	10.33	26	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
336	336	13	2	trimester_1	12.01	11	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
337	337	13	2	trimester_1	12.08	9	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
338	338	13	2	trimester_1	11.30	16	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
339	339	13	2	trimester_1	12.16	7	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
340	340	13	2	trimester_1	12.32	6	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
341	341	13	2	trimester_1	12.06	10	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
342	342	13	2	trimester_1	10.35	25	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
343	343	13	2	trimester_1	9.54	27	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
344	344	13	2	trimester_1	11.10	18	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
345	345	13	2	trimester_1	12.51	5	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
346	346	13	2	trimester_1	10.57	22	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
347	347	13	2	trimester_1	11.66	12	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
348	348	13	2	trimester_1	11.40	14	0	\N	t	2026-05-12 20:24:16	2026-05-12 20:24:16	2026-05-12 20:24:16	\N
\.


--
-- Data for Name: role_has_permissions; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.role_has_permissions (permission_id, role_id) FROM stdin;
973	97
974	97
975	97
976	97
977	97
978	97
979	97
980	97
981	97
982	97
983	97
984	97
985	97
986	97
987	97
988	97
989	97
990	97
991	97
992	97
993	97
994	97
995	97
996	97
997	97
998	97
999	97
1000	97
1001	97
1002	97
1003	97
1004	97
1005	97
1006	97
1007	97
1008	97
1009	97
1010	97
1011	97
1012	97
1013	97
1014	97
1015	97
1016	97
1017	97
1018	97
1019	97
1020	97
1021	97
1022	97
1023	97
1024	97
1025	97
1026	97
1027	97
1028	97
1029	97
1030	97
1031	97
1032	97
1033	97
1034	97
1035	97
1036	97
1037	97
1038	97
1039	97
1040	97
1041	97
1042	97
1043	97
1044	97
1045	97
1046	97
1047	97
1048	97
1049	97
1050	97
1051	97
1052	97
1053	97
973	98
977	98
978	98
979	98
980	98
982	98
984	98
985	98
986	98
987	98
988	98
989	98
994	98
995	98
1000	98
1001	98
1002	98
1005	98
1006	98
1007	98
1008	98
1012	98
1013	98
1014	98
1015	98
1018	98
1019	98
1024	98
1025	98
1028	98
1029	98
1034	98
1035	98
1037	98
1038	98
1039	98
1040	98
1041	98
1042	98
1043	98
1044	98
1045	98
1046	98
1047	98
1048	98
1049	98
1050	98
1051	98
973	99
977	99
978	99
979	99
980	99
982	99
984	99
988	99
989	99
994	99
995	99
1000	99
1001	99
1002	99
1005	99
1006	99
1007	99
1008	99
1012	99
1013	99
1018	99
1019	99
1024	99
1025	99
1028	99
1029	99
1034	99
1035	99
1045	99
1046	99
1048	99
1049	99
973	100
977	100
978	100
988	100
989	100
994	100
995	100
1005	100
1006	100
1012	100
1013	100
1024	100
1025	100
1028	100
1029	100
1034	100
1035	100
1038	100
1039	100
1045	100
1046	100
978	101
984	101
988	101
989	101
990	101
991	101
993	101
994	101
995	101
996	101
997	101
999	101
1000	101
1001	101
1002	101
1003	101
1004	101
1005	101
1006	101
1010	101
1011	101
1012	101
1013	101
1017	101
1018	101
1019	101
1020	101
1022	101
1024	101
1025	101
1028	101
1029	101
1032	101
1033	101
1034	101
1035	101
1036	101
1037	101
1038	101
1039	101
1043	101
1045	101
1046	101
988	102
989	102
994	102
995	102
1013	102
1024	102
1025	102
1026	102
1027	102
1028	102
1029	102
1030	102
1031	102
1034	102
1035	102
995	103
1025	103
1029	103
1035	103
1029	104
1025	104
1035	104
\.


--
-- Data for Name: roles; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.roles (id, name, guard_name, created_at, updated_at) FROM stdin;
97	super_admin	web	2026-05-12 19:45:26	2026-05-12 19:45:26
98	admin_national	web	2026-05-12 19:45:26	2026-05-12 19:45:26
99	admin_regional	web	2026-05-12 19:45:26	2026-05-12 19:45:26
100	inspecteur	web	2026-05-12 19:45:26	2026-05-12 19:45:26
101	directeur	web	2026-05-12 19:45:27	2026-05-12 19:45:27
102	enseignant	web	2026-05-12 19:45:27	2026-05-12 19:45:27
103	parent	web	2026-05-12 19:45:27	2026-05-12 19:45:27
104	eleve	web	2026-05-12 19:45:27	2026-05-12 19:45:27
\.


--
-- Data for Name: school_years; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.school_years (id, name, start_date, end_date, status, country_id, created_at, updated_at) FROM stdin;
2	2024-2025	2024-10-01	2025-07-31	active	1	2026-05-12 20:04:43	2026-05-12 20:04:43
3	2025-2026	2025-10-01	2026-07-31	upcoming	1	2026-05-12 20:04:43	2026-05-12 20:04:43
\.


--
-- Data for Name: schools; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.schools (id, name, code, type, cycle, status, country_id, region_id, department_id, commune_id, locality_id, address, phone, email, director_name, latitude, longitude, founded_year, capacity, rooms_count, logo, description, created_at, updated_at, deleted_at) FROM stdin;
1	École Primaire de N'Djamena Centre	ECO-NDJ-001	public	primary	active	1	1	1	1	1	\N	+235 22 51 00 01	\N	M. Ibrahim Hassan	\N	\N	1975	600	18	\N	\N	2026-05-12 20:04:43	2026-05-12 20:04:43	\N
2	Lycée National de N'Djamena	LYC-NDJ-001	public	high	active	1	1	1	1	1	\N	+235 22 51 00 02	\N	Mme. Amina Mahamat	\N	\N	1960	1200	32	\N	\N	2026-05-12 20:04:43	2026-05-12 20:04:43	\N
3	Collège Privé Excellence	COL-CB-001	private	middle	active	1	2	2	2	2	\N	+235 22 51 00 03	\N	M. Jean-Pierre Mbainaissa	\N	\N	2005	400	14	\N	\N	2026-05-12 20:04:43	2026-05-12 20:04:43	\N
\.


--
-- Data for Name: sessions; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.sessions (id, user_id, ip_address, user_agent, payload, last_activity) FROM stdin;
6Is8sx2CwZJT5lysHFmhL43gqptYjZbidhadyrOG	\N	127.0.0.1	Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36	YTozOntzOjY6Il90b2tlbiI7czo0MDoid3lzVjRWMW1lOHdvWUhpTzcwTHJLamtYOEM4V2tTY2lPV2JPcE11biI7czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MjE6Imh0dHA6Ly9sb2NhbGhvc3Q6ODAwMCI7fX0=	1778628818
\.


--
-- Data for Name: student_guardian; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.student_guardian (id, student_id, guardian_id, relationship, is_primary, created_at, updated_at) FROM stdin;
1	346	1	mother	t	2026-05-12 21:49:10	2026-05-12 21:49:10
2	273	1	mother	f	2026-05-12 21:49:10	2026-05-12 21:49:10
3	294	2	father	t	2026-05-12 21:49:10	2026-05-12 21:49:10
4	267	2	father	f	2026-05-12 21:49:10	2026-05-12 21:49:10
\.


--
-- Data for Name: students; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.students (id, matricule, first_name, last_name, gender, birth_date, birth_place, nationality, photo, birth_certificate, birth_certificate_number, address, school_id, status, deleted_at, created_at, updated_at, user_id) FROM stdin;
4	EL-2024-00004	Moussa	DJIBRINE	M	2014-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:15	2026-05-12 20:05:15	\N
5	EL-2024-00005	Mahamat	IBRAHIM	M	2014-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:15	2026-05-12 20:05:15	\N
6	EL-2024-00006	Koumba	TAHIR	F	2010-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
7	EL-2024-00007	Zara	IBRAHIM	F	2018-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
8	EL-2024-00008	Adoum	ADAM	M	2014-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
9	EL-2024-00009	Salima	TAHIR	F	2008-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
10	EL-2024-00010	Ali	ADAM	M	2008-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
11	EL-2024-00011	Ali	TAHIR	M	2019-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
12	EL-2024-00012	Adoum	ADOUM	M	2011-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
13	EL-2024-00013	Adoum	NGARADOUM	M	2019-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
14	EL-2024-00014	Salima	MAHAMAT	F	2016-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
15	EL-2024-00015	Adoum	MOUSSA	M	2009-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
16	EL-2024-00016	Idriss	OUMAR	M	2013-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
17	EL-2024-00017	Moussa	ADAM	M	2019-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
18	EL-2024-00018	Hassan	KHAMIS	M	2010-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
19	EL-2024-00019	Haoua	NGARADOUM	F	2016-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
20	EL-2024-00020	Fatimé	ABDERAHIM	F	2012-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
21	EL-2024-00021	Nadia	ADAM	F	2014-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
22	EL-2024-00022	Zara	HASSAN	F	2012-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
23	EL-2024-00023	Zara	ADOUM	F	2018-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
24	EL-2024-00024	Adoum	NGARADOUM	M	2016-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
25	EL-2024-00025	Salima	KHAMIS	F	2013-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
26	EL-2024-00026	Fatimé	ADOUM	F	2009-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
27	EL-2024-00027	Koumba	MAHAMAT	F	2016-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
28	EL-2024-00028	Salima	NASSER	F	2016-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
29	EL-2024-00029	Mahamat	MAHAMAT	M	2014-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
30	EL-2024-00030	Zara	HASSAN	F	2010-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
31	EL-2024-00031	Adoum	MAHAMAT	M	2017-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
32	EL-2024-00032	Brahim	SALEH	M	2009-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
33	EL-2024-00033	Fatimé	MAHAMAT	F	2009-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
34	EL-2024-00034	Salima	ABDERAHIM	F	2011-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
35	EL-2024-00035	Fatimé	HASSAN	F	2011-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
36	EL-2024-00036	Mariam	HASSAN	F	2008-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
37	EL-2024-00037	Koumba	OUMAR	F	2008-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
38	EL-2024-00038	Zara	NASSER	F	2015-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
39	EL-2024-00039	Haoua	DJIBRINE	F	2013-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
40	EL-2024-00040	Zara	SALEH	F	2018-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
41	EL-2024-00041	Brahim	ADAM	M	2009-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
42	EL-2024-00042	Youssouf	DEBY	M	2014-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
43	EL-2024-00043	Koumba	KHAMIS	F	2010-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
44	EL-2024-00044	Zara	MAHAMAT	F	2012-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
45	EL-2024-00045	Zara	TAHIR	F	2009-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
46	EL-2024-00046	Salima	NASSER	F	2013-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
47	EL-2024-00047	Youssouf	TAHIR	M	2019-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
48	EL-2024-00048	Zara	DEBY	F	2008-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
49	EL-2024-00049	Hassan	MOUSSA	M	2014-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
50	EL-2024-00050	Adoum	KHAMIS	M	2009-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
51	EL-2024-00051	Haoua	ABDERAHIM	F	2019-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
52	EL-2024-00052	Idriss	IBRAHIM	M	2015-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
53	EL-2024-00053	Salima	NGARADOUM	F	2009-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
54	EL-2024-00054	Haoua	MOUSSA	F	2013-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
55	EL-2024-00055	Haoua	DEBY	F	2016-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
56	EL-2024-00056	Fatimé	OUMAR	F	2015-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
57	EL-2024-00057	Mahamat	ISSA	M	2010-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
58	EL-2024-00058	Amina	DEBY	F	2017-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
59	EL-2024-00059	Salima	ADAM	F	2012-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
60	EL-2024-00060	Haoua	HASSAN	F	2012-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
2	EL-2024-00002	Mahamat	ADOUM	M	2008-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:15	2026-05-12 21:49:11	134
3	EL-2024-00003	Mariam	ISSA	F	2010-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:15	2026-05-12 21:49:11	135
61	EL-2024-00061	Haoua	SALEH	F	2014-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
62	EL-2024-00062	Amina	HASSAN	F	2017-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
63	EL-2024-00063	Zara	KHAMIS	F	2008-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
64	EL-2024-00064	Mariam	IBRAHIM	F	2015-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
65	EL-2024-00065	Zara	MAHAMAT	F	2013-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
66	EL-2024-00066	Mariam	SALEH	F	2013-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
67	EL-2024-00067	Hassan	ADAM	M	2016-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
68	EL-2024-00068	Moussa	ISSA	M	2015-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
69	EL-2024-00069	Youssouf	SALEH	M	2010-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
70	EL-2024-00070	Fatimé	TAHIR	F	2018-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:16	2026-05-12 20:05:16	\N
71	EL-2024-00071	Zara	MAHAMAT	F	2010-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
72	EL-2024-00072	Hassan	OUMAR	M	2012-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
73	EL-2024-00073	Haoua	KHAMIS	F	2012-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
74	EL-2024-00074	Mahamat	ADOUM	M	2014-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
75	EL-2024-00075	Adoum	ADAM	M	2013-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
76	EL-2024-00076	Fatimé	MAHAMAT	F	2018-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
77	EL-2024-00077	Adoum	OUMAR	M	2008-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
78	EL-2024-00078	Ali	HASSAN	M	2015-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
79	EL-2024-00079	Amina	TAHIR	F	2011-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
80	EL-2024-00080	Hassan	NGARADOUM	M	2017-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
81	EL-2024-00081	Salima	SALEH	F	2012-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
82	EL-2024-00082	Idriss	NGARADOUM	M	2014-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
83	EL-2024-00083	Brahim	ADOUM	M	2013-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
84	EL-2024-00084	Mariam	ABDERAHIM	F	2008-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
85	EL-2024-00085	Youssouf	DJIBRINE	M	2015-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
86	EL-2024-00086	Hassan	ABDERAHIM	M	2016-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
87	EL-2024-00087	Mahamat	NASSER	M	2019-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
88	EL-2024-00088	Mariam	MAHAMAT	F	2009-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
89	EL-2024-00089	Brahim	NGARADOUM	M	2009-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
90	EL-2024-00090	Youssouf	OUMAR	M	2013-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
91	EL-2024-00091	Zara	TAHIR	F	2018-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
92	EL-2024-00092	Mahamat	ADOUM	M	2019-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
93	EL-2024-00093	Youssouf	MOUSSA	M	2012-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
94	EL-2024-00094	Haoua	DEBY	F	2010-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
95	EL-2024-00095	Mariam	NASSER	F	2010-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
96	EL-2024-00096	Haoua	OUMAR	F	2018-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
97	EL-2024-00097	Fatimé	ADOUM	F	2017-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
98	EL-2024-00098	Amina	ADAM	F	2017-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
99	EL-2024-00099	Brahim	HASSAN	M	2012-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
100	EL-2024-00100	Nadia	ABDERAHIM	F	2010-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
101	EL-2024-00101	Salima	ISSA	F	2010-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
102	EL-2024-00102	Amina	NGARADOUM	F	2017-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
103	EL-2024-00103	Koumba	DEBY	F	2013-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
104	EL-2024-00104	Nadia	KHAMIS	F	2014-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
105	EL-2024-00105	Hassan	MOUSSA	M	2008-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
106	EL-2024-00106	Hassan	KHAMIS	M	2009-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
107	EL-2024-00107	Idriss	MOUSSA	M	2017-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
108	EL-2024-00108	Salima	ADAM	F	2012-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
109	EL-2024-00109	Fatimé	ADOUM	F	2015-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
110	EL-2024-00110	Moussa	ABDERAHIM	M	2015-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
111	EL-2024-00111	Koumba	DJIBRINE	F	2009-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
112	EL-2024-00112	Fatimé	KHAMIS	F	2013-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
113	EL-2024-00113	Hassan	ADAM	M	2019-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
114	EL-2024-00114	Haoua	NASSER	F	2014-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
115	EL-2024-00115	Mariam	TAHIR	F	2017-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
116	EL-2024-00116	Brahim	NGARADOUM	M	2019-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
117	EL-2024-00117	Mahamat	ABDERAHIM	M	2018-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
118	EL-2024-00118	Zara	OUMAR	F	2011-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
119	EL-2024-00119	Hassan	OUMAR	M	2018-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
120	EL-2024-00120	Zara	DJIBRINE	F	2018-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
121	EL-2024-00121	Amina	ADAM	F	2008-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:17	2026-05-12 20:05:17	\N
122	EL-2024-00122	Adoum	SALEH	M	2019-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
123	EL-2024-00123	Youssouf	MAHAMAT	M	2017-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
124	EL-2024-00124	Fatimé	SALEH	F	2013-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
125	EL-2024-00125	Koumba	ISSA	F	2014-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
126	EL-2024-00126	Mariam	DEBY	F	2016-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
127	EL-2024-00127	Ali	SALEH	M	2017-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
128	EL-2024-00128	Hassan	NASSER	M	2009-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
129	EL-2024-00129	Moussa	ISSA	M	2014-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
130	EL-2024-00130	Haoua	KHAMIS	F	2008-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
131	EL-2024-00131	Hassan	OUMAR	M	2010-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
132	EL-2024-00132	Moussa	KHAMIS	M	2014-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
133	EL-2024-00133	Hassan	MOUSSA	M	2013-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
134	EL-2024-00134	Moussa	OUMAR	M	2019-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
135	EL-2024-00135	Brahim	ISSA	M	2016-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
136	EL-2024-00136	Koumba	SALEH	F	2012-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
137	EL-2024-00137	Koumba	TAHIR	F	2017-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
138	EL-2024-00138	Haoua	ADOUM	F	2013-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
139	EL-2024-00139	Moussa	DJIBRINE	M	2013-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
140	EL-2024-00140	Youssouf	SALEH	M	2013-05-12	Sarh	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
141	EL-2024-00141	Hassan	ADOUM	M	2009-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
142	EL-2024-00142	Salima	OUMAR	F	2015-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
143	EL-2024-00143	Idriss	IBRAHIM	M	2010-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
144	EL-2024-00144	Fatimé	ADAM	F	2012-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
145	EL-2024-00145	Hassan	NASSER	M	2009-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
146	EL-2024-00146	Haoua	MOUSSA	F	2009-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
147	EL-2024-00147	Mariam	TAHIR	F	2013-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
148	EL-2024-00148	Ali	ADOUM	M	2014-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
149	EL-2024-00149	Moussa	MOUSSA	M	2016-05-12	Abéché	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
150	EL-2024-00150	Mariam	NASSER	F	2015-05-12	Bongor	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
151	EL-2024-00151	Zara	NASSER	F	2008-05-12	Bongor	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
152	EL-2024-00152	Youssouf	MOUSSA	M	2017-05-12	Bongor	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
153	EL-2024-00153	Amina	IBRAHIM	F	2018-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
154	EL-2024-00154	Hassan	HASSAN	M	2016-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
155	EL-2024-00155	Idriss	NGARADOUM	M	2016-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
156	EL-2024-00156	Mahamat	SALEH	M	2011-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
157	EL-2024-00157	Idriss	ADOUM	M	2010-05-12	Abéché	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
158	EL-2024-00158	Ali	NGARADOUM	M	2015-05-12	Abéché	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
159	EL-2024-00159	Salima	MAHAMAT	F	2017-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
160	EL-2024-00160	Adoum	MOUSSA	M	2011-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
161	EL-2024-00161	Mariam	NGARADOUM	F	2018-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
162	EL-2024-00162	Adoum	MAHAMAT	M	2015-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
163	EL-2024-00163	Koumba	MAHAMAT	F	2016-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
164	EL-2024-00164	Hassan	NGARADOUM	M	2011-05-12	Bongor	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
165	EL-2024-00165	Nadia	KHAMIS	F	2018-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
166	EL-2024-00166	Brahim	DJIBRINE	M	2019-05-12	Abéché	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
167	EL-2024-00167	Nadia	IBRAHIM	F	2010-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
168	EL-2024-00168	Haoua	MOUSSA	F	2010-05-12	Bongor	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
169	EL-2024-00169	Amina	HASSAN	F	2014-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
170	EL-2024-00170	Youssouf	SALEH	M	2018-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
171	EL-2024-00171	Idriss	ISSA	M	2009-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
172	EL-2024-00172	Idriss	DEBY	M	2009-05-12	Abéché	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
173	EL-2024-00173	Amina	SALEH	F	2017-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
174	EL-2024-00174	Ali	ADAM	M	2016-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
175	EL-2024-00175	Salima	TAHIR	F	2014-05-12	Abéché	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
176	EL-2024-00176	Youssouf	DJIBRINE	M	2011-05-12	Bongor	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
177	EL-2024-00177	Haoua	ADAM	F	2015-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
178	EL-2024-00178	Hassan	NGARADOUM	M	2010-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
179	EL-2024-00179	Hassan	ADAM	M	2016-05-12	Abéché	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
180	EL-2024-00180	Mahamat	ISSA	M	2019-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
181	EL-2024-00181	Mariam	SALEH	F	2011-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
182	EL-2024-00182	Salima	ISSA	F	2014-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
183	EL-2024-00183	Fatimé	NASSER	F	2019-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
184	EL-2024-00184	Mahamat	DEBY	M	2016-05-12	Abéché	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
185	EL-2024-00185	Zara	ADAM	F	2018-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
186	EL-2024-00186	Youssouf	MAHAMAT	M	2017-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
187	EL-2024-00187	Zara	NASSER	F	2013-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
188	EL-2024-00188	Adoum	NASSER	M	2010-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
189	EL-2024-00189	Ali	MAHAMAT	M	2010-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
190	EL-2024-00190	Haoua	IBRAHIM	F	2010-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
191	EL-2024-00191	Zara	TAHIR	F	2016-05-12	Abéché	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:18	2026-05-12 20:05:18	\N
192	EL-2024-00192	Mahamat	ISSA	M	2008-05-12	Abéché	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
193	EL-2024-00193	Ali	DEBY	M	2017-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
194	EL-2024-00194	Mahamat	DJIBRINE	M	2018-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
195	EL-2024-00195	Adoum	KHAMIS	M	2013-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
196	EL-2024-00196	Mahamat	DEBY	M	2019-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
197	EL-2024-00197	Youssouf	SALEH	M	2008-05-12	Abéché	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
198	EL-2024-00198	Moussa	NASSER	M	2008-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
199	EL-2024-00199	Fatimé	NASSER	F	2019-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
200	EL-2024-00200	Fatimé	ISSA	F	2019-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
201	EL-2024-00201	Fatimé	DEBY	F	2008-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
202	EL-2024-00202	Amina	MOUSSA	F	2013-05-12	Bongor	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
203	EL-2024-00203	Koumba	TAHIR	F	2008-05-12	Abéché	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
204	EL-2024-00204	Fatimé	IBRAHIM	F	2019-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
205	EL-2024-00205	Zara	IBRAHIM	F	2013-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
206	EL-2024-00206	Zara	DEBY	F	2016-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
207	EL-2024-00207	Idriss	IBRAHIM	M	2015-05-12	Bongor	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
208	EL-2024-00208	Adoum	MAHAMAT	M	2011-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
209	EL-2024-00209	Nadia	SALEH	F	2009-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
210	EL-2024-00210	Youssouf	IBRAHIM	M	2009-05-12	Bongor	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
211	EL-2024-00211	Nadia	TAHIR	F	2015-05-12	Abéché	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
212	EL-2024-00212	Fatimé	DJIBRINE	F	2011-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
213	EL-2024-00213	Moussa	ABDERAHIM	M	2015-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
214	EL-2024-00214	Idriss	DJIBRINE	M	2012-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
215	EL-2024-00215	Moussa	NGARADOUM	M	2016-05-12	Bongor	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
216	EL-2024-00216	Hassan	ISSA	M	2013-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
217	EL-2024-00217	Adoum	DJIBRINE	M	2018-05-12	Bongor	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
218	EL-2024-00218	Youssouf	TAHIR	M	2015-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
219	EL-2024-00219	Moussa	ADOUM	M	2011-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
220	EL-2024-00220	Idriss	NGARADOUM	M	2017-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
221	EL-2024-00221	Moussa	NGARADOUM	M	2012-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
222	EL-2024-00222	Moussa	MOUSSA	M	2012-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
223	EL-2024-00223	Brahim	SALEH	M	2016-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
224	EL-2024-00224	Youssouf	MOUSSA	M	2018-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
225	EL-2024-00225	Haoua	TAHIR	F	2015-05-12	Abéché	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
226	EL-2024-00226	Mahamat	MAHAMAT	M	2014-05-12	Bongor	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
227	EL-2024-00227	Adoum	OUMAR	M	2014-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
228	EL-2024-00228	Hassan	TAHIR	M	2013-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
229	EL-2024-00229	Idriss	MAHAMAT	M	2011-05-12	Abéché	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
230	EL-2024-00230	Zara	DJIBRINE	F	2010-05-12	Sarh	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
231	EL-2024-00231	Haoua	IBRAHIM	F	2014-05-12	Moundou	Tchadienne	\N	f	\N	\N	2	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
232	EL-2024-00232	Ali	HASSAN	M	2014-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
233	EL-2024-00233	Brahim	ADAM	M	2014-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
234	EL-2024-00234	Youssouf	DJIBRINE	M	2010-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
235	EL-2024-00235	Idriss	ADOUM	M	2013-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
236	EL-2024-00236	Idriss	ADAM	M	2019-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
237	EL-2024-00237	Adoum	ADOUM	M	2017-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
238	EL-2024-00238	Koumba	MOUSSA	F	2014-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
239	EL-2024-00239	Brahim	IBRAHIM	M	2016-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
240	EL-2024-00240	Mahamat	DEBY	M	2014-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
241	EL-2024-00241	Youssouf	MOUSSA	M	2015-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
242	EL-2024-00242	Moussa	OUMAR	M	2015-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
243	EL-2024-00243	Koumba	ADOUM	F	2008-05-12	Abéché	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
244	EL-2024-00244	Mariam	TAHIR	F	2009-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
245	EL-2024-00245	Ali	MOUSSA	M	2011-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
246	EL-2024-00246	Ali	DJIBRINE	M	2012-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
247	EL-2024-00247	Amina	SALEH	F	2019-05-12	Abéché	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
248	EL-2024-00248	Nadia	TAHIR	F	2013-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
249	EL-2024-00249	Ali	NGARADOUM	M	2009-05-12	Abéché	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
250	EL-2024-00250	Moussa	TAHIR	M	2014-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
251	EL-2024-00251	Idriss	NGARADOUM	M	2012-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
252	EL-2024-00252	Ali	IBRAHIM	M	2009-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
253	EL-2024-00253	Ali	NASSER	M	2016-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
254	EL-2024-00254	Hassan	NASSER	M	2018-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
255	EL-2024-00255	Haoua	DEBY	F	2015-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
256	EL-2024-00256	Amina	NASSER	F	2010-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
257	EL-2024-00257	Koumba	ISSA	F	2010-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
258	EL-2024-00258	Mariam	NASSER	F	2008-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
259	EL-2024-00259	Moussa	ISSA	M	2010-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
260	EL-2024-00260	Moussa	MOUSSA	M	2009-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
261	EL-2024-00261	Moussa	ADOUM	M	2013-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
262	EL-2024-00262	Koumba	MAHAMAT	F	2009-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
263	EL-2024-00263	Adoum	DJIBRINE	M	2012-05-12	Abéché	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
264	EL-2024-00264	Brahim	ADAM	M	2009-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
265	EL-2024-00265	Fatimé	HASSAN	F	2016-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
266	EL-2024-00266	Haoua	ABDERAHIM	F	2014-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:19	2026-05-12 20:05:19	\N
267	EL-2024-00267	Idriss	KHAMIS	M	2015-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
268	EL-2024-00268	Hassan	OUMAR	M	2015-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
269	EL-2024-00269	Fatimé	KHAMIS	F	2017-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
270	EL-2024-00270	Mahamat	HASSAN	M	2009-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
271	EL-2024-00271	Salima	ADOUM	F	2010-05-12	Abéché	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
272	EL-2024-00272	Hassan	ADAM	M	2019-05-12	Abéché	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
273	EL-2024-00273	Youssouf	HASSAN	M	2011-05-12	Abéché	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
274	EL-2024-00274	Adoum	OUMAR	M	2017-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
275	EL-2024-00275	Adoum	SALEH	M	2010-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
276	EL-2024-00276	Amina	ADAM	F	2019-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
277	EL-2024-00277	Ali	KHAMIS	M	2010-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
278	EL-2024-00278	Youssouf	TAHIR	M	2009-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
279	EL-2024-00279	Nadia	KHAMIS	F	2015-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
280	EL-2024-00280	Amina	IBRAHIM	F	2012-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
281	EL-2024-00281	Adoum	TAHIR	M	2017-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
282	EL-2024-00282	Zara	KHAMIS	F	2017-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
283	EL-2024-00283	Haoua	MAHAMAT	F	2018-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
284	EL-2024-00284	Salima	OUMAR	F	2019-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
285	EL-2024-00285	Adoum	KHAMIS	M	2010-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
286	EL-2024-00286	Ali	TAHIR	M	2012-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
287	EL-2024-00287	Youssouf	ABDERAHIM	M	2008-05-12	Abéché	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
288	EL-2024-00288	Koumba	DEBY	F	2009-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
289	EL-2024-00289	Salima	ADOUM	F	2011-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
290	EL-2024-00290	Idriss	HASSAN	M	2018-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
291	EL-2024-00291	Mariam	OUMAR	F	2015-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
292	EL-2024-00292	Amina	OUMAR	F	2014-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
293	EL-2024-00293	Brahim	OUMAR	M	2016-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
294	EL-2024-00294	Idriss	OUMAR	M	2012-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
295	EL-2024-00295	Fatimé	DJIBRINE	F	2011-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
296	EL-2024-00296	Ali	NASSER	M	2016-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
297	EL-2024-00297	Youssouf	KHAMIS	M	2009-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
298	EL-2024-00298	Koumba	ABDERAHIM	F	2016-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
299	EL-2024-00299	Mahamat	ADAM	M	2009-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
300	EL-2024-00300	Haoua	ADAM	F	2015-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
301	EL-2024-00301	Adoum	TAHIR	M	2008-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
302	EL-2024-00302	Amina	DEBY	F	2009-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
303	EL-2024-00303	Salima	TAHIR	F	2013-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
304	EL-2024-00304	Mahamat	HASSAN	M	2012-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
305	EL-2024-00305	Brahim	SALEH	M	2016-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
306	EL-2024-00306	Salima	SALEH	F	2010-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
307	EL-2024-00307	Ali	HASSAN	M	2014-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
308	EL-2024-00308	Amina	HASSAN	F	2016-05-12	Abéché	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
309	EL-2024-00309	Mahamat	ABDERAHIM	M	2012-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
310	EL-2024-00310	Nadia	OUMAR	F	2014-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
311	EL-2024-00311	Haoua	IBRAHIM	F	2015-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
312	EL-2024-00312	Adoum	ISSA	M	2019-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
313	EL-2024-00313	Nadia	TAHIR	F	2018-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
314	EL-2024-00314	Idriss	ADAM	M	2010-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
315	EL-2024-00315	Youssouf	MAHAMAT	M	2019-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
316	EL-2024-00316	Haoua	MAHAMAT	F	2016-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
317	EL-2024-00317	Fatimé	OUMAR	F	2019-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
318	EL-2024-00318	Nadia	OUMAR	F	2010-05-12	Abéché	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
319	EL-2024-00319	Salima	KHAMIS	F	2016-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
320	EL-2024-00320	Ali	HASSAN	M	2010-05-12	Abéché	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
321	EL-2024-00321	Salima	ADOUM	F	2016-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
322	EL-2024-00322	Mahamat	DEBY	M	2009-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
323	EL-2024-00323	Youssouf	KHAMIS	M	2012-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
324	EL-2024-00324	Koumba	DJIBRINE	F	2017-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
325	EL-2024-00325	Zara	NASSER	F	2011-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
326	EL-2024-00326	Mariam	OUMAR	F	2017-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
327	EL-2024-00327	Mariam	HASSAN	F	2016-05-12	Abéché	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
328	EL-2024-00328	Brahim	SALEH	M	2017-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
329	EL-2024-00329	Hassan	SALEH	M	2015-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
330	EL-2024-00330	Hassan	MAHAMAT	M	2019-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
331	EL-2024-00331	Amina	SALEH	F	2013-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
332	EL-2024-00332	Nadia	ADOUM	F	2017-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
333	EL-2024-00333	Amina	SALEH	F	2019-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
334	EL-2024-00334	Mahamat	MOUSSA	M	2016-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
335	EL-2024-00335	Salima	KHAMIS	F	2012-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
336	EL-2024-00336	Youssouf	NASSER	M	2008-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:20	2026-05-12 20:05:20	\N
337	EL-2024-00337	Mahamat	SALEH	M	2015-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:21	2026-05-12 20:05:21	\N
338	EL-2024-00338	Youssouf	HASSAN	M	2009-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:21	2026-05-12 20:05:21	\N
339	EL-2024-00339	Mahamat	DJIBRINE	M	2011-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:21	2026-05-12 20:05:21	\N
340	EL-2024-00340	Youssouf	NGARADOUM	M	2019-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:21	2026-05-12 20:05:21	\N
341	EL-2024-00341	Salima	MAHAMAT	F	2017-05-12	Sarh	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:21	2026-05-12 20:05:21	\N
342	EL-2024-00342	Nadia	DEBY	F	2011-05-12	N'Djamena	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:21	2026-05-12 20:05:21	\N
343	EL-2024-00343	Youssouf	IBRAHIM	M	2016-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:21	2026-05-12 20:05:21	\N
344	EL-2024-00344	Mariam	KHAMIS	F	2015-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:21	2026-05-12 20:05:21	\N
345	EL-2024-00345	Youssouf	TAHIR	M	2019-05-12	Abéché	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:21	2026-05-12 20:05:21	\N
346	EL-2024-00346	Haoua	MOUSSA	F	2015-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:21	2026-05-12 20:05:21	\N
347	EL-2024-00347	Salima	DEBY	F	2019-05-12	Moundou	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:21	2026-05-12 20:05:21	\N
348	EL-2024-00348	Nadia	NGARADOUM	F	2014-05-12	Bongor	Tchadienne	\N	f	\N	\N	3	active	\N	2026-05-12 20:05:21	2026-05-12 20:05:21	\N
1	EL-2024-00001	Moussa	ISSA	M	2010-05-12	Moundou	Tchadienne	\N	f	\N	\N	1	active	\N	2026-05-12 20:05:15	2026-05-12 21:49:11	133
\.


--
-- Data for Name: subjects; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.subjects (id, name, code, cycle, coefficient, is_active, created_at, updated_at, deleted_at) FROM stdin;
20	Mathématiques	MATH-P	primary	3.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
21	Français	FR-P	primary	3.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
22	Sciences Naturelles	SN-P	primary	2.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
23	Histoire-Géographie	HG-P	primary	2.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
24	Éducation Civique	EC-P	primary	1.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
25	Éducation Physique	EPS-P	primary	1.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
26	Mathématiques	MATH-S	middle	4.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
27	Français	FR-S	middle	4.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
28	Anglais	ANG-S	middle	3.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
29	Physique-Chimie	PC-S	middle	3.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
30	Sciences de la Vie	SVT-S	middle	2.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
31	Histoire-Géographie	HG-S	middle	2.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
32	Éducation Physique	EPS-S	middle	1.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
33	Mathématiques	MATH-L	high	5.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
34	Français	FR-L	high	4.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
35	Anglais	ANG-L	high	3.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
36	Philosophie	PHILO-L	high	3.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
37	Physique-Chimie	PC-L	high	4.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
38	Sciences de la Vie	SVT-L	high	3.00	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
\.


--
-- Data for Name: teacher_assignments; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.teacher_assignments (id, teacher_id, school_class_id, subject_id, school_year_id, hours_per_week, created_at, updated_at) FROM stdin;
1	9	1	20	2	2	2026-05-12 21:49:08	2026-05-12 21:49:08
2	10	1	21	2	2	2026-05-12 21:49:08	2026-05-12 21:49:08
3	11	1	22	2	4	2026-05-12 21:49:08	2026-05-12 21:49:08
4	12	1	23	2	3	2026-05-12 21:49:08	2026-05-12 21:49:08
5	14	1	24	2	3	2026-05-12 21:49:08	2026-05-12 21:49:08
6	16	1	25	2	5	2026-05-12 21:49:08	2026-05-12 21:49:08
7	9	2	20	2	4	2026-05-12 21:49:08	2026-05-12 21:49:08
8	10	2	21	2	2	2026-05-12 21:49:08	2026-05-12 21:49:08
9	11	2	22	2	3	2026-05-12 21:49:08	2026-05-12 21:49:08
10	12	2	23	2	4	2026-05-12 21:49:08	2026-05-12 21:49:08
11	14	2	24	2	2	2026-05-12 21:49:08	2026-05-12 21:49:08
12	14	2	25	2	4	2026-05-12 21:49:08	2026-05-12 21:49:08
13	9	3	20	2	2	2026-05-12 21:49:08	2026-05-12 21:49:08
14	10	3	21	2	5	2026-05-12 21:49:08	2026-05-12 21:49:08
15	11	3	22	2	5	2026-05-12 21:49:08	2026-05-12 21:49:08
16	12	3	23	2	2	2026-05-12 21:49:08	2026-05-12 21:49:08
17	16	3	24	2	3	2026-05-12 21:49:08	2026-05-12 21:49:08
18	12	3	25	2	4	2026-05-12 21:49:08	2026-05-12 21:49:08
19	9	4	20	2	5	2026-05-12 21:49:08	2026-05-12 21:49:08
20	10	4	21	2	4	2026-05-12 21:49:08	2026-05-12 21:49:08
21	11	4	22	2	4	2026-05-12 21:49:08	2026-05-12 21:49:08
22	12	4	23	2	4	2026-05-12 21:49:08	2026-05-12 21:49:08
23	12	4	24	2	2	2026-05-12 21:49:08	2026-05-12 21:49:08
24	16	4	25	2	4	2026-05-12 21:49:08	2026-05-12 21:49:08
25	9	5	20	2	5	2026-05-12 21:49:08	2026-05-12 21:49:08
26	10	5	21	2	3	2026-05-12 21:49:08	2026-05-12 21:49:08
27	11	5	22	2	4	2026-05-12 21:49:08	2026-05-12 21:49:08
28	12	5	23	2	5	2026-05-12 21:49:08	2026-05-12 21:49:08
29	12	5	24	2	4	2026-05-12 21:49:08	2026-05-12 21:49:08
30	11	5	25	2	4	2026-05-12 21:49:08	2026-05-12 21:49:08
31	9	6	20	2	4	2026-05-12 21:49:08	2026-05-12 21:49:08
32	10	6	21	2	3	2026-05-12 21:49:08	2026-05-12 21:49:08
33	11	6	22	2	3	2026-05-12 21:49:08	2026-05-12 21:49:08
34	12	6	23	2	4	2026-05-12 21:49:09	2026-05-12 21:49:09
35	16	6	24	2	4	2026-05-12 21:49:09	2026-05-12 21:49:09
36	9	6	25	2	4	2026-05-12 21:49:09	2026-05-12 21:49:09
37	17	7	33	2	2	2026-05-12 21:49:09	2026-05-12 21:49:09
38	18	7	34	2	4	2026-05-12 21:49:09	2026-05-12 21:49:09
39	21	7	35	2	2	2026-05-12 21:49:09	2026-05-12 21:49:09
40	17	7	36	2	5	2026-05-12 21:49:09	2026-05-12 21:49:09
41	22	7	37	2	5	2026-05-12 21:49:09	2026-05-12 21:49:09
42	19	7	38	2	5	2026-05-12 21:49:09	2026-05-12 21:49:09
43	17	8	33	2	4	2026-05-12 21:49:09	2026-05-12 21:49:09
44	18	8	34	2	3	2026-05-12 21:49:09	2026-05-12 21:49:09
45	21	8	35	2	5	2026-05-12 21:49:09	2026-05-12 21:49:09
46	19	8	36	2	2	2026-05-12 21:49:09	2026-05-12 21:49:09
47	22	8	37	2	4	2026-05-12 21:49:09	2026-05-12 21:49:09
48	19	8	38	2	2	2026-05-12 21:49:09	2026-05-12 21:49:09
49	17	9	33	2	5	2026-05-12 21:49:09	2026-05-12 21:49:09
50	18	9	34	2	2	2026-05-12 21:49:09	2026-05-12 21:49:09
51	21	9	35	2	5	2026-05-12 21:49:09	2026-05-12 21:49:09
52	19	9	36	2	3	2026-05-12 21:49:09	2026-05-12 21:49:09
53	22	9	37	2	5	2026-05-12 21:49:09	2026-05-12 21:49:09
54	19	9	38	2	5	2026-05-12 21:49:09	2026-05-12 21:49:09
55	25	10	26	2	4	2026-05-12 21:49:09	2026-05-12 21:49:09
56	26	10	27	2	3	2026-05-12 21:49:09	2026-05-12 21:49:09
57	29	10	28	2	4	2026-05-12 21:49:09	2026-05-12 21:49:09
58	30	10	29	2	5	2026-05-12 21:49:09	2026-05-12 21:49:09
59	27	10	30	2	3	2026-05-12 21:49:09	2026-05-12 21:49:09
60	28	10	31	2	2	2026-05-12 21:49:09	2026-05-12 21:49:09
61	28	10	32	2	2	2026-05-12 21:49:09	2026-05-12 21:49:09
62	25	11	26	2	5	2026-05-12 21:49:09	2026-05-12 21:49:09
63	26	11	27	2	3	2026-05-12 21:49:09	2026-05-12 21:49:09
64	29	11	28	2	2	2026-05-12 21:49:09	2026-05-12 21:49:09
65	30	11	29	2	3	2026-05-12 21:49:09	2026-05-12 21:49:09
66	27	11	30	2	2	2026-05-12 21:49:09	2026-05-12 21:49:09
67	28	11	31	2	3	2026-05-12 21:49:09	2026-05-12 21:49:09
68	31	11	32	2	5	2026-05-12 21:49:09	2026-05-12 21:49:09
69	25	12	26	2	2	2026-05-12 21:49:09	2026-05-12 21:49:09
70	26	12	27	2	4	2026-05-12 21:49:09	2026-05-12 21:49:09
71	29	12	28	2	2	2026-05-12 21:49:09	2026-05-12 21:49:09
72	30	12	29	2	4	2026-05-12 21:49:09	2026-05-12 21:49:09
73	27	12	30	2	4	2026-05-12 21:49:09	2026-05-12 21:49:09
74	28	12	31	2	4	2026-05-12 21:49:09	2026-05-12 21:49:09
75	27	12	32	2	2	2026-05-12 21:49:09	2026-05-12 21:49:09
76	25	13	26	2	4	2026-05-12 21:49:09	2026-05-12 21:49:09
77	26	13	27	2	5	2026-05-12 21:49:09	2026-05-12 21:49:09
78	29	13	28	2	4	2026-05-12 21:49:09	2026-05-12 21:49:09
79	30	13	29	2	4	2026-05-12 21:49:09	2026-05-12 21:49:09
80	27	13	30	2	3	2026-05-12 21:49:09	2026-05-12 21:49:09
81	28	13	31	2	3	2026-05-12 21:49:09	2026-05-12 21:49:09
82	29	13	32	2	2	2026-05-12 21:49:09	2026-05-12 21:49:09
\.


--
-- Data for Name: teachers; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.teachers (id, user_id, school_id, matricule, gender, birth_date, specialty, degree, status, hired_at, address, is_active, created_at, updated_at, deleted_at) FROM stdin;
9	33	1	ENS-2024-0001	M	1985-02-02	Mathématiques	Master	civil	2015-09-01	\N	t	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
10	34	1	ENS-2024-0002	F	1985-05-20	Français	Licence	civil	2015-09-01	\N	t	2026-05-12 20:05:09	2026-05-12 20:05:09	\N
11	35	1	ENS-2024-0003	M	1985-11-06	Sciences Naturelles	Licence	civil	2015-09-01	\N	t	2026-05-12 20:05:09	2026-05-12 20:05:09	\N
12	36	1	ENS-2024-0004	F	1985-04-02	Histoire-Géographie	Licence	civil	2015-09-01	\N	t	2026-05-12 20:05:09	2026-05-12 20:05:09	\N
13	37	1	ENS-2024-0005	M	1985-07-18	Anglais	Master	civil	2015-09-01	\N	t	2026-05-12 20:05:10	2026-05-12 20:05:10	\N
14	38	1	ENS-2024-0006	F	1985-03-05	Physique-Chimie	Licence	civil	2015-09-01	\N	t	2026-05-12 20:05:10	2026-05-12 20:05:10	\N
15	39	1	ENS-2024-0007	M	1985-09-24	Mathématiques	Master	civil	2015-09-01	\N	t	2026-05-12 20:05:10	2026-05-12 20:05:10	\N
16	40	1	ENS-2024-0008	F	1985-11-10	Français	Licence	civil	2015-09-01	\N	t	2026-05-12 20:05:11	2026-05-12 20:05:11	\N
17	41	2	ENS-2024-0009	M	1985-12-08	Mathématiques	Master	civil	2015-09-01	\N	t	2026-05-12 20:05:11	2026-05-12 20:05:11	\N
18	42	2	ENS-2024-0010	F	1985-03-11	Français	Licence	civil	2015-09-01	\N	t	2026-05-12 20:05:11	2026-05-12 20:05:11	\N
19	43	2	ENS-2024-0011	M	1985-01-06	Sciences Naturelles	Licence	civil	2015-09-01	\N	t	2026-05-12 20:05:11	2026-05-12 20:05:11	\N
20	44	2	ENS-2024-0012	F	1985-06-02	Histoire-Géographie	Licence	civil	2015-09-01	\N	t	2026-05-12 20:05:12	2026-05-12 20:05:12	\N
21	45	2	ENS-2024-0013	M	1985-04-23	Anglais	Master	civil	2015-09-01	\N	t	2026-05-12 20:05:12	2026-05-12 20:05:12	\N
22	46	2	ENS-2024-0014	F	1985-12-14	Physique-Chimie	Licence	civil	2015-09-01	\N	t	2026-05-12 20:05:12	2026-05-12 20:05:12	\N
23	47	2	ENS-2024-0015	M	1985-09-28	Mathématiques	Master	civil	2015-09-01	\N	t	2026-05-12 20:05:13	2026-05-12 20:05:13	\N
24	48	2	ENS-2024-0016	F	1985-05-06	Français	Licence	civil	2015-09-01	\N	t	2026-05-12 20:05:13	2026-05-12 20:05:13	\N
25	49	3	ENS-2024-0017	M	1985-08-13	Mathématiques	Master	civil	2015-09-01	\N	t	2026-05-12 20:05:13	2026-05-12 20:05:13	\N
26	50	3	ENS-2024-0018	F	1985-03-27	Français	Licence	civil	2015-09-01	\N	t	2026-05-12 20:05:14	2026-05-12 20:05:14	\N
27	51	3	ENS-2024-0019	M	1985-09-22	Sciences Naturelles	Licence	civil	2015-09-01	\N	t	2026-05-12 20:05:14	2026-05-12 20:05:14	\N
28	52	3	ENS-2024-0020	F	1985-09-24	Histoire-Géographie	Licence	civil	2015-09-01	\N	t	2026-05-12 20:05:14	2026-05-12 20:05:14	\N
29	53	3	ENS-2024-0021	M	1985-10-22	Anglais	Master	civil	2015-09-01	\N	t	2026-05-12 20:05:15	2026-05-12 20:05:15	\N
30	54	3	ENS-2024-0022	F	1985-11-13	Physique-Chimie	Licence	civil	2015-09-01	\N	t	2026-05-12 20:05:15	2026-05-12 20:05:15	\N
31	55	3	ENS-2024-0023	M	1985-01-21	Mathématiques	Master	civil	2015-09-01	\N	t	2026-05-12 20:05:15	2026-05-12 20:05:15	\N
32	56	3	ENS-2024-0024	F	1985-03-15	Français	Licence	civil	2015-09-01	\N	t	2026-05-12 20:05:15	2026-05-12 20:05:15	\N
\.


--
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.users (id, first_name, last_name, email, phone, email_verified_at, password, avatar, locale, is_active, school_id, region_id, last_login_at, remember_token, created_at, updated_at, deleted_at) FROM stdin;
11	Admin	Système	superadmin@edupilot.td	\N	\N	$2y$12$O854mjL9iU.yyGEPuzmo3uxNwGO1GuArsq.tgKVqgEWTzVWacg3ja	\N	fr	t	\N	\N	\N	\N	2026-05-12 19:45:28	2026-05-12 19:45:28	\N
12	Directeur	National	admin.national@edupilot.td	\N	\N	$2y$12$hl0LwzJHXMfsa6LehCBZhOeYNHxTl7vjWoT2IxaX.5uLwThWRt3Nu	\N	fr	t	\N	\N	\N	\N	2026-05-12 19:45:29	2026-05-12 19:45:29	\N
13	Admin	N'Djamena	admin.ndjamena@edupilot.td	\N	\N	$2y$12$UCN12JlK.TMFcqq9aw0bOOEbkhrVEdEgZ7OKbb3d3A4eW.JeQy.0W	\N	fr	t	\N	\N	\N	\N	2026-05-12 19:45:29	2026-05-12 19:45:29	\N
14	Admin	Chari-Baguirmi	admin.chari@edupilot.td	\N	\N	$2y$12$PMWyXNOeP9OLJVOvSVQAzOMR/ouDB0pCffooFOcBwpFPJcR5dKIv2	\N	fr	t	\N	\N	\N	\N	2026-05-12 19:45:29	2026-05-12 19:45:29	\N
131	Zara	OUMAR	parent1@edupilot.td	\N	2026-05-12 21:49:09	$2y$12$YuXbBSCHk7avYtpO0jqdCuG59WQg3MkmYHsaLfy/pLb/J11qFKfvy	\N	fr	t	\N	\N	\N	\N	2026-05-12 21:49:09	2026-05-12 21:49:09	\N
132	Moussa	HASSAN	parent2@edupilot.td	\N	2026-05-12 21:49:10	$2y$12$2zuiXAKAXJkuC3M7VCLn0.P7XdYoTBnS5yLal.sc1oyHlHTNW6BrG	\N	fr	t	\N	\N	\N	\N	2026-05-12 21:49:10	2026-05-12 21:49:10	\N
133	Moussa	ISSA	eleve1@edupilot.td	\N	2026-05-12 21:49:11	$2y$12$VNpgRRmbKDiVrMBnkoqj2OqM/R3wbvbvYZRI8klBmUCM5f9bN2E0a	\N	fr	t	\N	\N	\N	\N	2026-05-12 21:49:11	2026-05-12 21:49:11	\N
134	Mahamat	ADOUM	eleve2@edupilot.td	\N	2026-05-12 21:49:11	$2y$12$2tynPMDBZB7wQMOuJk188e8m8LcNcYykKV.iJlqxz3V0tXsyPxITy	\N	fr	t	\N	\N	\N	\N	2026-05-12 21:49:11	2026-05-12 21:49:11	\N
135	Mariam	ISSA	eleve3@edupilot.td	\N	2026-05-12 21:49:11	$2y$12$biilMWjUR71Vx4OMEKzZw.jGFjckEEb4UGldjc3iUWiiltyTUDHhe	\N	fr	t	\N	\N	\N	\N	2026-05-12 21:49:11	2026-05-12 21:49:11	\N
33	Mahamat	SALEH	mahamat.saleh1@edupilot.td	\N	\N	$2y$12$LhWkxLNF31l5hkrzjlbjBOILKLSTBFy7cn/079bDVUgT4.C8Uw1AS	\N	fr	t	1	\N	\N	\N	2026-05-12 20:05:08	2026-05-12 20:05:08	\N
34	Aïcha	OUMAR	aïcha.oumar2@edupilot.td	\N	\N	$2y$12$qBeJfEBisvQ0JkOAMxzzjuxFHGAtn1NJXJGimiFUa95Q62/gm5AZG	\N	fr	t	1	\N	\N	\N	2026-05-12 20:05:09	2026-05-12 20:05:09	\N
35	Adoum	BRAHIM	adoum.brahim3@edupilot.td	\N	\N	$2y$12$uX/gn6mlXZG2X/jnjSWGZeY7gYH1.J95.GsSU.IumFy.G9FimnQWe	\N	fr	t	1	\N	\N	\N	2026-05-12 20:05:09	2026-05-12 20:05:09	\N
36	Fatimé	HASSAN	fatimé.hassan4@edupilot.td	\N	\N	$2y$12$gOW01peRIIy1Tm4T6jSqR.qQpFejW5cYT.tMSlY/3hZ59.asxtBle	\N	fr	t	1	\N	\N	\N	2026-05-12 20:05:09	2026-05-12 20:05:09	\N
37	Idriss	DEBY	idriss.deby5@edupilot.td	\N	\N	$2y$12$r8nhmZlyeHo3a0z0kw4AjOIS77cDs8flEEuH4zfVVZTIR7cYEVUTa	\N	fr	t	1	\N	\N	\N	2026-05-12 20:05:10	2026-05-12 20:05:10	\N
38	Mariam	ABDERAHIM	mariam.abderahim6@edupilot.td	\N	\N	$2y$12$gp.ug7AYJtqCEYePLJk1d.ZqXPjbI3ofFdryz.9FaXnIMQdLYlrda	\N	fr	t	1	\N	\N	\N	2026-05-12 20:05:10	2026-05-12 20:05:10	\N
39	Youssouf	MAHAMAT	youssouf.mahamat7@edupilot.td	\N	\N	$2y$12$qdJXjFldWwU7DF.Ms3D0EetDTGtjBt5Dp78VY2yqEoWvSXjjlK8OO	\N	fr	t	1	\N	\N	\N	2026-05-12 20:05:10	2026-05-12 20:05:10	\N
40	Haoua	IBRAHIM	haoua.ibrahim8@edupilot.td	\N	\N	$2y$12$PzBfpM52zmOt9a0OgbPL6.yDHcjt46.evoP2POBNYf.NOiHDar1Um	\N	fr	t	1	\N	\N	\N	2026-05-12 20:05:11	2026-05-12 20:05:11	\N
41	Mahamat	SALEH	mahamat.saleh9@edupilot.td	\N	\N	$2y$12$Af8Y.mBbPn2agX5dIcMe0uHgm.taxRSj7Ue/n0O1Hjec.HRVqJpOC	\N	fr	t	2	\N	\N	\N	2026-05-12 20:05:11	2026-05-12 20:05:11	\N
42	Aïcha	OUMAR	aïcha.oumar10@edupilot.td	\N	\N	$2y$12$YPfTZRxx/I0p5dUr2.6mbO5mI6nyL2vFDhbiSoFwG9EDilzdvT7Ka	\N	fr	t	2	\N	\N	\N	2026-05-12 20:05:11	2026-05-12 20:05:11	\N
43	Adoum	BRAHIM	adoum.brahim11@edupilot.td	\N	\N	$2y$12$fSZbKifpiJwMvxw8v/NZWeZCEGhm.nbOp7e.yyACl7kF/AkWDF.eS	\N	fr	t	2	\N	\N	\N	2026-05-12 20:05:11	2026-05-12 20:05:11	\N
44	Fatimé	HASSAN	fatimé.hassan12@edupilot.td	\N	\N	$2y$12$4VfgL4c2YSq/O41b4VNF2.3LbXlo5lEPs2vFkY3WMyaMhJoXojKSe	\N	fr	t	2	\N	\N	\N	2026-05-12 20:05:12	2026-05-12 20:05:12	\N
45	Idriss	DEBY	idriss.deby13@edupilot.td	\N	\N	$2y$12$zQr/JXWe.2gSL4cMyD57r.RPC2T1WIlDGiSZ9KwvypzXAyAMe6FRq	\N	fr	t	2	\N	\N	\N	2026-05-12 20:05:12	2026-05-12 20:05:12	\N
46	Mariam	ABDERAHIM	mariam.abderahim14@edupilot.td	\N	\N	$2y$12$qygT1Tla6mnqTSLJzouZreadMbLIr6G8K4Kg5cJOIXfhk83VQULH2	\N	fr	t	2	\N	\N	\N	2026-05-12 20:05:12	2026-05-12 20:05:12	\N
47	Youssouf	MAHAMAT	youssouf.mahamat15@edupilot.td	\N	\N	$2y$12$yTc1HzhrDRR6z2A5Wk7gm.qzhwlrZSw6GAiL/1Dh5nIIw0SoKlRE6	\N	fr	t	2	\N	\N	\N	2026-05-12 20:05:13	2026-05-12 20:05:13	\N
48	Haoua	IBRAHIM	haoua.ibrahim16@edupilot.td	\N	\N	$2y$12$r/3gPEf0JRP2hOVfIv33C.oZw0XdVAqo35ODTGZxFowzaLk/tXLYe	\N	fr	t	2	\N	\N	\N	2026-05-12 20:05:13	2026-05-12 20:05:13	\N
49	Mahamat	SALEH	mahamat.saleh17@edupilot.td	\N	\N	$2y$12$yCdXO8drU1rQ2GS4RyplyOq4TQFHpgkXRt1RO6QaHJrR./98wVFJe	\N	fr	t	3	\N	\N	\N	2026-05-12 20:05:13	2026-05-12 20:05:13	\N
50	Aïcha	OUMAR	aïcha.oumar18@edupilot.td	\N	\N	$2y$12$wB.jXCzVStY8mGrY432L.OFqULmKW8LQqT1Ez.9SkXW62k60WNZ92	\N	fr	t	3	\N	\N	\N	2026-05-12 20:05:14	2026-05-12 20:05:14	\N
51	Adoum	BRAHIM	adoum.brahim19@edupilot.td	\N	\N	$2y$12$Fnz3r.Xlkp6n0aqDndo4YeRqEg1ku0EwL09AViI02ux6WCiBS6ZHm	\N	fr	t	3	\N	\N	\N	2026-05-12 20:05:14	2026-05-12 20:05:14	\N
52	Fatimé	HASSAN	fatimé.hassan20@edupilot.td	\N	\N	$2y$12$SQ.Ytq4gzFBzf2RDCxAWqOykkkrLDhYyv57Vmsj7fwsKonasyDazS	\N	fr	t	3	\N	\N	\N	2026-05-12 20:05:14	2026-05-12 20:05:14	\N
53	Idriss	DEBY	idriss.deby21@edupilot.td	\N	\N	$2y$12$bPSdvxawq.3efvsqsAPjUu4MIxIaAR9Wvb8skUjWBTsWlITAkIJWC	\N	fr	t	3	\N	\N	\N	2026-05-12 20:05:15	2026-05-12 20:05:15	\N
54	Mariam	ABDERAHIM	mariam.abderahim22@edupilot.td	\N	\N	$2y$12$uCeMbBPQ5HaZHLtvr9ydtOgPPyLFybPCXdN9N7k/ekeDkJ1nxM1uy	\N	fr	t	3	\N	\N	\N	2026-05-12 20:05:15	2026-05-12 20:05:15	\N
55	Youssouf	MAHAMAT	youssouf.mahamat23@edupilot.td	\N	\N	$2y$12$KS7DlJX8v7QS2VHMxj4Vnu4kK3iCoBCcJ/QIr/vQb1Ie8gUmQeb6q	\N	fr	t	3	\N	\N	\N	2026-05-12 20:05:15	2026-05-12 20:05:15	\N
56	Haoua	IBRAHIM	haoua.ibrahim24@edupilot.td	\N	\N	$2y$12$XO08NLEeu2zp/ydX8g/WmOJbbmpD.RLzrlOsiPO7HU6SGLq6dJt/K	\N	fr	t	3	\N	\N	\N	2026-05-12 20:05:15	2026-05-12 20:05:15	\N
\.


--
-- Name: activity_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.activity_log_id_seq', 941, true);


--
-- Name: attendances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.attendances_id_seq', 1, false);


--
-- Name: classes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.classes_id_seq', 13, true);


--
-- Name: communes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.communes_id_seq', 23, true);


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

SELECT pg_catalog.setval('public.countries_id_seq', 1, true);


--
-- Name: departments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.departments_id_seq', 23, true);


--
-- Name: enrollments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.enrollments_id_seq', 348, true);


--
-- Name: evaluations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.evaluations_id_seq', 329, true);


--
-- Name: exam_candidates_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.exam_candidates_id_seq', 198, true);


--
-- Name: exams_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.exams_id_seq', 3, true);


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

SELECT pg_catalog.setval('public.failed_jobs_id_seq', 1, false);


--
-- Name: grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.grades_id_seq', 8820, true);


--
-- Name: guardians_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.guardians_id_seq', 2, true);


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

SELECT pg_catalog.setval('public.jobs_id_seq', 1, false);


--
-- Name: localities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.localities_id_seq', 23, true);


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

SELECT pg_catalog.setval('public.migrations_id_seq', 31, true);


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

SELECT pg_catalog.setval('public.permissions_id_seq', 1053, true);


--
-- Name: regions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.regions_id_seq', 23, true);


--
-- Name: report_cards_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.report_cards_id_seq', 348, true);


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

SELECT pg_catalog.setval('public.roles_id_seq', 104, true);


--
-- Name: school_years_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.school_years_id_seq', 3, true);


--
-- Name: schools_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.schools_id_seq', 3, true);


--
-- Name: student_guardian_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.student_guardian_id_seq', 4, true);


--
-- Name: students_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.students_id_seq', 348, true);


--
-- Name: subjects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.subjects_id_seq', 38, true);


--
-- Name: teacher_assignments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.teacher_assignments_id_seq', 82, true);


--
-- Name: teachers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.teachers_id_seq', 32, true);


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

SELECT pg_catalog.setval('public.users_id_seq', 135, true);


--
-- Name: activity_log activity_log_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.activity_log
    ADD CONSTRAINT activity_log_pkey PRIMARY KEY (id);


--
-- Name: attendances attendance_session_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.attendances
    ADD CONSTRAINT attendance_session_unique UNIQUE (student_id, school_class_id, date, subject_id);


--
-- Name: attendances attendances_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.attendances
    ADD CONSTRAINT attendances_pkey PRIMARY KEY (id);


--
-- Name: cache_locks cache_locks_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.cache_locks
    ADD CONSTRAINT cache_locks_pkey PRIMARY KEY (key);


--
-- Name: cache cache_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.cache
    ADD CONSTRAINT cache_pkey PRIMARY KEY (key);


--
-- Name: classes classes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.classes
    ADD CONSTRAINT classes_pkey PRIMARY KEY (id);


--
-- Name: communes communes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.communes
    ADD CONSTRAINT communes_pkey PRIMARY KEY (id);


--
-- Name: countries countries_code_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.countries
    ADD CONSTRAINT countries_code_unique UNIQUE (code);


--
-- Name: countries countries_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.countries
    ADD CONSTRAINT countries_pkey PRIMARY KEY (id);


--
-- Name: departments departments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.departments
    ADD CONSTRAINT departments_pkey PRIMARY KEY (id);


--
-- Name: exam_candidates ec_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.exam_candidates
    ADD CONSTRAINT ec_unique UNIQUE (exam_id, student_id);


--
-- Name: enrollments enrollments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.enrollments
    ADD CONSTRAINT enrollments_pkey PRIMARY KEY (id);


--
-- Name: enrollments enrollments_student_id_school_year_id_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.enrollments
    ADD CONSTRAINT enrollments_student_id_school_year_id_unique UNIQUE (student_id, school_year_id);


--
-- Name: evaluations evaluations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.evaluations
    ADD CONSTRAINT evaluations_pkey PRIMARY KEY (id);


--
-- Name: exam_candidates exam_candidates_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.exam_candidates
    ADD CONSTRAINT exam_candidates_pkey PRIMARY KEY (id);


--
-- Name: exams exams_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.exams
    ADD CONSTRAINT exams_pkey PRIMARY KEY (id);


--
-- Name: failed_jobs failed_jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.failed_jobs
    ADD CONSTRAINT failed_jobs_pkey PRIMARY KEY (id);


--
-- Name: failed_jobs failed_jobs_uuid_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.failed_jobs
    ADD CONSTRAINT failed_jobs_uuid_unique UNIQUE (uuid);


--
-- Name: grades grades_evaluation_id_student_id_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.grades
    ADD CONSTRAINT grades_evaluation_id_student_id_unique UNIQUE (evaluation_id, student_id);


--
-- Name: grades grades_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.grades
    ADD CONSTRAINT grades_pkey PRIMARY KEY (id);


--
-- Name: guardians guardians_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.guardians
    ADD CONSTRAINT guardians_pkey PRIMARY KEY (id);


--
-- Name: job_batches job_batches_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.job_batches
    ADD CONSTRAINT job_batches_pkey PRIMARY KEY (id);


--
-- Name: jobs jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.jobs
    ADD CONSTRAINT jobs_pkey PRIMARY KEY (id);


--
-- Name: localities localities_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.localities
    ADD CONSTRAINT localities_pkey PRIMARY KEY (id);


--
-- Name: migrations migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

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: -
--

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: -
--

ALTER TABLE ONLY public.model_has_roles
    ADD CONSTRAINT model_has_roles_pkey PRIMARY KEY (role_id, model_id, model_type);


--
-- Name: password_reset_tokens password_reset_tokens_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.password_reset_tokens
    ADD CONSTRAINT password_reset_tokens_pkey PRIMARY KEY (email);


--
-- Name: permissions permissions_name_guard_name_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.permissions
    ADD CONSTRAINT permissions_name_guard_name_unique UNIQUE (name, guard_name);


--
-- Name: permissions permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.permissions
    ADD CONSTRAINT permissions_pkey PRIMARY KEY (id);


--
-- Name: report_cards rc_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.report_cards
    ADD CONSTRAINT rc_unique UNIQUE (student_id, school_class_id, school_year_id, period);


--
-- Name: regions regions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.regions
    ADD CONSTRAINT regions_pkey PRIMARY KEY (id);


--
-- Name: report_cards report_cards_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.report_cards
    ADD CONSTRAINT report_cards_pkey PRIMARY KEY (id);


--
-- Name: role_has_permissions role_has_permissions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.role_has_permissions
    ADD CONSTRAINT role_has_permissions_pkey PRIMARY KEY (permission_id, role_id);


--
-- Name: roles roles_name_guard_name_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.roles
    ADD CONSTRAINT roles_name_guard_name_unique UNIQUE (name, guard_name);


--
-- Name: roles roles_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.roles
    ADD CONSTRAINT roles_pkey PRIMARY KEY (id);


--
-- Name: school_years school_years_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.school_years
    ADD CONSTRAINT school_years_pkey PRIMARY KEY (id);


--
-- Name: schools schools_code_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.schools
    ADD CONSTRAINT schools_code_unique UNIQUE (code);


--
-- Name: schools schools_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.schools
    ADD CONSTRAINT schools_pkey PRIMARY KEY (id);


--
-- Name: sessions sessions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.sessions
    ADD CONSTRAINT sessions_pkey PRIMARY KEY (id);


--
-- Name: student_guardian student_guardian_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.student_guardian
    ADD CONSTRAINT student_guardian_pkey PRIMARY KEY (id);


--
-- Name: student_guardian student_guardian_student_id_guardian_id_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.student_guardian
    ADD CONSTRAINT student_guardian_student_id_guardian_id_unique UNIQUE (student_id, guardian_id);


--
-- Name: students students_matricule_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.students
    ADD CONSTRAINT students_matricule_unique UNIQUE (matricule);


--
-- Name: students students_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.students
    ADD CONSTRAINT students_pkey PRIMARY KEY (id);


--
-- Name: subjects subjects_code_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.subjects
    ADD CONSTRAINT subjects_code_unique UNIQUE (code);


--
-- Name: subjects subjects_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.subjects
    ADD CONSTRAINT subjects_pkey PRIMARY KEY (id);


--
-- Name: teacher_assignments ta_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.teacher_assignments
    ADD CONSTRAINT ta_unique UNIQUE (teacher_id, school_class_id, subject_id, school_year_id);


--
-- Name: teacher_assignments teacher_assignments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.teacher_assignments
    ADD CONSTRAINT teacher_assignments_pkey PRIMARY KEY (id);


--
-- Name: teachers teachers_matricule_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.teachers
    ADD CONSTRAINT teachers_matricule_unique UNIQUE (matricule);


--
-- Name: teachers teachers_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.teachers
    ADD CONSTRAINT teachers_pkey PRIMARY KEY (id);


--
-- Name: teachers teachers_user_id_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.teachers
    ADD CONSTRAINT teachers_user_id_unique UNIQUE (user_id);


--
-- Name: users users_email_unique; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.users
    ADD CONSTRAINT users_email_unique UNIQUE (email);


--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.users
    ADD CONSTRAINT users_pkey PRIMARY KEY (id);


--
-- Name: activity_log_log_name_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX activity_log_log_name_index ON public.activity_log USING btree (log_name);


--
-- Name: attendances_school_class_id_date_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX attendances_school_class_id_date_index ON public.attendances USING btree (school_class_id, date);


--
-- Name: attendances_student_id_school_year_id_status_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX attendances_student_id_school_year_id_status_index ON public.attendances USING btree (student_id, school_year_id, status);


--
-- Name: causer; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX causer ON public.activity_log USING btree (causer_type, causer_id);


--
-- Name: classes_school_id_school_year_id_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX classes_school_id_school_year_id_index ON public.classes USING btree (school_id, school_year_id);


--
-- Name: classes_school_id_school_year_id_status_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX classes_school_id_school_year_id_status_index ON public.classes USING btree (school_id, school_year_id, status);


--
-- Name: communes_department_id_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX communes_department_id_index ON public.communes USING btree (department_id);


--
-- Name: departments_region_id_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX departments_region_id_index ON public.departments USING btree (region_id);


--
-- Name: enrollments_school_class_id_school_year_id_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX enrollments_school_class_id_school_year_id_index ON public.enrollments USING btree (school_class_id, school_year_id);


--
-- Name: enrollments_school_id_school_year_id_status_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX enrollments_school_id_school_year_id_status_index ON public.enrollments USING btree (school_id, school_year_id, status);


--
-- Name: evaluations_school_class_id_school_year_id_period_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX evaluations_school_class_id_school_year_id_period_index ON public.evaluations USING btree (school_class_id, school_year_id, period);


--
-- Name: evaluations_subject_id_school_year_id_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX evaluations_subject_id_school_year_id_index ON public.evaluations USING btree (subject_id, school_year_id);


--
-- Name: exam_candidates_exam_id_candidate_status_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX exam_candidates_exam_id_candidate_status_index ON public.exam_candidates USING btree (exam_id, candidate_status);


--
-- Name: exam_candidates_student_id_exam_id_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX exam_candidates_student_id_exam_id_index ON public.exam_candidates USING btree (student_id, exam_id);


--
-- Name: exams_school_year_id_status_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX exams_school_year_id_status_index ON public.exams USING btree (school_year_id, status);


--
-- Name: grades_student_id_evaluation_id_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX grades_student_id_evaluation_id_index ON public.grades USING btree (student_id, evaluation_id);


--
-- Name: jobs_queue_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX jobs_queue_index ON public.jobs USING btree (queue);


--
-- Name: localities_commune_id_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX localities_commune_id_index ON public.localities USING btree (commune_id);


--
-- Name: model_has_permissions_model_id_model_type_index; Type: INDEX; Schema: public; Owner: -
--

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: -
--

CREATE INDEX model_has_roles_model_id_model_type_index ON public.model_has_roles USING btree (model_id, model_type);


--
-- Name: regions_country_id_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX regions_country_id_index ON public.regions USING btree (country_id);


--
-- Name: report_cards_school_class_id_school_year_id_period_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX report_cards_school_class_id_school_year_id_period_index ON public.report_cards USING btree (school_class_id, school_year_id, period);


--
-- Name: report_cards_student_id_school_year_id_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX report_cards_student_id_school_year_id_index ON public.report_cards USING btree (student_id, school_year_id);


--
-- Name: school_years_country_id_status_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX school_years_country_id_status_index ON public.school_years USING btree (country_id, status);


--
-- Name: schools_country_id_cycle_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX schools_country_id_cycle_index ON public.schools USING btree (country_id, cycle);


--
-- Name: schools_region_id_status_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX schools_region_id_status_index ON public.schools USING btree (region_id, status);


--
-- Name: sessions_last_activity_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX sessions_last_activity_index ON public.sessions USING btree (last_activity);


--
-- Name: sessions_user_id_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX sessions_user_id_index ON public.sessions USING btree (user_id);


--
-- Name: students_matricule_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX students_matricule_index ON public.students USING btree (matricule);


--
-- Name: students_school_id_status_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX students_school_id_status_index ON public.students USING btree (school_id, status);


--
-- Name: subject; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX subject ON public.activity_log USING btree (subject_type, subject_id);


--
-- Name: teacher_assignments_school_class_id_school_year_id_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX teacher_assignments_school_class_id_school_year_id_index ON public.teacher_assignments USING btree (school_class_id, school_year_id);


--
-- Name: teacher_assignments_teacher_id_school_year_id_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX teacher_assignments_teacher_id_school_year_id_index ON public.teacher_assignments USING btree (teacher_id, school_year_id);


--
-- Name: teachers_school_id_status_index; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX teachers_school_id_status_index ON public.teachers USING btree (school_id, status);


--
-- Name: attendances attendances_school_class_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.attendances
    ADD CONSTRAINT attendances_school_class_id_foreign FOREIGN KEY (school_class_id) REFERENCES public.classes(id) ON DELETE CASCADE;


--
-- Name: attendances attendances_school_year_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.attendances
    ADD CONSTRAINT attendances_school_year_id_foreign FOREIGN KEY (school_year_id) REFERENCES public.school_years(id) ON DELETE CASCADE;


--
-- Name: attendances attendances_student_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.attendances
    ADD CONSTRAINT attendances_student_id_foreign FOREIGN KEY (student_id) REFERENCES public.students(id) ON DELETE CASCADE;


--
-- Name: attendances attendances_subject_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.attendances
    ADD CONSTRAINT attendances_subject_id_foreign FOREIGN KEY (subject_id) REFERENCES public.subjects(id) ON DELETE SET NULL;


--
-- Name: attendances attendances_teacher_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.attendances
    ADD CONSTRAINT attendances_teacher_id_foreign FOREIGN KEY (teacher_id) REFERENCES public.teachers(id) ON DELETE SET NULL;


--
-- Name: classes classes_main_teacher_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.classes
    ADD CONSTRAINT classes_main_teacher_id_foreign FOREIGN KEY (main_teacher_id) REFERENCES public.users(id) ON DELETE SET NULL;


--
-- Name: classes classes_school_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.classes
    ADD CONSTRAINT classes_school_id_foreign FOREIGN KEY (school_id) REFERENCES public.schools(id);


--
-- Name: classes classes_school_year_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.classes
    ADD CONSTRAINT classes_school_year_id_foreign FOREIGN KEY (school_year_id) REFERENCES public.school_years(id);


--
-- Name: communes communes_department_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.communes
    ADD CONSTRAINT communes_department_id_foreign FOREIGN KEY (department_id) REFERENCES public.departments(id) ON DELETE CASCADE;


--
-- Name: departments departments_region_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.departments
    ADD CONSTRAINT departments_region_id_foreign FOREIGN KEY (region_id) REFERENCES public.regions(id) ON DELETE CASCADE;


--
-- Name: enrollments enrollments_school_class_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.enrollments
    ADD CONSTRAINT enrollments_school_class_id_foreign FOREIGN KEY (school_class_id) REFERENCES public.classes(id);


--
-- Name: enrollments enrollments_school_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.enrollments
    ADD CONSTRAINT enrollments_school_id_foreign FOREIGN KEY (school_id) REFERENCES public.schools(id);


--
-- Name: enrollments enrollments_school_year_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.enrollments
    ADD CONSTRAINT enrollments_school_year_id_foreign FOREIGN KEY (school_year_id) REFERENCES public.school_years(id);


--
-- Name: enrollments enrollments_student_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.enrollments
    ADD CONSTRAINT enrollments_student_id_foreign FOREIGN KEY (student_id) REFERENCES public.students(id) ON DELETE CASCADE;


--
-- Name: evaluations evaluations_school_class_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.evaluations
    ADD CONSTRAINT evaluations_school_class_id_foreign FOREIGN KEY (school_class_id) REFERENCES public.classes(id) ON DELETE CASCADE;


--
-- Name: evaluations evaluations_school_year_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.evaluations
    ADD CONSTRAINT evaluations_school_year_id_foreign FOREIGN KEY (school_year_id) REFERENCES public.school_years(id) ON DELETE CASCADE;


--
-- Name: evaluations evaluations_subject_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.evaluations
    ADD CONSTRAINT evaluations_subject_id_foreign FOREIGN KEY (subject_id) REFERENCES public.subjects(id) ON DELETE CASCADE;


--
-- Name: evaluations evaluations_teacher_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.evaluations
    ADD CONSTRAINT evaluations_teacher_id_foreign FOREIGN KEY (teacher_id) REFERENCES public.teachers(id) ON DELETE SET NULL;


--
-- Name: exam_candidates exam_candidates_exam_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.exam_candidates
    ADD CONSTRAINT exam_candidates_exam_id_foreign FOREIGN KEY (exam_id) REFERENCES public.exams(id) ON DELETE CASCADE;


--
-- Name: exam_candidates exam_candidates_school_class_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.exam_candidates
    ADD CONSTRAINT exam_candidates_school_class_id_foreign FOREIGN KEY (school_class_id) REFERENCES public.classes(id) ON DELETE SET NULL;


--
-- Name: exam_candidates exam_candidates_school_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.exam_candidates
    ADD CONSTRAINT exam_candidates_school_id_foreign FOREIGN KEY (school_id) REFERENCES public.schools(id) ON DELETE SET NULL;


--
-- Name: exam_candidates exam_candidates_student_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.exam_candidates
    ADD CONSTRAINT exam_candidates_student_id_foreign FOREIGN KEY (student_id) REFERENCES public.students(id) ON DELETE CASCADE;


--
-- Name: exams exams_school_year_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.exams
    ADD CONSTRAINT exams_school_year_id_foreign FOREIGN KEY (school_year_id) REFERENCES public.school_years(id) ON DELETE CASCADE;


--
-- Name: grades grades_evaluation_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.grades
    ADD CONSTRAINT grades_evaluation_id_foreign FOREIGN KEY (evaluation_id) REFERENCES public.evaluations(id) ON DELETE CASCADE;


--
-- Name: grades grades_student_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.grades
    ADD CONSTRAINT grades_student_id_foreign FOREIGN KEY (student_id) REFERENCES public.students(id) ON DELETE CASCADE;


--
-- Name: guardians guardians_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.guardians
    ADD CONSTRAINT guardians_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE SET NULL;


--
-- Name: localities localities_commune_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.localities
    ADD CONSTRAINT localities_commune_id_foreign FOREIGN KEY (commune_id) REFERENCES public.communes(id) ON DELETE CASCADE;


--
-- Name: model_has_permissions model_has_permissions_permission_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.model_has_permissions
    ADD CONSTRAINT model_has_permissions_permission_id_foreign FOREIGN KEY (permission_id) REFERENCES public.permissions(id) ON DELETE CASCADE;


--
-- Name: model_has_roles model_has_roles_role_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.model_has_roles
    ADD CONSTRAINT model_has_roles_role_id_foreign FOREIGN KEY (role_id) REFERENCES public.roles(id) ON DELETE CASCADE;


--
-- Name: regions regions_country_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.regions
    ADD CONSTRAINT regions_country_id_foreign FOREIGN KEY (country_id) REFERENCES public.countries(id) ON DELETE CASCADE;


--
-- Name: report_cards report_cards_school_class_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.report_cards
    ADD CONSTRAINT report_cards_school_class_id_foreign FOREIGN KEY (school_class_id) REFERENCES public.classes(id) ON DELETE CASCADE;


--
-- Name: report_cards report_cards_school_year_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.report_cards
    ADD CONSTRAINT report_cards_school_year_id_foreign FOREIGN KEY (school_year_id) REFERENCES public.school_years(id) ON DELETE CASCADE;


--
-- Name: report_cards report_cards_student_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.report_cards
    ADD CONSTRAINT report_cards_student_id_foreign FOREIGN KEY (student_id) REFERENCES public.students(id) ON DELETE CASCADE;


--
-- Name: role_has_permissions role_has_permissions_permission_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.role_has_permissions
    ADD CONSTRAINT role_has_permissions_permission_id_foreign FOREIGN KEY (permission_id) REFERENCES public.permissions(id) ON DELETE CASCADE;


--
-- Name: role_has_permissions role_has_permissions_role_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.role_has_permissions
    ADD CONSTRAINT role_has_permissions_role_id_foreign FOREIGN KEY (role_id) REFERENCES public.roles(id) ON DELETE CASCADE;


--
-- Name: school_years school_years_country_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.school_years
    ADD CONSTRAINT school_years_country_id_foreign FOREIGN KEY (country_id) REFERENCES public.countries(id);


--
-- Name: schools schools_commune_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.schools
    ADD CONSTRAINT schools_commune_id_foreign FOREIGN KEY (commune_id) REFERENCES public.communes(id) ON DELETE SET NULL;


--
-- Name: schools schools_country_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.schools
    ADD CONSTRAINT schools_country_id_foreign FOREIGN KEY (country_id) REFERENCES public.countries(id);


--
-- Name: schools schools_department_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.schools
    ADD CONSTRAINT schools_department_id_foreign FOREIGN KEY (department_id) REFERENCES public.departments(id) ON DELETE SET NULL;


--
-- Name: schools schools_locality_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.schools
    ADD CONSTRAINT schools_locality_id_foreign FOREIGN KEY (locality_id) REFERENCES public.localities(id) ON DELETE SET NULL;


--
-- Name: schools schools_region_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.schools
    ADD CONSTRAINT schools_region_id_foreign FOREIGN KEY (region_id) REFERENCES public.regions(id);


--
-- Name: student_guardian student_guardian_guardian_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.student_guardian
    ADD CONSTRAINT student_guardian_guardian_id_foreign FOREIGN KEY (guardian_id) REFERENCES public.guardians(id) ON DELETE CASCADE;


--
-- Name: student_guardian student_guardian_student_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.student_guardian
    ADD CONSTRAINT student_guardian_student_id_foreign FOREIGN KEY (student_id) REFERENCES public.students(id) ON DELETE CASCADE;


--
-- Name: students students_school_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.students
    ADD CONSTRAINT students_school_id_foreign FOREIGN KEY (school_id) REFERENCES public.schools(id);


--
-- Name: students students_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.students
    ADD CONSTRAINT students_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE SET NULL;


--
-- Name: teacher_assignments teacher_assignments_school_class_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.teacher_assignments
    ADD CONSTRAINT teacher_assignments_school_class_id_foreign FOREIGN KEY (school_class_id) REFERENCES public.classes(id) ON DELETE CASCADE;


--
-- Name: teacher_assignments teacher_assignments_school_year_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.teacher_assignments
    ADD CONSTRAINT teacher_assignments_school_year_id_foreign FOREIGN KEY (school_year_id) REFERENCES public.school_years(id) ON DELETE CASCADE;


--
-- Name: teacher_assignments teacher_assignments_subject_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.teacher_assignments
    ADD CONSTRAINT teacher_assignments_subject_id_foreign FOREIGN KEY (subject_id) REFERENCES public.subjects(id) ON DELETE CASCADE;


--
-- Name: teacher_assignments teacher_assignments_teacher_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.teacher_assignments
    ADD CONSTRAINT teacher_assignments_teacher_id_foreign FOREIGN KEY (teacher_id) REFERENCES public.teachers(id) ON DELETE CASCADE;


--
-- Name: teachers teachers_school_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.teachers
    ADD CONSTRAINT teachers_school_id_foreign FOREIGN KEY (school_id) REFERENCES public.schools(id) ON DELETE RESTRICT;


--
-- Name: teachers teachers_user_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.teachers
    ADD CONSTRAINT teachers_user_id_foreign FOREIGN KEY (user_id) REFERENCES public.users(id) ON DELETE CASCADE;


--
-- Name: users users_region_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.users
    ADD CONSTRAINT users_region_id_foreign FOREIGN KEY (region_id) REFERENCES public.regions(id) ON DELETE SET NULL;


--
-- Name: users users_school_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.users
    ADD CONSTRAINT users_school_id_foreign FOREIGN KEY (school_id) REFERENCES public.schools(id) ON DELETE SET NULL;


--
-- PostgreSQL database dump complete
--

\unrestrict jBkumW9gH5yPcmMvDUwbefLhf7Foaxa9Q0MqmaaBbkwGmLG0CYp3x10sABvAOMY

